DatabaseTableApplicationCreatedLinks
sybsystemprocssysslices  31 Aug 14Joins Schema ColumnUsage Queries Dependencies

1     create table sysslices(-- 0 Rows, Data: 2 KB, Index: 2 KB
2         state smallint not null,
3         id int not null,
4         partitionid int not null,
5         firstpage int not null,
6         controlpage int not null,
7         spare binary(32) not null
8     )
9     
10    
11    create unique clustered index csysslices on sysslices(-- 2 KB refcount: 0
12        id, partitionid
13    )
14    
15    Grant Select on sysslices to public
16    
Estimated Index Usage
sysslices.csysslices unique clustered(id, partitionid)0

SCHEMA

QUERIES
Joined With Links

DEPENDENCIES