Column Name
|
Description
|
Specification
|
---|---|---|
ModelName
|
contains the name of
the model
|
VARCHAR(128)
|
ModelDS2
|
contains the sasscore_modelname.ds2
file
|
BLOB not null
|
ModelFormats
|
contains the sasscore_modelname_ufmt.xml
file
|
BLOB
|
ModelMetadata
|
reserved by SAS for
future use
|
BLOB
|
ModelUUID1
|
contains the UUID of
the source model
|
VARCHAR (36)
|
Notes1
|
contains additional
information that describes the source model
|
VARCHAR (512)
|
1This column is for use by SAS Model Manager. If you have a model table that was created prior to SAS 9.4 and you want this column in your model table, you must run the %INDOR_CREATE_MODELTABLE macro to re-create your model table. |
%let indconn = user=myuserid password=xxxx path=ortest;
specifies the name of an Oracle database where the sasscore_modelname.ds2 and sasscore_modelname_ufmt.xml scoring files are held.
Default | The database specified in the INDCONN macro variable |
specifies the name of the table that holds the sasscore_modelname.ds2 and sasscore_modelname_ufmt.xml scoring files.
Default | sas_model_table |
Requirement | The maximum table name length is 30 characters, and it must be a valid Oracle table name. |
Interaction | The table name that you specify for this macro must be the same table name that is used in the %INDOR_PUBLISH_MODEL macro. |
See | %INDOR_PUBLISH_MODEL Macro Syntax |
specifies one of the following actions that the macro performs:
creates a new table.
Tip | If the table has been previously defined and you specify ACTION=CREATE, an error is issued. |
overwrites the current table, if a table with the same name is already registered.
Tip | If you specify ACTION = REPLACE, and the current table contains sasscore_modelname.ds2 and sasscore_modelname_ufmt.xml files, the files are deleted and an empty table is re-created. |
causes all models in this table to be dropped.
Default | CREATE |