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?
@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.
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;
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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.