<?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: SAS DI Studio in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622484#M18752</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/256123"&gt;@JJP1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a work-around. You can manually use proc SQL to create a view on the table in a permanent library, and then register the view and use it like it was the "real" dictionary table:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create view dw1sasme.dict_table as
	select * from dictionary.tables;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="view.gif" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35875iBA06CE0422A69ADE/image-size/large?v=v2&amp;amp;px=999" role="button" title="view.gif" alt="view.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Feb 2020 15:52:30 GMT</pubDate>
    <dc:creator>ErikLund_Jensen</dc:creator>
    <dc:date>2020-02-05T15:52:30Z</dc:date>
    <item>
      <title>SAS DI Studio</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622427#M18747</link>
      <description>&lt;P&gt;How can i register the below mentioned tables using SAS DI studio.i tried to see under SASHELP library and i did not found tables and columns datasets that are under&lt;BR /&gt;dictionary library.please suggest&lt;BR /&gt;dictionary.tables&lt;BR /&gt;,dictionary.columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 12:55:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622427#M18747</guid>
      <dc:creator>JJP1</dc:creator>
      <dc:date>2020-02-05T12:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI Studio</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622430#M18748</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/256123"&gt;@JJP1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As far as I know, Dictionary.tables can only be accessed by running a PROC SQL.&lt;/P&gt;
&lt;P&gt;You can also access a Dictionary table by referring to the PROC SQL &lt;FONT color="#339966"&gt;view&lt;/FONT&gt; of the table that is stored in the Sashelp library.&lt;/P&gt;
&lt;P&gt;e.g. &lt;FONT color="#339966"&gt;SASHELP.Vtable&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;e.g. SASHELP.VColumn&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Best,&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 13:05:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622430#M18748</guid>
      <dc:creator>ed_sas_member</dc:creator>
      <dc:date>2020-02-05T13:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI Studio</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622432#M18749</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i know under SASHELP library as these vtable and vcolumn and i can see this in SAS DI while regietering.&lt;BR /&gt;But i want to register tables,columns dataset from dictionary library.&lt;BR /&gt;any suggestion please&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 13:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622432#M18749</guid>
      <dc:creator>JJP1</dc:creator>
      <dc:date>2020-02-05T13:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAS DI Studio</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622484#M18752</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/256123"&gt;@JJP1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a work-around. You can manually use proc SQL to create a view on the table in a permanent library, and then register the view and use it like it was the "real" dictionary table:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create view dw1sasme.dict_table as
	select * from dictionary.tables;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="view.gif" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/35875iBA06CE0422A69ADE/image-size/large?v=v2&amp;amp;px=999" role="button" title="view.gif" alt="view.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2020 15:52:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SAS-DI-Studio/m-p/622484#M18752</guid>
      <dc:creator>ErikLund_Jensen</dc:creator>
      <dc:date>2020-02-05T15:52:30Z</dc:date>
    </item>
  </channel>
</rss>

