Thanks @Nigel_Pain @Tom @ballardw @JuanS_OCS @Ksharp I appreciate the help all of you have provided. All the suggestions were of great help. I worked with SAS tech Support and under their guidance, the issue was finally resolved. Thanks SAS Tech Support for your help. I am summarizing the steps so that they help others in need. Step 1: Configure the odbc manager at the OS level. 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. In my case they were hostname, database name, the http options, OAuth details
Step2 The libname statement that worked is as follows:
libname [YR_LIBREF] ODBC preserve_tab_names=yes schema=[SCHEMA_NAME] noprompt="DSN=[DSN_NAME];catalog=[CATALOG_NAME];Schema=[SCHEMA_NAME];";
I have used [PARAMETER]for values that are needed to be input.
... View more