equal
deleted
inserted
replaced
71 select * from user_constraints; |
71 select * from user_constraints; |
72 |
72 |
73 Используемое пространство таблиц:: |
73 Используемое пространство таблиц:: |
74 |
74 |
75 select distinct tablespace_name from user_tables; |
75 select distinct tablespace_name from user_tables; |
|
76 |
|
77 List of current user permissions:: |
|
78 |
|
79 select * from session_privs; |
|
80 |
|
81 List of user permissions to tables:: |
|
82 |
|
83 select * from ALL_TAB_PRIVS where TABLE_SCHEMA not like '%SYS' and TABLE_SCHEMA not like 'SYS%'; |
76 |
84 |
77 Profiling. |
85 Profiling. |
78 ========== |
86 ========== |
79 |
87 |
80 Timing info about last queries:: |
88 Timing info about last queries:: |