Database | Table | Application | Created | Links |
sybsystemprocs | sysqueryplans | 31 Aug 14 | Joins Schema ColumnUsage Queries Dependencies |
1 create table sysqueryplans(-- 0 Rows, Data: 2 KB, Index: 6 KB 2 uid int not null, 3 gid int not null, 4 hashkey int not null, 5 id int not null, 6 type smallint not null, 7 sequence smallint not null, 8 status int null, 9 text varchar(255) null, 10 dbid int null, 11 qpdate datetime null, 12 sprocid int null, 13 hashkey2 int null, 14 key1 int null, 15 key2 int null, 16 key3 int null, 17 key4 int null 18 ) 19 20 create unique clustered index csysqueryplans on sysqueryplans(-- 2 KB refcount: 100 21 uid, gid, hashkey, id, type, sequence 22 ) 23 create unique index ncsysqueryplans on sysqueryplans(-- 2 KB refcount: 8 24 id, type, sequence 25 ) 26 27 alter table sysqueryplans lock datarows 28 29 Grant Select on sysqueryplans to public 30
JOINS | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Estimated Index Usage | |
sysqueryplans.csysqueryplans unique clustered(uid, gid, hashkey, id, type, sequence) | 100 |
sysqueryplans.ncsysqueryplans unique(id, type, sequence) | 8 |
ALIASES USED for sybsystemprocs..sysqueryplans | ||||||||||||||||
NO_ALIAS | a | b | g1 | g2 | i | next | o | p1 | p2 | prev | q | sq1 | sq2 | sq3 | sq4 | sysqueryplans |
40 | 1 | 1 | 1 | 1 | 5 | 1 | 5 | 2 | 2 | 1 | 1 | 3 | 3 | 2 | 2 | 11 |
SCHEMA |