BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
prolifious
Obsidian | Level 7

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.

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

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;

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

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.

 

 

--
Paige Miller
prolifious
Obsidian | Level 7

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?

Tom
Super User Tom
Super User

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;
prolifious
Obsidian | Level 7

Thank you very much, Tom.

SAS Innovate 2025: Register Now

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!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 4 replies
  • 4490 views
  • 2 likes
  • 3 in conversation