BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
GenDemo
Quartz | Level 8

Hi All

 

I am a fairly new user to EG as I usually program in base SAS and then put scripts in a EG project to automate data runs.

I picked up this issue, and being unsure around EG, I am an not sure why its giving the error.

 

I have a macro that is called and creates table names using the following convention to create table names : "table_name". Code is given below. When I developed this in Base SAS, it gives no error. It writes these tables to a library called WC000001. When I put this in EG, it gave an error 'user access' (see screen shot below).

 

proc datasets library=work noprint;
 delete CDQ_CD_MOB;
run;

%macro run_CD_MOB(MOB);

	proc sql;
 		create table "CD_&MOB.MOB" as
			select *
			 from CDQ_monthly
			 where MOB = &MOB
			;
	quit;

 	proc append data="CD_&MOB.MOB" base= CDQ_CD_MOB;
	 run;

%mend run_CD_MOB;

%run_CD_MOB(3);
%run_CD_MOB(6);

user access issue.JPG

 

 

I'd appreciate input on two matters:

1. why does EG have this issue and how do I fix it.

2. how do I redirect this code to output the tables to a library of my own choosing (or to the work library). This will probably fix the issue anyway.

 

Thnx

 

GD

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

I think SAS is interpreting the statement:

 

 create table "CD_&MOB.MOB"

 

As a reference to a filename, not a data set.  Try removing the quotes from the reference (in both the SQL and APPEND steps).

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

View solution in original post

5 REPLIES 5
art297
Opal | Level 21

I'm confused! Where do you mention the library WC000001? And, should the various file names be in quotes?

 

Art, CEO, AnalystFinder.com

 

GenDemo
Quartz | Level 8

because I use a macro variable in the table name, you need to put quotation marks around the name. Because of this, SAS puts it into a temporary library (some some silly reason).

ChrisHemedinger
Community Manager

I think SAS is interpreting the statement:

 

 create table "CD_&MOB.MOB"

 

As a reference to a filename, not a data set.  Try removing the quotes from the reference (in both the SQL and APPEND steps).

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
GenDemo
Quartz | Level 8
wow now I feel really embarrased & stupid...
When I developed this it gave me an error...hence I put the quotation marks around.
Maybe there was something else wrong at that time.

Thnx though.. 😄
ChrisHemedinger
Community Manager

Happens to the best of us 🙂  Glad it's working.

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 2118 views
  • 2 likes
  • 3 in conversation