<?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 Can't see newly created Teradata table under Libraries in SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591072#M34741</link>
    <description>&lt;P&gt;I created a Teradata table with a data step in SAS EG, but can't see the new table under libraries even after I refresh.&amp;nbsp; According to the SAS log, the table is created with the expected number of observations and variables. I also do not see the new table when I attempt to view it using Teradata SQL Assistant. Has anyone else experienced this issue? Please advise. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname tlibrary teradata server='ABC.XYZ.COM' connection=global dbmstemp=yes  database="ABC_TST" user="a12345@LDAP" pwd="XXXXXX" mode=Teradata;

data tlibrary.new_t_table;
	set ds1 ds2 ds3;
        run;



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Sep 2019 03:30:53 GMT</pubDate>
    <dc:creator>ijm_wf</dc:creator>
    <dc:date>2019-09-24T03:30:53Z</dc:date>
    <item>
      <title>Can't see newly created Teradata table under Libraries in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591072#M34741</link>
      <description>&lt;P&gt;I created a Teradata table with a data step in SAS EG, but can't see the new table under libraries even after I refresh.&amp;nbsp; According to the SAS log, the table is created with the expected number of observations and variables. I also do not see the new table when I attempt to view it using Teradata SQL Assistant. Has anyone else experienced this issue? Please advise. Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname tlibrary teradata server='ABC.XYZ.COM' connection=global dbmstemp=yes  database="ABC_TST" user="a12345@LDAP" pwd="XXXXXX" mode=Teradata;

data tlibrary.new_t_table;
	set ds1 ds2 ds3;
        run;



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 03:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591072#M34741</guid>
      <dc:creator>ijm_wf</dc:creator>
      <dc:date>2019-09-24T03:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see newly created Teradata table under Libraries in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591093#M34742</link>
      <description>right click on libraries and then click refresh&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Sep 2019 07:17:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591093#M34742</guid>
      <dc:creator>VinitvictorCorr</dc:creator>
      <dc:date>2019-09-24T07:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see newly created Teradata table under Libraries in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591154#M34743</link>
      <description>&lt;P&gt;Try to add option SCHEMA= in libname statement .&lt;/P&gt;
&lt;P&gt;The following code could check Schema.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sql;
connect to  teradata(database="ABC_TST" user="a12345@LDAP" pwd="XXXXXX") ;

select *
 from connection to teradata(teradata::SQLTables) ;
quit;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Sep 2019 12:55:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591154#M34743</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-09-24T12:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can't see newly created Teradata table under Libraries in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591163#M34744</link>
      <description>&lt;P&gt;Did you intend to create a volatile table in Teradata?&amp;nbsp; It is not clear to me that the SAS tools to show lists of datasets in a library will work to show volatile tables in a Teradata session.&amp;nbsp; Try using the Teradata command HELP VOLATILE TABLE to see what volatile tables exist in your session.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql ;
  connect using tlibrary ;
  select * from connection to tlibrary (help volatile table);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Sep 2019 14:07:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Can-t-see-newly-created-Teradata-table-under-Libraries-in-SAS-EG/m-p/591163#M34744</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-09-24T14:07:02Z</dc:date>
    </item>
  </channel>
</rss>

