Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Language Reference

LOAD Statement

loads modules and matrices from library storage

LOAD <MODULE=(module-list)> <matrix-list>;

The inputs to the LOAD statement are as follows:

module-list
is a list of modules.

matrix-list
is a list of matrices
The LOAD statement loads modules or matrix values from the current library storage into the current workspace. For example, to load three modules A, B, and C and one matrix X, specify the statement
   load module=(A B C) X;
The special operand _ALL_ can be used to load all matrices or all modules. For example, if you want to load all matrices, specify
   load _all_;
If you want to load all modules, specify
   load module=_all_;
To load all matrices and modules stored in the library storage, you can enter the LOAD command without any arguments:
   load;
The storage library can be specified using a . The default library is SASUSER.IMLSTOR. For more information, see Chapter 14, "Storage Features," and the descriptions of the STORE, REMOVE, RESET, and SHOW statements.

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.