Chapter Contents |
Previous |
Next |
SAS/ACCESS Interface to CA-DATACOM/DB: Reference |
Here is a list of available data set options.
DDBKEY= 'default-key' | |
DDBLOAD=0|1 | |
DDBLOCK=0|1 | |
DDBPW= 'password' | |
DDBSV= 'status/version' | |
DDBTRACE=0|1 | |
DDBURT= 'User-Requirements-Table-name' | |
DDBUSER= 'userid' |
You can specify the data set options with the DATA= argument in any PROC statement or DATA step. They are effective for that single execution of the procedure. Data set options will override the corresponding values stored in the view descriptor.
The following example executes the FSEDIT procedure using a view descriptor named CUSTM. The data set options specified in the PROC statement will set the userid to JOHN and the password to MINE, regardless of what userid and password may have been included in the view descriptor.
proc fsedit data=vlib.custm (ddbuser='john' ddbpw='mine'); run;
A description of each data set option follows.
DDBKEY= Data Set Option |
DDBKEY='default-key' |
DDBLOAD= Data Set Option |
DDBLOAD=0|1 |
Do not set DDBLOAD equal to 1 for SAS procedures such as FSEDIT that reposition on a newly added data record.
DDBLOCK= Data Set Option |
DDBLOCK=0|1 |
The DDBLOCK= data set option is another way to give a procedure static data. DDBLOCK=0 (the default) causes the interface to create an intermediate file (spool file), which holds the data to be processed by the SAS program. If DDBLOCK is non-zero, for example, DDBLOCK=1, the interface view engine does not build a spool file; it assumes that only one user is accessing the table or that the table is locked by some method separate from the SAS System. For more information about member-level locking and spool files, see Locks and the Spool File.
DDBPW= Data Set Option |
DDBPW='password' |
Not every userid requires a password. The value is the 12-character PASSWORD attribute of the PERSON entity-occurrence for the specified userid.
DDBSV= Data Set Option |
DDBSV='status/version' |
DDBTRACE= Data Set Option |
DDBTRACE=0|1 |
The DDBTRACE= data set option is used to analyze problems in SAS software. It also allows you to display the WHERE clause that is passed to CA-DATACOM/DB, and a message indicating whether a temporary index will be created. The default for DDBTRACE is 0, which means no information is displayed. (For more information on the WHERE clause display, see Error Messages and Debug Information.)
The DDBTRACE= data set option can be used to produce traces for debugging purposes. Contact Technical Support at the Institute if you need more information.
DDBURT= Data Set Option |
DDBURT='User-Requirements-Table-name' |
DDBUSER= Data Set Option |
DDBUSER='userid' |
The userid is the 32-character entity-occurrence name of a PERSON entity in the CA-DATADICTIONARY database. It is not necessarily the same as the user's TSO id. The userid and optional password must have retrieval authority on six entity-types: DATABASE, FILE, RECORD, KEY, ELEMENT, and FIELD.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.