Icon TemporaryTables Table

Structure
CREATE TABLE "TemporaryTables"
(
"Name" VARCHAR(40) COLLATE "ANSI_CI",
"Description" CLOB COLLATE "ANSI",
"Attributes" CLOB COLLATE "ANSI",
"Version" DECIMAL(19,2),
"ReadOnly" BOOLEAN,
"Encrypted" BOOLEAN,
"RowSize" INTEGER,
"IndexPageSize" INTEGER,
"BlobBlockSize" INTEGER,
"MaxRowBufferSize" INTEGER,
"MaxIndexBufferSize" INTEGER,
"MaxBlobBufferSize" INTEGER
)

CREATE INDEX "Name" ON "TemporaryTables"
("Name")

Description
This table contains the defined temporary tables in an ElevateDB database.

Related DDL Statements
StatementDescription
CREATE TABLECreates a new temporary table
ALTER TABLEAlters an existing temporary table
DROP TABLEDrops an existing temporary table
RENAME TABLERenames an existing temporary table
Image