Creating a Remote Table
- Last Updated: April 18, 2018
- 1 minute read
- DataDirect Connectors
- JDBC
- Salesforce 6.0
- Documentation
Purpose
Defines the syntax to define a column for remote tables.
Syntax
CREATE TABLE table_name (column_definition [, ...] [, constraint_definition...])
where:
- table_name
- specifies the name of the new remote table. The table name can be qualified by a schema name using the format schema.table. If the schema is not specified, the table is created in the current schema. See "Alter Session (EXT)" for information about changing the current schema.
- column_definition
- specifies the definition of a column in the new table. See "Column Definition for Remote Tables" for a complete explanation.
- constraint_definition
- specifies constraints on the columns of the new table. See "Constraint Definition for Remote Tables" for a complete explanation.
Notes
- Creating tables in Salesforce is not a quick operation. It can take several minutes for Salesforce to create the table and its relationships.