I am sorry for coming up with this most basic question. So far I have been working with Work library because of which I have not bothered about creating my own library. However, my recent codes take a long time to execute because of the volume of data, and each time I open SAS I need to run them all.
So my question is after creating my library by
LIBNAME ZZZ 'mydata/myfile/...';
what should I do so that I don't need to write 'ZZZ' in my code over and over again. For example:
PROC IMPORT DATA= ZZZ.YYY...
Thus I will have reference ZZZ every time. I want to get rid of this referencing.
Much thanks. Regards.