<?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: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables. in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/966408#M29954</link>
    <description>Thank you! the libname statement is very helpful. I ended up using username/password for step 1. Would you be able to share more details on step 1 regarding OAuth options? Thanks again</description>
    <pubDate>Tue, 13 May 2025 13:05:25 GMT</pubDate>
    <dc:creator>npm_sas</dc:creator>
    <dc:date>2025-05-13T13:05:25Z</dc:date>
    <item>
      <title>ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959621#M29613</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I have been able to configure Connection to Databricks on Windows server.&lt;BR /&gt;Using SAS EG I am able to create a libname statement and library is created. But I cannot see any tables. My code is&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname dbrk odbc dsn="dbrk" user="clinet-id" password="password" schema="catalog.schema";&lt;BR /&gt;proc sql;&lt;BR /&gt;select * from dictionary.tables where libname="DBRK";&lt;BR /&gt;quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;Works perfectly library is created. But do not see any tables. The log is as follows&lt;/P&gt;
&lt;PRE&gt;         libname dbrk odbc dsn="dbrk" user="client-id" password=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
27       !  schema="catalog.schema";
NOTE: Libref DBRK was successfully assigned as follows: 
      Engine:        ODBC 
      Physical Name: dbrk
28         proc sql;
29         select * from dictionary.tables where libname="DBRK";
NOTE: No rows were selected.
30         quit;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Feb 2025 15:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959621#M29613</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-19T15:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959633#M29614</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Does&amp;nbsp;user="client-id" have enough permissions on&amp;nbsp;schema="catalog.schema" in Databricks?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 16:59:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959633#M29614</guid>
      <dc:creator>MrSantos</dc:creator>
      <dc:date>2025-02-19T16:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959635#M29615</link>
      <description>&lt;P&gt;Yes.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:16:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959635#M29615</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-19T17:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959636#M29616</link>
      <description>&lt;P&gt;It's worth trying a special catalog query as you're using ODBC. Something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
connect to odbc as dbrk (dsn="dbrk" user="clinet-id" password="password" );
select * from connection to dbrk (
ODBC::SQLTables(,,,)
);
disconnect from dbrk;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This should list all tables in all schemas to which you have access.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More information:&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/p1f29m86u65hken1deqcybowtgma.htm#n0r70sfxr7bhr2n19cphfkfbg8uj" target="_blank"&gt;SAS Help Center: SQL Pass-Through Facility Specifics for ODBC&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:17:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959636#M29616</guid>
      <dc:creator>Nigel_Pain</dc:creator>
      <dc:date>2025-02-19T17:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959638#M29617</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13516"&gt;@Nigel_Pain&lt;/a&gt;&amp;nbsp;.&lt;BR /&gt;I appreciate your help. The result is the same. The log is here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR
24         
25         GOPTIONS ACCESSIBLE;
26         PROC SQL;
27         connect to odbc as dbrk (dsn="dbrk" user="client-id"
27       ! password=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX );
28         select * from connection to dbrk (
29         ODBC::SQLTables(,,,)
30         );
NOTE: No rows were selected.
31         disconnect from dbrk;
32         quit;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:23:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959638#M29617</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-19T17:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959640#M29618</link>
      <description>&lt;P&gt;Are databricks schema names case sensitive?&lt;/P&gt;
&lt;P&gt;Is the DSN defined to point to the right database? Are you sure you didn't connect to some other databricks instance that does not have the schema and/or tables of interest?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 17:40:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959640#M29618</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-02-19T17:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959642#M29619</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;.&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/458874"&gt;@MrSantos&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I just ran a test using plain java code and was able to see the tables with the same credentials as I used with SAS.&lt;BR /&gt;I changed the case of catalog name and yes it worked as before. So, it appears they appear to be case insensitive.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 18:11:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959642#M29619</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-19T18:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959666#M29620</link>
      <description>&lt;P&gt;How long are your table names? If they are greater than 32 characters you will most likely need to use SQL Passthru to access them.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 20:18:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959666#M29620</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-02-19T20:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959687#M29621</link>
      <description>&lt;P&gt;Thanks.&lt;BR /&gt;They are less than 32 characters.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 21:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959687#M29621</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-19T21:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959689#M29622</link>
      <description>&lt;P&gt;I suggest you try to query the Databrick's dictionary table via SQL Passthru:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname dbrk odbc dsn="dbrk" user="clinet-id" password="password" schema="catalog.schema";

