|
> From: Pandit, Ann [mailto:ann.pandit@SPCORP.COM]
> I could not see *.sd2 file via my SAS V8 explore.
> What do I need to do?
Here the template for proc COPY:
libname LIB_FROM v6 "";%*note engine;
libname LIB_TO v8 "";
proc COPY in = LIB_FROM
out = LIB_TO
memtype = data
memtype = (access all catalog data program view)
move
;
exclude DSN1 DSN2
/memtype = data
;
select DSN1 DSN2
select DSN:
select DSN1-DSN3
/memtype = data
;
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
By using your intelligence
-- or your old v6 *.sd2 files --
you can sometimes make your problems twice as complicated.
-- Ashleigh Brilliant
|