{"id":8425,"date":"2024-04-18T15:23:28","date_gmt":"2024-04-18T14:23:28","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=8425"},"modified":"2025-10-27T15:56:53","modified_gmt":"2025-10-27T14:56:53","slug":"iseries-as400-table-and-column-info-queries","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/iseries-as400-table-and-column-info-queries\/","title":{"rendered":"iSeries \/ AS400 Table And Column Info Queries"},"content":{"rendered":"\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"sql\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">-- Table info\nSELECT s.TABLE_SCHEMA || '.' || s.SYSTEM_TABLE_NAME, s.TABLE_TYPE, s.TABLE_SCHEMA || '.' || s.TABLE_NAME, s.TABLE_TEXT FROM QSYS2.SYSTABLES s \nwhere s.TABLE_SCHEMA = 'MYSCHEMA' -- OR: CURRENT_SCHEMA\nORDER BY s.TABLE_NAME \n\n\n-- Table + Column info\nSELECT  (sc.TABLE_SCHEMA || '.' || sc.TABLE_NAME) AS FULL_NAME, s.TABLE_TEXT, s.SYSTEM_TABLE_NAME,  sc.SYSTEM_COLUMN_NAME, sc.COLUMN_NAME, sc.COLUMN_TEXT, sc.DATA_TYPE, sc.LENGTH, sc.IS_NULLABLE\nfrom QSYS2.SYSCOLUMNS sc\nJOIN QSYS2.SYSTABLES s ON s.TABLE_NAME = sc.TABLE_NAME AND s.TABLE_SCHEMA = sc.TABLE_SCHEMA \nwhere sc.TABLE_SCHEMA = 'MYSCHEMA' -- OR: CURRENT_SCHEMA\nAND (s.TABLE_NAME = 'MY_TABLE' OR s.SYSTEM_TABLE_NAME = 'MY_TABLE')\nORDER BY sc.ORDINAL_POSITION\n<\/pre><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-8425","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/8425","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=8425"}],"version-history":[{"count":6,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/8425\/revisions"}],"predecessor-version":[{"id":9838,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/8425\/revisions\/9838"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=8425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=8425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=8425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}