proc sql;
 connect using dbrk;
  create table Want  as 
  select * from connection to dbrk
  (SELECT *
    FROM information_schema.tables
    WHERE table_schema = 'information_schema'
   )
  ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If there are any tables in the specified schema they should be listed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 22:19:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959689#M29622</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-02-19T22:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959723#M29623</link>
      <description>I think you should check SCHEMA is correct or not .&lt;BR /&gt;Talk to your Admin to find which SCHEMA of tables it is.&lt;BR /&gt;&lt;A href="https://communities.sas.com/t5/Administration-and-Deployment/Tables-not-shown-up/m-p/939847#M28853" target="_blank"&gt;https://communities.sas.com/t5/Administration-and-Deployment/Tables-not-shown-up/m-p/939847#M28853&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also you could try upcase SCHEMA ,like:&lt;BR /&gt;schema=YOUR_SCHEMA</description>
      <pubDate>Thu, 20 Feb 2025 02:09:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959723#M29623</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-02-20T02:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959724#M29624</link>
      <description>&lt;A href="https://www.connectionstrings.com/" target="_blank"&gt;https://www.connectionstrings.com/&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Feb 2025 02:12:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959724#M29624</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-02-20T02:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959742#M29625</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;In these cases I like to understand what’s going on behind the scenes, so I can pinpoint exactly the issue, instead of going through trial and error.&lt;BR /&gt;&lt;BR /&gt;For that I always refer to the logs on the client side (ODBC client) and the database server logs (audit).&lt;BR /&gt;&lt;BR /&gt;You clearly have an issue with permissions, as you have been told. There is no mistake there. Whether it’s a wrong schema or username or something else, we need to figure it out, thanks to those logs.&lt;BR /&gt;&lt;BR /&gt;The server logs should already tell you a lot. Have you asked your DBAs what do they see when you connect with SAS?&lt;BR /&gt;&lt;BR /&gt;From the client side, you either use STRACE or enable the client logs (ODBC ini for ODBC connections).&lt;BR /&gt;&lt;BR /&gt;My personal thought, but this is without knowing more of your setup and design, is that either your connection to the schema is different from SAS to Java, or you are connecting with your OS user on top of the user in the lib name statement.&lt;BR /&gt;&lt;BR /&gt;Would you mind sharing as well your exact code used in Java?</description>
      <pubDate>Thu, 20 Feb 2025 03:42:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959742#M29625</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2025-02-20T03:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959804#M29627</link>
      <description>&lt;P&gt;I seem to recall that some of the ODBC connections in Windows are pretty restrictive and even though a connection is made that the SAS Dictionary tables aren't available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have tried something a Proc Print on a known table in that connection?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another setting might involve the SAS system option VALIDMEMNAME=EXTEND before the ODBC connection is made to allow use of table names not normally acceptable in SAS, i.e. containing spaces or characters other than _, digits or letters.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 17:30:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959804#M29627</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2025-02-20T17:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959943#M29635</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I am able to able to see the data from the table, but tables themselves are not visible in the library.&lt;BR /&gt;Using&amp;nbsp;VALIDMEMNAME=EXTEND and VALIDVARNAME=ANY did not help.&lt;BR /&gt;One more observation I have. For the schema one has to use catalog_name.schema_name.&amp;nbsp; Using only the schema name seems to not work.&lt;BR /&gt;I was able to run proc contents on the table, but data=libref._ALL_ did not show up any tables. Similarly proc datasets libref=library did not show any tables.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 19:30:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959943#M29635</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-21T19:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959949#M29636</link>
      <description>&lt;P&gt;Did you check the various options for the LIBNAME statement to see if any can help you?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/sk/pgmsascdc/v_060/acreldb/p11x7o76auf85bn1ev4m0oty0bno.htm" target="_blank"&gt;https://documentation.sas.com/doc/sk/pgmsascdc/v_060/acreldb/p11x7o76auf85bn1ev4m0oty0bno.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In particular try the DRIVER_TRACE and related options so you can see what SQL SAS is generating when it tries get the list of files.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 20:31:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/959949#M29636</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-02-21T20:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960093#M29641</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks. I have tried using driver_trace option. But I have the error as follows&lt;/P&gt;
