BookmarkSubscribeRSS Feed
yesidgranadosv
Obsidian | Level 7
I have an indexing program but every time I use it generates an error :
 
"GOPTIONS ACCESSIBLE;
proc datasets library=DATA AML;
ERROR: El libref DATA AML no se ha asignado.
NOTE: Statements not processed because of errors noted above.
modify TBL BI CLIENTES;
INDEX CREATE NROIDENTIFICACION;
ERROR: There is no data set to modify.
 quit;"
 
I'd like to find a code that assigns me the bookcase before it's indexed.
 
I LEAVE MY INDEXATION CODE
 
proc datasets library=DATA_AML;
modify TBL_BI_CLIENTES;
INDEX CREATE NROIDENTIFICACION;
quit;
5 REPLIES 5
yesidgranadosv
Obsidian | Level 7
it doesn't work for me, you can give me an example
Kurt_Bremser
Super User
libname mylib "path_to_library";

mylib is the reference you will use later, path_to_library is the fully qualified path to the directory as defined in the filesystem. 

yesidgranadosv
Obsidian | Level 7
I have not been useful

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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