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-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 5 replies
  • 1071 views
  • 0 likes
  • 2 in conversation