&lt;PRE&gt;WARNING: Libref DBRK is not assigned. &lt;BR /&gt;27 option VALIDMEMNAME=EXTEND VALIDVARNAME=ANY;&lt;BR /&gt;28 libname dbrk odbc dsn="dbrk" user="client_id" password=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX &lt;BR /&gt;28 ! schema="catalog.schema" driver_trace=ALL; &lt;BR /&gt;                              ____________ &lt;BR /&gt;22 ERROR: Libref DBRK is not assigned. &lt;BR /&gt;ERROR: Error in the LIBNAME statement. &lt;BR /&gt;ERROR 22-7: Invalid option name DRIVER_TRACE.&lt;/PRE&gt;
&lt;P&gt;Thanks once again&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 15:45:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960093#M29641</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-24T15:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960095#M29642</link>
      <description>&lt;P&gt;Unfortunately it does not look like that option works for ODBC.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/da/pgmsascdc/v_060/acreldb/p11x7o76auf85bn1ev4m0oty0bno.htm" target="_blank"&gt;https://documentation.sas.com/doc/da/pgmsascdc/v_060/acreldb/p11x7o76auf85bn1ev4m0oty0bno.htm&lt;/A&gt;&lt;/P&gt;
&lt;TABLE class="xisDoc-summary"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="xisDoc-engine"&gt;Engines:&lt;/TH&gt;
&lt;TD class="xisDoc-summaryValue"&gt;BIGQUERY, HADOOP, JDBC, SPARK&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="xisDoc-dataSource"&gt;Data source:&lt;/TH&gt;
&lt;TD class="xisDoc-summaryValue"&gt;Google BigQuery, Hadoop, JDBC, Spark&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 24 Feb 2025 15:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960095#M29642</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-02-24T15:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960100#M29643</link>
      <description>&lt;P&gt;It's worth trying the SASTRACE system option to see what is actually being sent and received via ODBC:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/acreldb/n0732u1mr57ycrn1urf24gzo38sc.htm" target="_blank"&gt;SAS Help Center: SASTRACE= SAS System Option&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 16:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960100#M29643</guid>
      <dc:creator>Nigel_Pain</dc:creator>
      <dc:date>2025-02-24T16:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: ODBC Connection from SAS 9.4 M6  on Windows Server Cannot see tables.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960537#M29678</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13516"&gt;@Nigel_Pain&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35204"&gt;@JuanS_OCS&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I appreciate the help all of you have provided. All the suggestions were of great help.&lt;BR /&gt;I worked with SAS tech Support and under their&amp;nbsp; &amp;nbsp;guidance, the issue was finally resolved.&lt;BR /&gt;Thanks SAS Tech Support for your help.&lt;BR /&gt;I am summarizing the steps so that they help others in need.&lt;BR /&gt;&lt;STRONG&gt;Step 1:&lt;/STRONG&gt; Configure the odbc manager at the OS level.&lt;BR /&gt;&amp;nbsp; The authentication information, server details go here. Th interface is quite intuitive and one can fill up the details with the help of Datawarehouse/databricks team.&lt;BR /&gt;In my case they were&amp;nbsp; &amp;nbsp;hostname, database name, the http options, OAuth details&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Step2&lt;/STRONG&gt; The libname statement&amp;nbsp; that worked is as follows:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname [YR_LIBREF] ODBC preserve_tab_names=yes schema=[SCHEMA_NAME] noprompt="DSN=[DSN_NAME];catalog=[CATALOG_NAME];Schema=[SCHEMA_NAME];";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I have used [PARAMETER]for values that are needed to be input.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 16:49:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ODBC-Connection-from-SAS-9-4-M6-on-Windows-Server-Cannot-see/m-p/960537#M29678</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-02-28T16:49:09Z</dc:date>
    </item>
  </channel>
</rss>

