BookmarkSubscribeRSS Feed
pavanpragada0
Calcite | Level 5

Hi Guys,

 

Can some one help me to retrieve the table name & column name data from SQL server DB 

 

I am  trying to work with following code, can some one correct me .

 

Thanks in Advance!!

libname mydb oledb
provider=sqloledb
datasource=myservername
properties=( "initial catalog"=mydbname )
prompt=yes
schema=myschemaname
;

Proc sql;

create detailsTN as(select * from connect to mydb (select Table_name from information_schema.tables););

create detailsCN as (select * from connect to mydb (select Column_name from information_schema.tables););

quit;

1 REPLY 1
LinusH
Tourmaline | Level 20

You should be able to use information_schema to retrieve this information.

Also, once you have a libname assigned, you should be able to use SASHELP views and PROC SQL DICTIONARY tables.

Data never sleeps

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 865 views
  • 1 like
  • 2 in conversation