BookmarkSubscribeRSS Feed
alepage
Barite | Level 11

Hello,

 

I have used the following code as usual to find in which dataset a variable may exist in a library.

The problem, it seems that this code is not working with a DataMart.

 

Does someone may have an idea how to do that?

 

3 REPLIES 3
ballardw
Super User

@alepage wrote:

Hello,

 

I have used the following code as usual to find in which dataset a variable may exist in a library.

The problem, it seems that this code is not working with a DataMart.

 

Does someone may have an idea how to do that?

 


What code?

 

If the data mart is not SAS data then SAS would likely have to connect to the mart and query the tools used by that data source to find things from the meta data.

alepage
Barite | Level 11

Sorry, I have forgotten to incluce the code

 

proc sql;
select name,memname
from dictionary.columns
where libname EQ 'MYLIBRARY' and UPCASE(name) EQ 'CUSTOMERNUMBER' ;
quit;
run;

SASKiwi
PROC Star

What do you mean by a datamart? What database is this running on and how are you connecting to it? Please bear in mind that the DICTIONARY tables are optimised for use with SAS data libraries and may not work so well with external databases. If you are dealing with an external database like Oracle or SQL Server it would be preferable to query the database's dictionary tables directly.  

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1461 views
  • 0 likes
  • 3 in conversation