1) If you really like to change path of WORK library. You need add the following line into SASV9.CFG .
2) The most conventient way is using option 'user=' as I mentioned in another post.
libname x v9 'd:\temp\';
options user=x;
data class;
set sashelp.class;
run;
And you will see all the table from WORK library are in USER library ,and they are retained, would not be removed even after closing sas windows.
... View more