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 (February 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, 5 Feb 2004 21:45:10 -0500
Reply-To:     Lou <lpogodajr292185@COMCAST.NET>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Lou <lpogodajr292185@COMCAST.NET>
Subject:      Re: List of datasets

"Nancy Brucken" <brucken@PROVIDE.NET> wrote in message news:200402040544.i145iOB29144@listserv.cc.uga.edu... > Hi, > Venky gave you one way to do this; here's another approach: > > proc sql noprint; > create table datasets as > select memname from dictionary.tables > where libname="P1_&dept"; > quit; > > Make sure P1_&dept resolves to exactly the same name found in the > dictionary table- the comparison is case-sensitive. > > Hope this helps, > Nancy

You can make it not case sensitive by changing the last line to something like

where lowcase(libname) = lowcase("P1_&dept");


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