![]() |
![]() |
|
|
![]() |
![]() |
ALLBASE/SQL Database Administration Guide: HP 9000 Computer Systems > Chapter 5 Database Creation and Security![]() Creating Tables |
|
You can create a table using the following basic syntax: CREATE [ PRIVATE PUBLICREAD PUBLIC PUBLICROW ] TABLE [Owner.] TableName [LANG = TableLanguageName] ( { ColumnDefinition UniqueConstraint ReferentialConstraint CheckConstraint } [,...]) [ UNIQUE HASH ON (HashColumnName [,...]) PAGES = PrimaryPages HASH ON CONSTRAINT [ConstraintID] PAGES = PrimaryPages CLUSTERING ON CONSTRAINT [ConstraintID]] [ IN PARTITION { PartitionName DEFAULT NONE } ] [IN DBEFileSetName1] Refer to the CREATE TABLE statement in the ALLBASE/SQL Reference Manual for complete syntax and semantics. The first parameter in the CREATE TABLE statement specifies the table type. If you do not specify a table type, the default is PRIVATE. The table type option creates a table with the following implied attributes:
ALLBASE/SQL automatically uses the locking mode implicit in the table type whenever you access that table. You can use the LOCK TABLE statement to temporarily override this automatic locking behavior. With LOCK TABLE, you can increase the granularity of locking from page to table level or from row to table level. However, you cannot decrease the granularity of locking from table to page level or from page to row level by using LOCK TABLE. The REVOKE and GRANT statements may be used by the DBA or the table's owner to change the automatic grant implied at creation time; however, the locking mode remains unchanged. You can get PUBLIC, PUBLICROW, or PUBLICREAD locking on a table without the security implications by creating the table PUBLIC, PUBLICROW, or PUBLICREAD and revoking the implied authority from PUBLIC:
Likewise, you can have PRIVATE locking on a table and grant authorization to PUBLIC:
Table locking strategy is discussed in more detail in the chapter "Concurrency Control Through Locks and Isolation Levels" in the ALLBASE/SQL Reference Manual. The next parameter in the CREATE TABLE statement, OwnerName, defaults to the DBEUserID of the user who creates the table. DBA authority is required to create tables with an owner name other than the default. You can set the default owner's name to something other than the creator's DBEUserID by using the ISQL SET OWNER command. Refer to the "Logical Design" chapter for information on the different types of owners (class names, DBEUserIDs, or authorization groups) and OWNER authority. A table name may be up to 20 bytes long in any combination of letters, digits, $, #, @, or underscore. The first character, however, cannot be a decimal digit or an underscore. A table name can contain any characters if it is enclosed in double quotes. However, the name must then be enclosed in double quotes each time it is referenced, and the first character following the first double quote cannot be a blank. Specify the owner name any time you reference a table that is not your own. Use the LANG = TableLanguageName clause in the CREATE TABLE statement to specify a language other than the DBEnvironment's language. For example, you might wish to specify n-computer (ASCII) for a certain table although the DBEnvironment language is Japanese.
You must use double quotes around the name "n-computer" because it contains a hyphen. Normally, native language names do not require quotes. ColumnName { ColumnDataType LongColumnType [IN DBEFileSetName2] } [LANG = ColumnLanguageName] [ [ NOT ] CASE SENSITIVE ] [ DEFAULT { Constant USER NULL CurrentFunction }] [ NOT NULL [{ UNIQUE PRIMARY KEY } [CONSTRAINT ConstraintID]] REFERENCES RefTableName [(RefColumnName)] [CONSTRAINT ConstraintID] [...] CHECK (SearchCondition) [CONSTRAINT ConstraintID] [IN DBEFileSetName3]] [...] The column definition includes the following parts, of which only the column name and data type are required:
A table must have at least one column and each column must be given a name and a data type. In addition, the NOT NULL attribute, which disallows null values from being entered in the column, can be assigned. Several columns in the sample DBEnvironment PartsDBE, including PartNumber, VendorNumber and OrderNumber, are defined as NOT NULL and consequently are required to contain data. Use the LANG = ColumnLanguageName clause in the CREATE TABLE statement to specify a column with a language different from that of the default table language. You can only specify n-computer (ASCII) or the current native language. Example:
Use the DEFAULT clause to specify a default value for a column. Example:
For further information on data types in creating tables, refer to the chapters "Names" and "Data Types" in the ALLBASE/SQL Reference Manual. In creating a table definition, you can include the following types of integrity constraints:
Use the UNIQUE clause to specify a unique constraint on a table. Use the PRIMARY KEY clause to specify a unique constraint that also defines the primary key for a table. Example:
Note that the primary key must be on a column that is NOT NULL. The difference between a PRIMARY KEY and a UNIQUE constraint is that the PRIMARY KEY designation lets you reference the key in a referenced table without specifying column names. The REFERENCES clause lets you specify the manner in which a referencing table points to a unique or primary key of another table. You use the REFERENCES clause within a column definition to define a referential constraint in which only that column references a key in another table. Example:
This assumes that RecDB.Clubs has already been created with ClubName as a unique or primary key. You use REFERENCES along with the FOREIGN KEY clause to define a referential constraint on multiple columns at the table level. In order to illustrate this, it is necessary to show an alternate way of creating the RecDB.Members table, in which MemberName and Club are defined as a two-column primary key:
Based on this referenced table, we can define the RecDB.Events table as follows with a two-column foreign key:
Note that since (MemberName, Club) is specified as the PRIMARY KEY for RecDB.Members, the use of the column names in the REFERENCES clause of the example is optional. The following example shows a table created with a check constraint. The check constraint ensures that the Date column will not be updated with a date earlier than January 1, 1990.
For more information about integrity constraints, see the chapter "Constraints, Procedures, and Rules" in the ALLBASE/SQL Reference Manual. The last parameter in the CREATE TABLE statement specifies the DBEFileSet with which the table and its indexes are associated. If you do not specify a DBEFileSet and you have not assigned a default DBEFileSet with the SET DEFAULT DBEFILESET statement, tables are created in the SYSTEM DBEFileSet, which also contains the system catalog. It is recommended practice to keep the system catalog apart from your data and index files. Refer to the "Physical Design" chapter under "Grouping Tables in DBEFileSets" for information on why you might wish to create separate DBEFileSets for tables. In addition, two parameters in the column definition syntax allow specification of a DBEFileSet for long column data and for check constraint sections. After creating tables, you can query the SYSTEM.TABLE and SYSTEM.COLUMN views to see how their definitions appear. The following query on SYSTEM.TABLE will display information about all the tables in the PurchDB database:
You can also use the Static subsystem of SQLMON to see which tables are contained in a DBEFileset. For more information on SQLMON, see the ALLBASE/SQL Performance and Monitoring Guidelines. You must use an additional query of the system catalog to display the column definitions of particular tables:
The query result is as follows:
You can also use the ISQL INFO command to display column definitions for a table: The CREATE TABLE statement only enters the table definition into the system catalog. The table does not occupy storage in the DBEFileSet until you insert a row. All names that are stored as character strings in the system catalog are upshifted when they are stored unless they are in double quotes. For example, the statement
would store PURCHDB as the owner and SOMETABLE as the table name in the system catalog, whereas the statement
would store PurchDB as the owner and SomeTable as the table name. To examine the attributes of the first, you would use the following statement:
For the second, you would use lower case spelling:
To eliminate any possible confusion, avoid using double quotes in defining objects. To create partitions, you use the CREATE PARTITION statement. Then, to assign a table to a partition, you can use the IN PARTITION parameter of the CREATE TABLE statement or the SET PARTITION parameter of the ALTER TABLE statement. If you do not assign a table to a partition, the table is assigned to the DEFAULT partition. If you do not want audit logging done on the table, you can specify NONE with either IN PARTITION or SET PARTITION; then, operations on the table do not generate audit log records. If you assign a table to a partition, and if you specified DATA AUDIT ELEMENTS when you started the DBEnvironment (either explicitly or by default), then any inserts, updates, or deletes you perform on the table generate audit log records. Partitions are dropped with the DROP PARTITION statement. Before you can drop a partition, you must assign each of its tables to a new partition with the statement ALTER TABLE SET PARTITION. In the following example, the IN PARTITION clause of the CREATE TABLE statement is used to assign a table to the already created partition, P1:
Refer to the CREATE TABLE statement and ALTER TABLE statement syntax in the "SQL Statements" chapter of the ALLBASE/SQL Reference Manual. |
![]() |
||
![]() |
![]() |
![]() |
|||||||||
|