- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi. I'm currently using SAS 9.4 - SAS for Windows. It seems as if there's a bug or setting that's gone funny and am not sure what caused it. When I'm viewing the data in VIEWTABLE and want to see the column attributes, the new window opens but is blank. Any idea what could be causing this and what needs to be changed?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You can always just use CODE to find out what is in the datasets.
PROC CONTENTS is what you want:
proc contents data=mylib.mydataset ;
run;
(although I cannot figure out why the current documentation seems to want to force you to use the much more complicated PROC DATASETS instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Does it happen for all datasets? Does continue to happen if you start a new SAS session?
PS There is no need to bother to insert a picture into a PDF file and upload a file as an attachment. Just paste the picture into the forum editor. Or use the Insert Photos option to upload an image file directly without first bothering to insert the image file into a PDF file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
You can always just use CODE to find out what is in the datasets.
PROC CONTENTS is what you want:
proc contents data=mylib.mydataset ;
run;
(although I cannot figure out why the current documentation seems to want to force you to use the much more complicated PROC DATASETS instead.