<?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: Not able to view the table in library but able to read data using Proc Sql code. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586967#M167574</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/151178"&gt;@ASHISH2525&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;Define "visible".&lt;/P&gt;
&lt;P&gt;What kind of SAS user interface (UI) do you use to make it "visible"?&lt;/P&gt;
&lt;P&gt;Native DMS? EGuide? SAS Studio?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, if the data set in the library with the libref MX is visible to your SAS program (i.e. it can read it), as it appears to be the case,&amp;nbsp; but not visible through the UI, it's an issue to be raised with your SAS admin or DBA or both.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Paul D.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Sep 2019 10:07:06 GMT</pubDate>
    <dc:creator>hashman</dc:creator>
    <dc:date>2019-09-07T10:07:06Z</dc:date>
    <item>
      <title>Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586951#M167570</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am able to read the data using SAS code but the table doesn't appear under library.&amp;nbsp;&lt;/P&gt;&lt;P&gt;also in SAS SMC while i try to register the table it doesn't appear there.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LIBNAME MX ODBC DSN="UAT01"&lt;/P&gt;&lt;P&gt;USER="uatxyz" PASSWORD="Uat@abc" SCHEMA="uat01";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;connect to odbc(user=uatsuper password=Uat@abc dsn=UAT01);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; create table work.job204 as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; select * from connection to odbc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (select * from TANGOUAT.UAT01.JNL_ACQ);&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what can be the reason behind this ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 08:43:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586951#M167570</guid>
      <dc:creator>ASHISH2525</dc:creator>
      <dc:date>2019-09-07T08:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586955#M167572</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/151178"&gt;@ASHISH2525&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;gt;but table doesn't appear under library&amp;lt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What library?&lt;/P&gt;
&lt;P&gt;The MX library pointing to the external data base?&lt;/P&gt;
&lt;P&gt;It cannot appear there since you are writing the data set to the SAS WORK library.&lt;/P&gt;
&lt;P&gt;Change WORK&lt;SPAN&gt;.job204 to MX.job204, and you'll see it under MX - provided, of course, that you have a write access to the data base schema defined in your LIBNAME statement and your query actually runs.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you expect to see it in the SAS WORK library, it should be there with your code as is, as long as your query runs error-free.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Kind regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Paul D.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 09:02:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586955#M167572</guid>
      <dc:creator>hashman</dc:creator>
      <dc:date>2019-09-07T09:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586965#M167573</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Yes, The MX library pointing to the external data base. Job204 is already exists in external DB schema. Once we execute Libname statement have external data sources references it executed successfully. But still data set in MX library is not visible. Ideally it should visible post assigning libref MX.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Secondly when we execute following command:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data work.abc;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;set MX.job204;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;it also executed successfully.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 09:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586965#M167573</guid>
      <dc:creator>ASHISH2525</dc:creator>
      <dc:date>2019-09-07T09:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586967#M167574</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/151178"&gt;@ASHISH2525&lt;/a&gt;:&lt;/P&gt;
&lt;P&gt;Define "visible".&lt;/P&gt;
&lt;P&gt;What kind of SAS user interface (UI) do you use to make it "visible"?&lt;/P&gt;
&lt;P&gt;Native DMS? EGuide? SAS Studio?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, if the data set in the library with the libref MX is visible to your SAS program (i.e. it can read it), as it appears to be the case,&amp;nbsp; but not visible through the UI, it's an issue to be raised with your SAS admin or DBA or both.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Paul D.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 10:07:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586967#M167574</guid>
      <dc:creator>hashman</dc:creator>
      <dc:date>2019-09-07T10:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586969#M167575</link>
      <description>&lt;P&gt;Thanks Paul for your prompt response..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes data set appears as you mentioned, but through UI it doesn't appear.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am raising a ticket for the same in SAS support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 10:18:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/586969#M167575</guid>
      <dc:creator>ASHISH2525</dc:creator>
      <dc:date>2019-09-07T10:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/587045#M167605</link>
      <description>&lt;P&gt;I can't see anywhere in your LIBNAME where you are defining the database TANGOUAT. Is that defined in your DSN? If not then you might need to add a database = TANGOUAT parameter to your LIBNAME.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2019 04:14:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/587045#M167605</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-09-08T04:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/587046#M167606</link>
      <description>Yes database has been defined in DSN.</description>
      <pubDate>Sun, 08 Sep 2019 04:28:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/587046#M167606</guid>
      <dc:creator>ASHISH2525</dc:creator>
      <dc:date>2019-09-08T04:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/675845#M203675</link>
      <description>&lt;P&gt;Have you got the solution for the issue ?&lt;/P&gt;&lt;P&gt;We are facing the same in our environment.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Aug 2020 08:46:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/675845#M203675</guid>
      <dc:creator>_AS</dc:creator>
      <dc:date>2020-08-11T08:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to view the table in library but able to read data using Proc Sql code.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/687611#M208762</link>
      <description>&lt;P&gt;Hi folks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have the solution for this issue? We have the same problem on our new environment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:58:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Not-able-to-view-the-table-in-library-but-able-to-read-data/m-p/687611#M208762</guid>
      <dc:creator>MariaD</dc:creator>
      <dc:date>2020-09-29T17:58:41Z</dc:date>
    </item>
  </channel>
</rss>

