1 create table systypes(-- 49 Rows, Data: 4 KB, Index: 16 KB
2 uid int not null,
3 usertype smallint not null,
4 variable bit not null,
5 allownulls bit not null,
6 type tinyint not null,
7 length int not null,
8 tdefault int not null,
9 domain int not null,
10 name longsysname(255) not null,
11 printfmt varchar(255) null,
12 prec tinyint null,
13 scale tinyint null,
14 ident tinyint null,
15 hierarchy tinyint null,
16 xtypeid int null,
17 xdbid int null,
18 accessrule int null
19 )
20
21 create unique clustered index csystypes on systypes(-- 6 KB refcount: 1
22 name
23 )
24 create unique index ncsystypes on systypes(-- 6 KB refcount: 0
25 usertype
26 )
27
28 alter table systypes lock datarows
29
30 Grant Select on systypes to public
31
Estimated Index Usage |
systypes.csystypes unique clustered(name) | 1 |
systypes.ncsystypes unique(usertype) | 0 |
ALIASES USED for master..systypes |
t | t1 |
1 | 1 |
SCHEMA |
|