BookmarkSubscribeRSS Feed

I am looking for a configuration SAS file that will have a Replace/Noreplace option setting.  Where in the SAS/Config directory is it?

Thank you!

7 REPLIES 7
SangramjitPanda
Obsidian | Level 7

By default the option REPLACE is enabled. You can use following files to update with NOREPLACE.

 

sasv9_local.cfg : ~/SASHOME/SASFoundation/9.4/ (i.e ~/SASRoot)

 

you can also set this option in autoexec_usermods.sas located at: ~/SASCONFIG/Lev1/SASApp/WorkspaceServer

remember to use the Autoexec option included in sasv9_local.cfg.

 

 

In our test environment we get this message when running SAS processes

WARNING: Data set SASDATA.XXX was not replaced because of NOREPLACE option.   

In production we don't get this message so I was trying to figure out where this NOREPLACE option is set but I can't find it.  I checked sasv9.cfg files in multiple locations but I don't see this option in any of these .cfg files...

Reeza
Super User

The NOREPLACE option can be set in several places:

  • SAS 9.4: Configuration file,
  • SAS invocation,
  • OPTIONS statement, 
  • SAS System Options window

 

http://documentation.sas.com/?docsetId=lesysoptsref&docsetTarget=n16q7psnp46obtn1hqbni4o7f6qg.htm&do...

SangramjitPanda
Obsidian | Level 7

Use the below code to identify the location of config files:

 

proc options option=config;
run;

 

In the log, check for the below information:

 

SAS (r) Proprietary Software Release 9.4 TS1M3

CONFIG=(*******)

 

 

Reeza
Super User

And if you're not an administrator you can use the OPTIONS statement to set this as well.

 

option noreplace;
nhvdwalt
Barite | Level 11

Use the below code to see where SAS is reading the value from:

 

proc options option=replace value;
run;

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 3547 views
  • 2 likes
  • 5 in conversation