Hello,
I want to see the variables in a pdb. here's my code:
libname pdb '/a/b/c/d/e/2017/0501';
proc contents data=pdb;
proc print data=pdb;
what am i doing wrong here? please help.
You created a libref that points to a directory and then asked PROC CONTENTS to show you the variables in an unrelated WORK dataset. If you know the member name of the dataset want then use that in the proc contents statement.
proc contents data=pdb.mydataset; run;
Or if you want to see the contetns for all of the datasets in the library then use the _ALL_ keyword.
proc contents data=pdb._all_; run;
We don't know what you are doing wrong, because you haven't explained what happens that you think is wrong. Perhaps you could explain what you see or don't see that is wrong, and why it is wrong.
Thank you.
in the log, it notes the the libref was successfully assigned, but the error noted under the proc contents says "file.work.pdb.data does not exist". do i need a data step?
You created a libref that points to a directory and then asked PROC CONTENTS to show you the variables in an unrelated WORK dataset. If you know the member name of the dataset want then use that in the proc contents statement.
proc contents data=pdb.mydataset; run;
Or if you want to see the contetns for all of the datasets in the library then use the _ALL_ keyword.
proc contents data=pdb._all_; run;
Thank you very much, Tom.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.