79076744

Date: 2024-10-11 03:48:50
Score: 1.5
Natty:
Report link

You can view partition key by run this query

SELECT
  owner AS schema, name AS table_name,
  column_name AS partitioning_key
FROM all_part_key_columns
WHERE object_type = 'TABLE'
  AND owner='TABLE_SCHEMA' AND name = 'TABLE_NAME'
;

base on https://github.com/dbeaver/dbeaver/issues/16582

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vuhoanghiep1993