create table creates
a table and optional integrity constraints. The table is created
in the currently open database unless you specify a different database
in the create table statement.
You can create a table or index in another database, if you are
listed in the sysusers table and have create table permission
in the database.
Space
is allocated to tables and indexes in increments of one extent,
or eight pages, at a time. Each time an extent is filled, another
extent is allocated. To see the amount of space allocated and used
by a table, use sp_spaceused.
The maximum length for in-row Java columns is determined
by the maximum size of a variable-length column for the table's
schema, locking style, and page size.
When using create table from
Component Integration Services with a column defined as char(n)
NULL, Component Integration Services creates the column as varchar(n)
on the remote server.