DBA Data[Home] [Help]

SYS.DBMS_FEATURE_RAS dependencies on XS$PRIN

Line 51: select count(*) into user_count from sys.xs$prin p where p.type = 0 and prin# > max_seeded_id;

47: /* Find the number of ACEs. */
48: select count(*) into ace_count from sys.xs$ace where acl# > max_seeded_id;
49:
50: /* Find the number of users. */
51: select count(*) into user_count from sys.xs$prin p where p.type = 0 and prin# > max_seeded_id;
52:
53: /* Find the number of roles. */
54: select count(*) into role_count from sys.xs$prin p where p.type <> 0 and prin# > max_seeded_id;
55:

Line 54: select count(*) into role_count from sys.xs$prin p where p.type <> 0 and prin# > max_seeded_id;

50: /* Find the number of users. */
51: select count(*) into user_count from sys.xs$prin p where p.type = 0 and prin# > max_seeded_id;
52:
53: /* Find the number of roles. */
54: select count(*) into role_count from sys.xs$prin p where p.type <> 0 and prin# > max_seeded_id;
55:
56: /* Find number of security classes. */
57: select count(*) into sc_count from sys.xs$seccls where sc# > max_seeded_id;
58: