Sybase Adaptive Server IQ 12.4.2 Administration And Performance Manual page 141

Table of Contents

Advertisement

Dropping and altering
global temporary
tables
Placement of tables
Join virtual tables
Automatic index creation for IQ tables
WHERE l_discount < 0.5
You declare a local temporary table for your connection only, using the
DECLARE LOCAL TEMPORARY TABLE
exists until the connection ends, or within a compound statement in which it is
declared. The table and its data are completely inaccessible to other users.
See "Versioning of temporary tables" for versioning information on local
temporary tables.
You drop a global temporary table just as you would a base table, with the
statement, or with the Sybase Central table editor. You cannot
DROP TABLE
drop or alter a global temporary table while other connections are using the
table it.
Adaptive Server IQ creates tables in your current database. If you are
connected to an IQ database, tables are placed as follows:
Table 3-2: Table placement
Type of table
Permanent
Global temporary
Local temporary
A Join Virtual Table is a denormalized table that looks like a regular table; it
has a name, columns, rows, and indexes. Adaptive Server IQ creates Join
Virtual Tables as a result of a Create Join Index for internal processing
purposes and deletes them when you do a Drop Join Index. You cannot create,
modify, or delete Join Virtual Tables, but you may see error messages related
to them if you try to use or modify them. Sybase suggests that you ignore all
Join Virtual Tables.
You can automate indexing for certain columns by creating a table with either
or
PRIMARY KEY
UNIQUE
Adaptive Server IQ to create an
uniqueness.
CHAPTER 3
Working with Database Objects
statement. A local temporary table
Permitted placement
Main IQ Store or Catalog
Store
Temporary IQ Store or
Catalog Store
Temporary IQ Store or
Catalog Store; only visible
to user who creates it
as a single-column constraint. These options cause
index for the column that enforces
HG
Default placement
Main IQ Store
Temporary IQ Store
Temporary IQ Store
121

Advertisement

Table of Contents
loading

Table of Contents