Kinetica   C#   API  Version 7.2.3.0
kinetica.InsertRecordsFromQueryRequest.CreateTableOptions Struct Reference

A set of string constants for the parameter create_table_options. More...

Public Attributes

const string TYPE_ID = "type_id"
 ID of a currently registered type. More...
 
const string NO_ERROR_IF_EXISTS = "no_error_if_exists"
 If TRUE, prevents an error from occurring if the table already exists and is of the given type. More...
 
const string TRUE = "true"
 
const string FALSE = "false"
 
const string IS_REPLICATED = "is_replicated"
 Affects the distribution scheme for the table's data. More...
 
const string FOREIGN_KEYS = "foreign_keys"
 Semicolon-separated list of foreign keys, of the format '(source_column_name [, ...]) references target_table_name(primary_key_column_name [, ...]) [as foreign_key_name]'. More...
 
const string FOREIGN_SHARD_KEY = "foreign_shard_key"
 Foreign shard key of the format 'source_column references shard_by_column from target_table(primary_key_column)'. More...
 
const string PARTITION_TYPE = "partition_type"
 Partitioning scheme to use. More...
 
const string RANGE = "RANGE"
 Use range partitioning. More...
 
const string INTERVAL = "INTERVAL"
 Use interval partitioning. More...
 
const string LIST = "LIST"
 Use list partitioning. More...
 
const string HASH = "HASH"
 Use hash partitioning. More...
 
const string SERIES = "SERIES"
 Use series partitioning. More...
 
const string PARTITION_KEYS = "partition_keys"
 Comma-separated list of partition keys, which are the columns or column expressions by which records will be assigned to partitions defined by PARTITION_DEFINITIONS. More...
 
const string PARTITION_DEFINITIONS = "partition_definitions"
 Comma-separated list of partition definitions, whose format depends on the choice of PARTITION_TYPE. More...
 
const string IS_AUTOMATIC_PARTITION = "is_automatic_partition"
 If TRUE, a new partition will be created for values which don't fall into an existing partition. More...
 
const string TTL = "ttl"
 Sets the TTL of the table specified in table_name. More...
 
const string CHUNK_SIZE = "chunk_size"
 Indicates the number of records per chunk to be used for this table. More...
 
const string IS_RESULT_TABLE = "is_result_table"
 Indicates whether the table is a memory-only table. More...
 
const string STRATEGY_DEFINITION = "strategy_definition"
 The tier strategy for the table and its columns. More...
 

Detailed Description

A set of string constants for the parameter create_table_options.

Options used when creating the target table.

Definition at line 22 of file InsertRecordsFromQuery.cs.

Member Data Documentation

◆ CHUNK_SIZE

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.CHUNK_SIZE = "chunk_size"

Indicates the number of records per chunk to be used for this table.

Definition at line 201 of file InsertRecordsFromQuery.cs.

◆ FALSE

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.FALSE = "false"

Definition at line 49 of file InsertRecordsFromQuery.cs.

◆ FOREIGN_KEYS

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.FOREIGN_KEYS = "foreign_keys"

Semicolon-separated list of foreign keys, of the format '(source_column_name [, ...]) references target_table_name(primary_key_column_name [, ...]) [as foreign_key_name]'.

Definition at line 76 of file InsertRecordsFromQuery.cs.

◆ FOREIGN_SHARD_KEY

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.FOREIGN_SHARD_KEY = "foreign_shard_key"

Foreign shard key of the format 'source_column references shard_by_column from target_table(primary_key_column)'.

Definition at line 81 of file InsertRecordsFromQuery.cs.

◆ HASH

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.HASH = "HASH"

Use hash partitioning.

Definition at line 144 of file InsertRecordsFromQuery.cs.

◆ INTERVAL

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.INTERVAL = "INTERVAL"

Use interval partitioning.

Definition at line 134 of file InsertRecordsFromQuery.cs.

◆ IS_AUTOMATIC_PARTITION

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.IS_AUTOMATIC_PARTITION = "is_automatic_partition"

If TRUE, a new partition will be created for values which don't fall into an existing partition.

Supported values:

The default value is FALSE.

Definition at line 192 of file InsertRecordsFromQuery.cs.

◆ IS_REPLICATED

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.IS_REPLICATED = "is_replicated"

Affects the distribution scheme for the table's data.

Supported values:

The default value is FALSE.

Definition at line 68 of file InsertRecordsFromQuery.cs.

◆ IS_RESULT_TABLE

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.IS_RESULT_TABLE = "is_result_table"

Indicates whether the table is a memory-only table.

Supported values:

The default value is FALSE.

Definition at line 219 of file InsertRecordsFromQuery.cs.

◆ LIST

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.LIST = "LIST"

Use list partitioning.

Definition at line 139 of file InsertRecordsFromQuery.cs.

◆ NO_ERROR_IF_EXISTS

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.NO_ERROR_IF_EXISTS = "no_error_if_exists"

If TRUE, prevents an error from occurring if the table already exists and is of the given type.

Supported values:

The default value is FALSE.

Definition at line 46 of file InsertRecordsFromQuery.cs.

◆ PARTITION_DEFINITIONS

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.PARTITION_DEFINITIONS = "partition_definitions"

Comma-separated list of partition definitions, whose format depends on the choice of PARTITION_TYPE.

See range partitioning, interval partitioning, list partitioning, hash partitioning, or series partitioning for example formats.

Definition at line 174 of file InsertRecordsFromQuery.cs.

◆ PARTITION_KEYS

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.PARTITION_KEYS = "partition_keys"

Comma-separated list of partition keys, which are the columns or column expressions by which records will be assigned to partitions defined by PARTITION_DEFINITIONS.

Definition at line 156 of file InsertRecordsFromQuery.cs.

◆ PARTITION_TYPE

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.PARTITION_TYPE = "partition_type"

◆ RANGE

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.RANGE = "RANGE"

Use range partitioning.

Definition at line 129 of file InsertRecordsFromQuery.cs.

◆ SERIES

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.SERIES = "SERIES"

Use series partitioning.

Definition at line 149 of file InsertRecordsFromQuery.cs.

◆ STRATEGY_DEFINITION

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.STRATEGY_DEFINITION = "strategy_definition"

The tier strategy for the table and its columns.

Definition at line 224 of file InsertRecordsFromQuery.cs.

◆ TRUE

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.TRUE = "true"

Definition at line 48 of file InsertRecordsFromQuery.cs.

◆ TTL

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.TTL = "ttl"

Sets the TTL of the table specified in table_name.

Definition at line 197 of file InsertRecordsFromQuery.cs.

◆ TYPE_ID

const string kinetica.InsertRecordsFromQueryRequest.CreateTableOptions.TYPE_ID = "type_id"

ID of a currently registered type.

The default value is ''.

Definition at line 28 of file InsertRecordsFromQuery.cs.


The documentation for this struct was generated from the following file: