Enum CommandStatementIngest.Types.TableDefinitionOptions.Types.TableExistsOption
The action to take if the target table already exists
public enum CommandStatementIngest.Types.TableDefinitionOptions.Types.TableExistsOption
Fields
[OriginalName("TABLE_EXISTS_OPTION_APPEND")] Append = 2
Append to the table if it already exists
[OriginalName("TABLE_EXISTS_OPTION_FAIL")] Fail = 1
Fail if the table already exists
[OriginalName("TABLE_EXISTS_OPTION_REPLACE")] Replace = 3
Drop and recreate the table if it already exists
[OriginalName("TABLE_EXISTS_OPTION_UNSPECIFIED")] Unspecified = 0
Do not use. Servers should error if this is specified by a client.