BookmarkSubscribeRSS Feed
Babloo
Rhodochrosite | Level 12

Could someone guide me to overcome this error? I ran this code in SAS EG 6.1 and it is connected to UNIX server.

 

147        proc sql ;
148        
149        create table sasuser.&outfile as
150        select
151        	mclu,
152        	barcode,
153        	cluster_num,
154        	cluster_name,
155        	offer_category,
156        	cost,
157        	units,
158        	bar_code,
159            mclu_code,
160            start_date,
161            stop_date,
162            expire_date
163        from
164         	plan_scrubbed
165        order by mclu
166        ;
ERROR: User does not have appropriate authorization level for library SASUSER.

Thanks in advance for any guidance.

2 REPLIES 2
BrunoMueller
SAS Super FREQ

Hi

 

Run the this code

libname sasuser list;

It will give some details on SASUSER including the permission settings. this will explain the error you get.

Whether you can change the permission for the directory, this depends on the setup.

 

Bruno

LinusH
Tourmaline | Level 20

I think that SAS intelligence server default is setup with the -rsasuser option set.

talk to your SAS server admin to see if that can be changed, or perhaps you could be given an alternative permanent libref to store your personal results.

Data never sleeps

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
  • 2 replies
  • 3628 views
  • 0 likes
  • 3 in conversation