This table is used to contain information about institutes,
relating the instrument identifier to a name.
Columns |
Name | Datatype | Null |
institid | char(8) | No |
name | char(52) | No |
grouping | char(1) | No |
The grouping flag states whether observations with the same owner but a different proposer may be put onto the same CD during Product Distribution. This flag will by default be `Y', but will be set to `N' manually in some cases.column institid
Institute identifier.
column name
The name of the institute.
Table Usage (MB) |
Distribution of Table Space |
Data |
0.03 |
Data |
66.67 % |
Indexes |
0.00 |
Indexes |
0.00 % |
Unused |
0.02 |
Unused |
33.33 % |
Total |
0.05 |
Number
of Rows |
443 |
Dependencies |
Referencing Objects |
Object Name | Object Type |
Referenced Objects |
Object Name | Object Type |
DDL |
CREATE TABLE dbo.institutes
(
institid char(8) NOT NULL,
name char(52) NOT NULL,
grouping char(1) NOT NULL
)
LOCK ALLPAGES
go