|
Kinetica C# API
Version 7.2.3.1
|
A set of string constants for the parameter options. More...
Public Attributes | |
| const string | CREATE_TEMP_TABLE = "create_temp_table" |
| If TRUE, a unique temporary table name will be generated in the sys_temp schema and used in place of table_name. More... | |
| const string | TRUE = "true" |
| const string | FALSE = "false" |
| const string | COLLECTION_NAME = "collection_name" |
| [DEPRECATED–please specify the containing schema for the projection as part of table_name and use Kinetica.createSchema to create the schema if non-existent] Name of the schema for the output table. More... | |
| const string | MODE = "mode" |
| The mode describes what rows of the tables being unioned will be retained. More... | |
| const string | UNION_ALL = "union_all" |
| Retains all rows from the specified tables. More... | |
| const string | UNION = "union" |
| Retains all unique rows from the specified tables (synonym for UNION_DISTINCT). More... | |
| const string | UNION_DISTINCT = "union_distinct" |
| Retains all unique rows from the specified tables. More... | |
| const string | EXCEPT = "except" |
| Retains all unique rows from the first table that do not appear in the second table (only works on 2 tables). More... | |
| const string | EXCEPT_ALL = "except_all" |
| Retains all rows(including duplicates) from the first table that do not appear in the second table (only works on 2 tables). More... | |
| const string | INTERSECT = "intersect" |
| Retains all unique rows that appear in both of the specified tables (only works on 2 tables). More... | |
| const string | INTERSECT_ALL = "intersect_all" |
| Retains all rows(including duplicates) that appear in both of the specified tables (only works on 2 tables). More... | |
| const string | CHUNK_SIZE = "chunk_size" |
| Indicates the number of records per chunk to be used for this output table. More... | |
| const string | CHUNK_COLUMN_MAX_MEMORY = "chunk_column_max_memory" |
| Indicates the target maximum data size for each column in a chunk to be used for this output table. More... | |
| const string | CHUNK_MAX_MEMORY = "chunk_max_memory" |
| Indicates the target maximum data size for all columns in a chunk to be used for this output table. More... | |
| const string | CREATE_INDEXES = "create_indexes" |
| Comma-separated list of columns on which to create indexes on the output table. More... | |
| const string | PARTITION_TYPE = "partition_type" |
| Partitioning scheme to use for the output table. 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 output table specified in table_name. More... | |
| const string | PERSIST = "persist" |
| If TRUE, then the output table specified in table_name will be persisted and will not expire unless a TTL is specified. More... | |
| const string | VIEW_ID = "view_id" |
| ID of view of which this output table is a member. More... | |
| const string | FORCE_REPLICATED = "force_replicated" |
| If TRUE, then the output table specified in table_name will be replicated even if the source tables are not. More... | |
| const string | STRATEGY_DEFINITION = "strategy_definition" |
| The tier strategy for the table and its columns. More... | |
| const string | COMPRESSION_CODEC = "compression_codec" |
| The default compression codec for this table's columns. More... | |
| const string | NO_COUNT = "no_count" |
| Return a count of 0 for the union table response to avoid the cost of counting; optimization needed for many chunk virtual unions. More... | |
A set of string constants for the parameter options.
Optional parameters.
Definition at line 36 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.CHUNK_COLUMN_MAX_MEMORY = "chunk_column_max_memory" |
Indicates the target maximum data size for each column in a chunk to be used for this output table.
Definition at line 154 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.CHUNK_MAX_MEMORY = "chunk_max_memory" |
Indicates the target maximum data size for all columns in a chunk to be used for this output table.
Definition at line 158 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.CHUNK_SIZE = "chunk_size" |
Indicates the number of records per chunk to be used for this output table.
Definition at line 150 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.COLLECTION_NAME = "collection_name" |
[DEPRECATED–please specify the containing schema for the projection as part of table_name and use Kinetica.createSchema to create the schema if non-existent] Name of the schema for the output table.
If the schema provided is non-existent, it will be automatically created. The default value is ''.
Definition at line 64 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.COMPRESSION_CODEC = "compression_codec" |
The default compression codec for this table's columns.
Definition at line 321 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.CREATE_INDEXES = "create_indexes" |
Comma-separated list of columns on which to create indexes on the output table.
The columns specified must be present in output_column_names.
Definition at line 164 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.CREATE_TEMP_TABLE = "create_temp_table" |
If TRUE, a unique temporary table name will be generated in the sys_temp schema and used in place of table_name.
Supported values:
The default value is FALSE.
Definition at line 52 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.EXCEPT = "except" |
Retains all unique rows from the first table that do not appear in the second table (only works on 2 tables).
Definition at line 133 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.EXCEPT_ALL = "except_all" |
Retains all rows(including duplicates) from the first table that do not appear in the second table (only works on 2 tables).
Definition at line 138 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.FALSE = "false" |
Definition at line 55 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.FORCE_REPLICATED = "force_replicated" |
If TRUE, then the output table specified in table_name will be replicated even if the source tables are not.
Supported values:
The default value is FALSE.
Definition at line 310 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.HASH = "HASH" |
Use hash partitioning.
Definition at line 222 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.INTERSECT = "intersect" |
Retains all unique rows that appear in both of the specified tables (only works on 2 tables).
Definition at line 142 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.INTERSECT_ALL = "intersect_all" |
Retains all rows(including duplicates) that appear in both of the specified tables (only works on 2 tables).
Definition at line 146 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.INTERVAL = "INTERVAL" |
Definition at line 212 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.IS_AUTOMATIC_PARTITION = "is_automatic_partition" |
| const string CreateUnionRequest.Options.LIST = "LIST" |
Use list partitioning.
Definition at line 217 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.MODE = "mode" |
The mode describes what rows of the tables being unioned will be retained.
Supported values:
The default value is UNION_ALL.
Definition at line 117 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.NO_COUNT = "no_count" |
Return a count of 0 for the union table response to avoid the cost of counting; optimization needed for many chunk virtual unions.
The default value is 'false'.
Definition at line 327 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.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 251 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.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 234 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.PARTITION_TYPE = "partition_type" |
Partitioning scheme to use for the output table.
Supported values:
Definition at line 202 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.PERSIST = "persist" |
If TRUE, then the output table specified in table_name will be persisted and will not expire unless a TTL is specified.
Supported values:
The default value is FALSE.
Definition at line 289 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.RANGE = "RANGE" |
Use range partitioning.
Definition at line 207 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.SERIES = "SERIES" |
Use series partitioning.
Definition at line 227 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.STRATEGY_DEFINITION = "strategy_definition" |
The tier strategy for the table and its columns.
Definition at line 315 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.TRUE = "true" |
Definition at line 54 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.TTL = "ttl" |
Sets the TTL of the output table specified in table_name.
Definition at line 272 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.UNION = "union" |
Retains all unique rows from the specified tables (synonym for UNION_DISTINCT).
Definition at line 125 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.UNION_ALL = "union_all" |
Retains all rows from the specified tables.
Definition at line 120 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.UNION_DISTINCT = "union_distinct" |
Retains all unique rows from the specified tables.
Definition at line 129 of file CreateUnion.cs.
| const string CreateUnionRequest.Options.VIEW_ID = "view_id" |
ID of view of which this output table is a member.
The default value is ''.
Definition at line 294 of file CreateUnion.cs.