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



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 1688 views
  • 0 likes
  • 2 in conversation