BookmarkSubscribeRSS Feed
neha11_ch
Fluorite | Level 6


Hi All,

 

When I am running below peice of code, I am getting error message :

/****Code *****/

%put %str(NOTE: Creating indexes in Parallel...);

proc datasets lib = VL00 nolist;

modify VL0004_005D_Employee_Sensitive (asyncindex=YES);

index create VL0004_004D_Employee_Sk ;

index create Employee_Id ;

index create Person_Id ;

quit;

 

 

/*****Log ********/

MPRINT(ETLS_LOADER): ;

NOTE: Creating indexes in Parallel...

MPRINT(ETLS_LOADER): proc datasets lib = VL00 nolist;

MPRINT(ETLS_LOADER): modify VL0004_005D_Employee_Sensitive (asyncindex=YES);

MPRINT(ETLS_LOADER): index create VL0004_004D_Employee_Sk ;

NOTE: Because ASYNC operations create indexes in parallel, the status for all defined indexes will be determined at closing time.

NOTE: Simple index VL0004_004D_Employee_Sk has been defined.

MPRINT(ETLS_LOADER): index create Employee_Id ;

ERROR: Specified resource already exists.

MPRINT(ETLS_LOADER): index create Person_Id ;

MPRINT(ETLS_LOADER): quit;

 

NOTE: Statements not processed because of errors noted above.

NOTE: The SAS System stopped processing this step because of errors.

NOTE: SAS set option OBS=0 and will continue to check statements. This might cause NOTE: No observations in data set.

NOTE: PROCEDURE DATASETS used (Total process time):

real time 1.55 seconds

cpu time 0.00 seconds

3 REPLIES 3
Kalind_Patel
Lapis Lazuli | Level 10

It might be a long shot, but if the sas table currently exists (from a previous try) then it'll need deleting before running the code again.

neha11_ch
Fluorite | Level 6

In the code, every time I am dropping the table first and then recreating it. And then i am trying to create indexes. The same code is working perfectly fine in production environment but not in testing environment. 

 

Kalind_Patel
Lapis Lazuli | Level 10

Please try this code

%put %str(NOTE: Creating indexes in Parallel...);
proc datasets lib = VL00 nolist;
modify VL0004_005D_Employee_Sensitive (asyncindex=YES);
index delete VL0004_004D_Employee_Sk ;
index delete Employee_Id ;
index delete Person_Id ;
index create VL0004_004D_Employee_Sk ;
index create Employee_Id ;
index create Person_Id ;
quit;

 

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 connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 2079 views
  • 0 likes
  • 2 in conversation