<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Extract the comments on a table column. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507732#M104384</link>
    <description>&lt;P&gt;yes, i can get info from:&amp;nbsp;dba_col_comments but did hope that i could do it from the normal Load.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2025 06:08:57 GMT</pubDate>
    <dc:creator>janus2021</dc:creator>
    <dc:date>2025-02-28T06:08:57Z</dc:date>
    <item>
      <title>Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507592#M104356</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;is there is a way to extract the comments on a table column.&lt;/P&gt;
&lt;P&gt;Example: I want to extract this from an Oracle table: MY_TABLE&lt;/P&gt;
&lt;P&gt;COLUMN_NAME | DATA_TYPE | NULLABLE | COLUMN_ID | COMMENT&lt;/P&gt;
&lt;P&gt;My_Col1| NUMBER | Yes | 1 | Comment on Col1!&lt;/P&gt;
&lt;P&gt;My_Col2| NUMBER | Yes | 2 | Comment on Col2!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So in my Load i want to get the comment:&lt;/P&gt;
&lt;P&gt;LIB Connect to 'DataSource';&lt;/P&gt;
&lt;P&gt;[MY_TABLE_comments]:&lt;BR /&gt;SELECT&amp;nbsp; "My_Col1",&lt;BR /&gt;"My_Col2",&lt;BR /&gt;"comment_My_Col1" ???&lt;BR /&gt;FROM "SCHEMA"."MY_TABLE";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 12:08:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507592#M104356</guid>
      <dc:creator>janus2021</dc:creator>
      <dc:date>2025-02-27T12:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507611#M104359</link>
      <description>&lt;P&gt;I don't follow your question. What do you mean by extract comments from the column?&lt;BR /&gt;&lt;BR /&gt;In your SQL script, you have used "My_Col1", "My_Col2". But, in your sample table, there are no columns as&amp;nbsp;"My_Col1", "My_Col2".&lt;BR /&gt;&lt;BR /&gt;Can you show the sample output and a sample data?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;SELECT  "My_Col1",
"My_Col2",
"comment_My_Col1" ???
FROM "SCHEMA"."MY_TABLE";&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 13:21:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507611#M104359</guid>
      <dc:creator>Braveen</dc:creator>
      <dc:date>2025-02-27T13:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507621#M104361</link>
      <description>&lt;P&gt;The normal tables contain just data. If you want to get the meta-data to them you will need to query the data-base system-tables. You may need some extra access rights for it and you should know how the system-tables are organized. I suggest you asked the data-base admins and/or the community from the data-base to get a how-to.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 13:49:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507621#M104361</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-02-27T13:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507622#M104362</link>
      <description>&lt;P&gt;I have a Oracle table and on some columns have comments.&lt;/P&gt;
&lt;P&gt;This LOAD in Qlik:&lt;/P&gt;
&lt;P&gt;[MY_TABLE_comments]:&lt;BR /&gt;SELECT "My_Col1",&lt;BR /&gt;"My_Col2",&lt;BR /&gt;FROM MY_TABLE;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This load will only give back the selected columns and the values. But i&amp;nbsp; also want to get the colum comments.&lt;BR /&gt;Is it possible, to get: My_Col1.COMMENT and not only the value in&amp;nbsp;My_Col1?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it more clear what i asking?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 13:50:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507622#M104362</guid>
      <dc:creator>janus2021</dc:creator>
      <dc:date>2025-02-27T13:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507732#M104384</link>
      <description>&lt;P&gt;yes, i can get info from:&amp;nbsp;dba_col_comments but did hope that i could do it from the normal Load.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;J&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:08:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507732#M104384</guid>
      <dc:creator>janus2021</dc:creator>
      <dc:date>2025-02-28T06:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507735#M104387</link>
      <description>&lt;P&gt;Can explain your query with sample data.. difficult to understand your query.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:14:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507735#M104387</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2025-02-28T06:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507737#M104388</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;
&lt;P&gt;connect to the schema or user that has privilige to read som dba views. Than you can Load comments like:&lt;/P&gt;
&lt;P&gt;LIB CONNECT TO 'SCHEMA_THAT_CAN_READ_DBA_VIEWS';&lt;/P&gt;
&lt;P&gt;[MY_TABLE_COMMENT]:&lt;BR /&gt;LOAD *;&lt;/P&gt;
&lt;P&gt;SELECT table_name,&lt;BR /&gt;column_name,&lt;BR /&gt;comments&lt;BR /&gt;FROM dba_col_comments&lt;BR /&gt;WHERE table_name='MY_TABLE';&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;//Or if you want to get comments from all tables.&lt;BR /&gt;[YOUR_SCHEMA_COMMENT_ON_ALL_TABLES]:&lt;BR /&gt;LOAD *;&lt;/P&gt;
&lt;P&gt;SELECT table_name,&lt;BR /&gt;column_name,&lt;BR /&gt;comments&lt;BR /&gt;FROM dba_col_comments&lt;BR /&gt;WHERE OWNER='YOUR_SCHEMA_NAME';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this clear?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507737#M104388</guid>
      <dc:creator>janus2021</dc:creator>
      <dc:date>2025-02-28T06:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507742#M104390</link>
      <description>&lt;P&gt;AFAIK it's not possible against the data-tables. But the access to the wanted meta-data might be simplified respectively outsourced within n specialized queries/views within the data-base itself - and you queries then this one.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:40:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507742#M104390</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-02-28T06:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extract the comments on a table column.</title>
      <link>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507746#M104392</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I can use above Qlik code and get response from our oracle database. Both via the Sql tool Toad and via loading in Qlik.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 07:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Extract-the-comments-on-a-table-column/m-p/2507746#M104392</guid>
      <dc:creator>janus2021</dc:creator>
      <dc:date>2025-02-28T07:07:23Z</dc:date>
    </item>
  </channel>
</rss>

