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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 919 views
  • 1 like
  • 2 in conversation