Kinetica   C#   API  Version 7.2.3.0
kinetica.CreateUnionRequest.Options Struct Reference

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"
 If MERGE_VIEWS, then this operation will merge the provided views. 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 MERGE_VIEWS = "merge_views"
 Merge two or more views (or views of views) of the same base data set into a new view. 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 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...
 

Detailed Description

A set of string constants for the parameter options.

Optional parameters.

Definition at line 45 of file CreateUnion.cs.

Member Data Documentation

◆ CHUNK_COLUMN_MAX_MEMORY

const string kinetica.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 197 of file CreateUnion.cs.

◆ CHUNK_MAX_MEMORY

const string kinetica.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 201 of file CreateUnion.cs.

◆ CHUNK_SIZE

const string kinetica.CreateUnionRequest.Options.CHUNK_SIZE = "chunk_size"

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

Definition at line 193 of file CreateUnion.cs.

◆ COLLECTION_NAME

const string kinetica.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 75 of file CreateUnion.cs.

◆ CREATE_INDEXES

const string kinetica.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 207 of file CreateUnion.cs.

◆ CREATE_TEMP_TABLE

const string kinetica.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 61 of file CreateUnion.cs.

◆ EXCEPT

const string kinetica.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 163 of file CreateUnion.cs.

◆ EXCEPT_ALL

const string kinetica.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 168 of file CreateUnion.cs.

◆ FALSE

const string kinetica.CreateUnionRequest.Options.FALSE = "false"

Definition at line 64 of file CreateUnion.cs.

◆ FORCE_REPLICATED

const string kinetica.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 250 of file CreateUnion.cs.

◆ INTERSECT

const string kinetica.CreateUnionRequest.Options.INTERSECT = "intersect"

Retains all unique rows that appear in both of the specified tables (only works on 2 tables).

Definition at line 172 of file CreateUnion.cs.

◆ INTERSECT_ALL

const string kinetica.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 177 of file CreateUnion.cs.

◆ MERGE_VIEWS

const string kinetica.CreateUnionRequest.Options.MERGE_VIEWS = "merge_views"

Merge two or more views (or views of views) of the same base data set into a new view.

If this mode is selected input_column_names AND output_column_names must be empty. The resulting view would match the results of a SQL OR operation, e.g., if filter 1 creates a view using the expression 'x = 20' and filter 2 creates a view using the expression 'x <= 10', then the merge views operation creates a new view using the expression 'x = 20 OR x <= 10'.

Definition at line 189 of file CreateUnion.cs.

◆ MODE

const string kinetica.CreateUnionRequest.Options.MODE = "mode"

If MERGE_VIEWS, then this operation will merge the provided views.

Supported values:

  • UNION_ALL: Retains all rows from the specified tables.
  • UNION: Retains all unique rows from the specified tables (synonym for UNION_DISTINCT).
  • UNION_DISTINCT: Retains all unique rows from the specified tables.
  • EXCEPT: Retains all unique rows from the first table that do not appear in the second table (only works on 2 tables).
  • EXCEPT_ALL: Retains all rows(including duplicates) from the first table that do not appear in the second table (only works on 2 tables).
  • INTERSECT: Retains all unique rows that appear in both of the specified tables (only works on 2 tables).
  • INTERSECT_ALL: Retains all rows(including duplicates) that appear in both of the specified tables (only works on 2 tables).
  • MERGE_VIEWS: Merge two or more views (or views of views) of the same base data set into a new view. If this mode is selected input_column_names AND output_column_names must be empty. The resulting view would match the results of a SQL OR operation, e.g., if filter 1 creates a view using the expression 'x = 20' and filter 2 creates a view using the expression 'x <= 10', then the merge views operation creates a new view using the expression 'x = 20 OR x <= 10'.

The default value is UNION_ALL.

Definition at line 146 of file CreateUnion.cs.

◆ PERSIST

const string kinetica.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 229 of file CreateUnion.cs.

◆ STRATEGY_DEFINITION

const string kinetica.CreateUnionRequest.Options.STRATEGY_DEFINITION = "strategy_definition"

The tier strategy for the table and its columns.

Definition at line 255 of file CreateUnion.cs.

◆ TRUE

const string kinetica.CreateUnionRequest.Options.TRUE = "true"

Definition at line 63 of file CreateUnion.cs.

◆ TTL

const string kinetica.CreateUnionRequest.Options.TTL = "ttl"

Sets the TTL of the output table specified in table_name.

Definition at line 212 of file CreateUnion.cs.

◆ UNION

const string kinetica.CreateUnionRequest.Options.UNION = "union"

Retains all unique rows from the specified tables (synonym for UNION_DISTINCT).

Definition at line 154 of file CreateUnion.cs.

◆ UNION_ALL

const string kinetica.CreateUnionRequest.Options.UNION_ALL = "union_all"

Retains all rows from the specified tables.

Definition at line 149 of file CreateUnion.cs.

◆ UNION_DISTINCT

const string kinetica.CreateUnionRequest.Options.UNION_DISTINCT = "union_distinct"

Retains all unique rows from the specified tables.

Definition at line 158 of file CreateUnion.cs.

◆ VIEW_ID

const string kinetica.CreateUnionRequest.Options.VIEW_ID = "view_id"

ID of view of which this output table is a member.

The default value is ''.

Definition at line 234 of file CreateUnion.cs.


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