Columns |
Name | Datatype | Null |
filename | char(12) | Yes |
version | char(4) | Yes |
quality | char(1) | No |
date | char(6) | No |
username | char(8) | No |
Table Usage (MB) |
Distribution of Table Space |
Data |
0.00 |
Data |
6.25 % |
Indexes |
0.00 |
Indexes |
6.25 % |
Unused |
0.03 |
Unused |
87.50 % |
Total |
0.03 |
Number
of Rows |
0 |
Dependencies |
Referencing Objects |
Object Name | Object Type |
dbo.pqcs.pqcs_ix_c | INDEX |
Referenced Objects |
Object Name | Object Type |
DDL |
CREATE TABLE dbo.pqcs
(
filename char(12) NULL,
version char(4) NULL,
quality char(1) NOT NULL,
date char(6) NOT NULL,
username char(8) NOT NULL
)
LOCK ALLPAGES
go