Columns |
Name | Datatype | Null |
revno | int | No |
inst | char(1) | No |
recommendation | text | No |
column revno
Revolution number.
column inst
The instrument for which the NSO applies.
column recommendation
The email containing the NSO
recommendation (from an IDT).
Table Usage (MB) |
Distribution of Table Space |
Data |
0.02 |
Data |
1.33 % |
Indexes |
1.13 |
Indexes |
96.67 % |
Unused |
0.02 |
Unused |
2.00 % |
Total |
1.17 |
Number
of Rows |
421 |
Dependencies |
Referencing Objects |
Object Name | Object Type |
Referenced Objects |
Object Name | Object Type |
DDL |
CREATE TABLE dbo.nso_recommendations
(
revno int NOT NULL,
inst char(1) NOT NULL,
recommendation text NOT NULL
)
LOCK ALLPAGES
go