IDAX.LIST_COLPROPS - List column properties for selected or all models
Use this stored procedure to list column properties for the selected models or for all models.
Authorization
The privileges held by the authorization ID of the statement must include at least one of the following authorities:
- CONTROL privilege on the model
- SELECT privilege on the model
- DATAACCESS authority
Syntax
IDAX.LIST_COLPROPS(in parameter_string varchar(32672))
Parameter descriptions
- parameter_string
- Mandatory one-string parameter that contains pairs of <parameter>=<value> entries that are separated by a comma.
Returned information
The result set columns are as follows:
- For format=meta-long, the result set has the columns that are shown in the table.
- For format=meta-short, the result set has the same columns as for format=meta-long that are shown in the table, except for the column type. The column type is VARCHAR for all columns.
- For format=long, the result set has the same columns as the definition of the column property table.
- For format=short, all columns of the column property table are returned except for the statistics columns that are currently unused.
Column name | Column type | Description |
---|---|---|
MODELSCHEMA | VARCHAR(128) | The schema of the analytics model that stores the model components |
MODELNAME | VARCHAR(64) | The name of the analytics model |
COLUMNNAME | VARCHAR(128) | The name of the column in the input table All properties of each column of the input table are listed. |
PROPERTYNAME | VARCHAR(64) | The name of the column property |
PROPERTYTYPE | VARCHAR(64) | The name of the data type of the property Mostly, the properties are terms, so the type is VARCHAR. The weight property has a numerical type, for example, INTEGER or DOUBLE. |
PROPERTYVALUE | VARCHAR(64) | The value of the column property |
Example
CALL IDAX.LIST_COLPROPS('where=PROPERTYNAME=''COLDATATYPE''');