"SASLINK":"sas.ep::TT_SAS_MODEL_TABLE"
.
This table type is created in the SAP HANA system when the SAS Embedded
Process is installed.
Column Name
|
Description
|
Specification
|
---|---|---|
MODELNAME
|
Contains the name of
the model.
|
NVARCHAR(128) NOT NULL
|
MODELDS2
|
Contains the sasscore_modelname.ds2 file. Used by traditional model scoring.
|
NCLOB NOT NULL
|
MODELFORMATS
|
Contains the sasscore_modelname_ufmt.xml file. Used by traditional model scoring.
|
NCLOB
|
MODELMETADATA
|
Contains the analytic
store. Used by analytic store scoring.
|
NCLOB
|
MODELUUID1
|
Contains the UUID of
the source model. Used by traditional model scoring.
Contains the analytic
store file, the DS2 program, and the formats XML file. Used by analytic
store scoring.
|
NVARCHAR (36)
|
NOTES1
|
Contains additional
information that describes the source model.
|
NVARCHAR (512)
|
1This column is for use by SAS Model Manager. |
%let indconn = %str(user='youruserid' password='yourpwd' schema=yourschema);
specifies the name of an SAP HANA database where the sasscore_modelname.ds2 and sasscore_modelname_ufmt.xml scoring files are held.
Default | The database specified in the INDCONN macro variable or your current database. |
Interaction | The database that is specified by the DATABASE argument takes precedence over the server, port, or instance value that you specify in the INDCONN macro variable. For more information, see 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 |
Requirements | The maximum table name length is 30 characters, and it must be a valid SAP HANA table name. |
If the table name is case sensitive, you must enclose the name in double quotation marks and set the INDCONN macro variable’s PRESERVE_TAB_NAMES argument to YES. | |
Interactions | If the name of the model table is not fully qualified in the macro call, the table is created in the schema specified in either the INDCONN macro variable or the user’s default schema. |
The table name that you specify for this macro must be the same table name that is used in the %INDHN_PUBLISH_MODEL and the %INDHN_RUN_MODEL macros. | |
See | %INDHN_PUBLISH_MODEL Macro Syntax |
INDCONN Macro Variable |
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 |