LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (June 2004, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 3 Jun 2004 17:39:34 -0400
Reply-To:   Mike Rhoads <RHOADSM1@WESTAT.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Mike Rhoads <RHOADSM1@WESTAT.COM>
Subject:   Re: SASHELP.VCOLUMN is missing libraries
Comments:   To: Kevin Roland Viel <kviel@EMORY.EDU>
Content-Type:   text/plain

Kevin,

SASHELP.VMEMBER (from DICTIONARY.MEMBERS) contains a record for each "SAS file". "SAS files" include not only SAS data sets, but also things like catalogs and item stores, which don't have columns and therefore wouldn't show up in VCOLUMN. So, my guess is that the "missing" LIBNAMES contain one or more of these, but no data sets or views.

Hope that's it!

Mike Rhoads Westat RhoadsM1@Westat.com

-----Original Message----- From: Kevin Roland Viel [mailto:kviel@EMORY.EDU] Sent: Thursday, June 03, 2004 4:57 PM To: SAS-L@LISTSERV.UGA.EDU Subject: SASHELP.VCOLUMN is missing libraries

I have submitted the following code:

proc sql ; title "SASHELP.vcolumn" ; select distinct libname from SASHELP.vcolumn ;

title "SASHELP.vmember" ; select distinct libname from SASHELP.vmember ; quit ;

I have obtained:

SASHELP.vcolumn

Library Name

FVIII MAPS SASHELP SASUSER

SASHELP.vmember

Library Name

AA FILE_ID FVIII GAIT MAPS PCR SASHELP SASUSER SNP23 WORK

All of these libraries are functional, i.e. I can access them through the explorer window or in my code. Might anyone suggest a reason? If I create a temporary dataset from a dataset in AA, for instance, then I can use VCOLUMN to obtain its variables.

Thanks,

Kevin

Kevin Viel Department of Epidemiology Rollins School of Public Health Emory University Atlanta, GA 30322


Back to: Top of message | Previous page | Main SAS-L page