BookmarkSubscribeRSS Feed
mcrum1
Calcite | Level 5

Hello! I’m still pretty new to SAS. I was wondering how would I change the libname statement to “read only” after it creates the tables in a program and prevent it from overwriting existing tables if I run the program again?  Also, if the program gets ran again, I would like to prevent it from overwriting existing tables. 

I tried running the libname withoutACCESS=READONLY” in the beginning of the program and including the libname again withACCESS=READONLY” at the end of the program. It  doesn’t prevent my tables from getting overwritten if the program gets ran again.

LIBNAME X "&UDIR\SAS TABLES\&MP1DB_YYMMN6";

My Tables in Program

LIBNAME X "&UDIR\SAS TABLES\&MP1DB_YYMMN6" ACCESS=READONLY;

Thanks so much!

7 REPLIES 7
PGStats
Opal | Level 21

Try using dataset option (REPLACE=NO) in the step that may overwrite the table. - PG

PG
jwillis
Quartz | Level 8

I used two macro variables.  When I call the program, and it is the first running, I make my library name the 'update' library.  When I am re-running the code, I make my library the read only library.

(I did not check this for syntax and misspellings)

%let rerun=no;

libname writeover 'my\writable\table\folder\location';

libname readonly 'my\readonly\table\folder\location';

%macro rerun;

%if &rerun=no %then %do;

%let libnm=writeover;

%end;

%else %if rerun=yes %then %do;

%libnm=readonly;

%end;

%else %do;

%let libnm=work;

%end;

%mend;

%rerun;

data &libnm..dataout;

     set writable.datain;

run;


Astounding
PROC Star

Just a guess here ... that sometimes the reason this question comes up relates to having blown away a data set by leaving out a semicolon on the DATA statement.  This program, for example, replaces a good data set with garbage:

data perm.old

   set perm.old;

   total = 2 * pints;

run;

To prevent this from happening, the DATASTMTCHK option can restrict what is a valid data set name.  For example, it can prevent the above DATA step from running by classifying SET as an invalid data set name.  The possible values include COREKEYWORDS (such as SET, MERGE, UPDATE), ALLKEYWORDS (adds DATA step statements as invalid data set names) and NONE (no restrictions on data set names).

SASBob
Fluorite | Level 6

if you are running the program a second time then yes, it will overwrite the dataset.

what you have supplied as your code is similar to below.

libname x "d:\temp";

data x.one;

  today=today();           /* this will create the dataset */

run;

libname x clear;

libname x "d:\temp" access=readonly;

data x.one;

  today=today()-1;

  format today date9.;    this will NOT overwrite the dataset due to the ACCESS=readonly */

run;

If you rerun the code the first one will again, overwrite your dataset.

Tom
Super User Tom
Super User

If you are going to re-run the program then the program itself needs to be smart enough not to overwrite (or whatever logic you want).

In general I have found it is useful to separate derived data programs (or ETL) from analysis programs.

One way to help eliminate confusion is to force the program that wants to write to use a different LIBREF.

So you might have a standard

LIBNAME MYDATA '.....' ACCESS=READONLY;

at the top of all of the programs.  And then the programs that need to create new data in the library might create a new libref.

LIBNAME WMYDATA '....' ;

data wmydata.new ;

...

run;

libname WMYDATA clear ;

SASBob
Fluorite | Level 6

Tom,

  after I looking at my response, I don't think I could have been any more vague. thank you for putting into words what I was trying to say Smiley Happy

Bob

Ksharp
Super User

1) make a view for each and everyone of tables.

2) add dataset's option   alter=   to avoid being overwrite problem .

Xia Keshan

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 7 replies
  • 19282 views
  • 0 likes
  • 7 in conversation