CREATE TABLE
Last updated
Last updated
This DDL statement is used to define a new .
table_name
Specifies the name of the table. If the name is case sensitive you must wrap it in double quotes; otherwise the system uses the lower case name.
column_name
The name of a column in the stream. If the name is case sensitive you must wrap it in double quotes; otherwise the system uses the lower case name.
data_type
WITH (table_parameter = value [, … ])
Optionally, this clause specifies table parameters.
store
Required: No
Default value: Current session's store name Type: String
iceberg.aws.glue.db.name
The name of the database (namespace) in the AWS Glue instance (used as the Iceberg Catalog implementation in the Iceberg Store) containing the existing Iceberg table. Required: Yes
Type: String
iceberg.aws.glue.table.name
The name of the existing Iceberg table in the AWS Glue instance (used as the Iceberg Catalog implementation in the Iceberg Store).
Required: Yes
Type: String
The following creates a new Table, named pageviews_iceberg
. This table is backed by an existing Iceberg table, called iceberg_table
in the iceberg_store
store. iceberg_table
is defined in the gluedb
database in the AWS Glue catalog, used by the store.
The data type of the column. This can include array specifiers. For more information on the data types supported by DeltaStream, see the reference.
Name of the store that hosts the for this stream.
Valid values: See .