Database | Table | Application | Created | Links |
sybsystemprocs | sysprotects | 31 Aug 14 | Joins Schema ColumnUsage Queries Dependencies |
1 create table sysprotects(-- 558 Rows, Data: 22 KB, Index: 44 KB 2 id int not null, 3 uid int not null, 4 action smallint not null, 5 protecttype tinyint not null, 6 columns varbinary(133) null, 7 grantor int null 8 ) 9 10 create unique clustered index csysprotects on sysprotects(-- 22 KB refcount: 130 11 id, action, grantor, uid, protecttype 12 ) 13 14 alter table sysprotects lock datarows 15 16 Grant Select on sysprotects to public 17
JOINS | ||||||||||||||||||||||||||||||||||||
|
Estimated Index Usage | |
sysprotects.csysprotects unique clustered(id, action, grantor, uid, protecttype) | 130 |
ALIASES USED for sybsystemprocs..sysprotects | |||
NO_ALIAS | p | p1 | sysprotects |
19 | 32 | 20 | 8 |
SCHEMA |