Replies: 1 comment 3 replies
-
Hello @Starcomfr What issue with the current view system names do you have? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
It would be usefull to be able to see system names for tables and columns on DB2 IBM.
Sytem table names can be knownusing request like:
SELECT SYS_TNAME FROM qsys2.systables WHERE TABLE_SCHEMA = 'My_schema' AND TABLE_NAME = 'My_table_name';
System column names can be knownusing request like:
SELECT SYSTEM_COLUMN_NAME FROM sysibm.sqlcolumns WHERE table_schem = 'My_Schema' AND TABLE_NAME = 'My_table_name' ORDER BY ORDINAL_POSITION;
Beta Was this translation helpful? Give feedback.
All reactions