home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 22.ddi / CATALOG.SQL < prev    next >
Encoding:
Text File  |  1990-10-12  |  172.9 KB  |  5,666 lines

  1. Rem Copyright (c) 1988 by Oracle Corporation
  2. Rem
  3. Rem NAME
  4. Rem   CATALOG.SQL
  5. Rem FUNCTION
  6. Rem   Creates data dictionary views.
  7. Rem NOTES
  8. Rem   Replaces old CATALOG.ORA.
  9. Rem   Must be run when connected to SYS.
  10. Rem MODIFIED
  11. Rem   Mendelsohn 10/12/90 - bug 47910: remove password column from dba_db_links
  12. Rem   Chaudhr    05/31/90 - Assorted bug fixes.
  13. Rem              - 18656: OWNER in XXX_SEGMENTS and DBA_ROLLBACK_SEGS 
  14. Rem              - 31160: Changed the comment on DATA_PRECISION col's
  15. Rem                  - 33810: Added PCT_FREE col to USER/ALL/DBA_INDEXES
  16. Rem              - 35876: Added TEXT_LENGTH & TEXT col's to ALL_VIEWS
  17. Rem                       - 38207: Change comment on tables USER/DBA_CROSS_REFS
  18. Rem   Harmon     09/26/89 - replication hook
  19. Rem   Wijaya     05/11/89 - add v$rowcache
  20. Rem   Loaiza     05/05/89 - add index statistics
  21. Rem   Mendels    12/12/88 - fix 18656: use SYS/PUBLIC as rollback seg owner
  22. Rem   Bulchan    10/31/88 - Remove spurious '0'
  23. Rem   Mendels    10/25/88 - not exists errors: add 1418, 1435, 2289; drop 1719
  24. Rem   Bulchan    10/21/88 - add views from mon file and rollback
  25. Rem   Wijaya     10/17/88 - improve constraint views
  26. Rem   Wijaya     10/11/88 - add TABLE_NAME column to CONS_COLUMNS
  27. Rem   Mendels    10/07/88 - fix public synonym for all_sequences, dba_audit_dba
  28. Rem                       - delete user_sys_aud_opts
  29. Rem   Wijaya     10/05/88 - add [USER|ALL|DBA]_CONSTRAINTS and
  30. Rem                         [USER|ALL|DBA]_CONS_COLUMNS
  31. Rem   Bulchan    10/02/88 - Make it work in dbsdrv
  32. Rem   Wijaya     09/29/88 - remove ACGRA, UCGRA, UTCOM
  33. Rem   Hong       09/24/88 - fix export view
  34. Rem   Wijaya     09/22/88 - fix DATA_SCALE
  35. Rem   Mendels    09/08/88 - bug 15135 (add actions 34,49 to audit_actions)
  36. Rem   Mendels    08/30/88 - fix bug 14772 (tab returns indexes);
  37. Rem                         remove weird to_date's in %_objects;
  38. Rem                         remove some useless (+);
  39. Rem                         wrong column name in some comments on columns;
  40. Rem                         remove tabspaces and systabspaces views;
  41. Rem                         rename password_changed to expires;
  42. Rem                         fix 9981: decode type 69 as rowid in col;
  43. Rem   Mendels    08/07/88 - fix all/dba_indexes and all/dba_ind_columns views
  44. Rem                         to return indexes on public tables;
  45. Rem                         fix %_ind_columns views to use col# not pos# and
  46. Rem                         to return pos#
  47. Rem                         add %_indexes comments on max_extents.
  48. Rem   Baldwin    08/01/88 - Bad table name in all_ind_columns.
  49. Rem                         Wrong col name in comment on user_cluster.
  50. Rem   Baldwin    07/31/88 - Add password_change col to user_user and dba_user.
  51. Rem   Baldwin    07/28/88 - Enhance audit trail views.  
  52. Rem                         See notes$:audit_views.txt.
  53. Rem   Peeler     07/27/88 - Missing ' in user_tab_columns, accessible_columns.
  54. Rem   Bulchan    07/22/88 - Add v_$sga stuff
  55. Rem   Peeler     07/21/88 - cleanup various bugs in definitions
  56. Rem   Wijaya     06/21/88 - add PUBLIC synonyms/views for fixed views
  57. Rem   Moore      06/16/88 - fix missing ' and assorted other goodies
  58. Rem   Moore      06/16/88 - add synonym for dual
  59. Rem   Moore      06/02/88 - add comments to audit views (TGRAYSON)
  60. Rem   Moore      05/31/88 - add V5 audit views
  61. Rem   Moore      05/18/88 - integrate new segment views (dba,user)
  62. Rem   Wijaya     04/29/88 - fix comments
  63. Rem   Kabcenell  03/21/88 - dba_exp_files.dba_exp_version -> exp_version
  64. Rem   Grayson    03/21/88 - Creation
  65.  
  66.  
  67. remark
  68. remark  FAMILY "AUDIT"
  69. remark  Views for inspecting the audit trail.
  70. remark  For views of the audit options see the families: tab_audit_opts,
  71. remark  sys_audit_opts, and def_audit_opts.
  72. remark
  73. remark  User's are not allowed to see audit info for other people's
  74. remark  objects, so there are no all_ members in this family.
  75. remark  Users can see audit info for objects they own.
  76. remark               
  77. /
  78. remark  
  79. remark  AUDIT_ACTIONS maps an action number to the action name.
  80. remark  The table is accessible to public.
  81. remark  
  82. /
  83. drop table AUDIT_ACTIONS
  84. /
  85. create table AUDIT_ACTIONS(
  86.   action number not null, name char(27) not null)
  87. /
  88. comment on table AUDIT_ACTIONS is
  89. 'Description table for audit trail action type codes.  Maps action type numbers to action type names'
  90. /
  91. comment on column AUDIT_ACTIONS.ACTION is
  92. 'Numeric audit trail action type code'
  93. /
  94. comment on column AUDIT_ACTIONS.NAME is
  95. 'Name of the type of audit trail action'
  96. /
  97. insert into audit_actions values (0, 'UNKNOWN');
  98. insert into audit_actions values (1, 'CREATE TABLE');
  99. insert into audit_actions values (2, 'INSERT');
  100. insert into audit_actions values (3, 'SELECT');
  101. insert into audit_actions values (4, 'CREATE CLUSTER');
  102. insert into audit_actions values (5, 'ALTER CLUSTER');
  103. insert into audit_actions values (6, 'UPDATE');
  104. insert into audit_actions values (7, 'DELETE');
  105. insert into audit_actions values (8, 'DROP CLUSTER');
  106. insert into audit_actions values (9, 'CREATE INDEX');
  107. insert into audit_actions values (10, 'DROP INDEX');
  108. insert into audit_actions values (11, 'ALTER INDEX');
  109. insert into audit_actions values (12, 'DROP TABLE');
  110. insert into audit_actions values (13, 'CREATE SEQUENCE');
  111. insert into audit_actions values (14, 'ALTER SEQUENCE');
  112. insert into audit_actions values (15, 'ALTER TABLE');
  113. insert into audit_actions values (16, 'DROP SEQUENCE');
  114. insert into audit_actions values (17, 'GRANT OBJECT');
  115. insert into audit_actions values (18, 'REVOKE OBJECT');
  116. insert into audit_actions values (19, 'CREATE SYNONYM');
  117. insert into audit_actions values (20, 'DROP SYNONYM');
  118. insert into audit_actions values (21, 'CREATE VIEW');
  119. insert into audit_actions values (22, 'DROP VIEW');
  120. insert into audit_actions values (23, 'VALIDATE INDEX');
  121. insert into audit_actions values (26, 'LOCK');
  122. insert into audit_actions values (27, 'UNDEFINED');
  123. insert into audit_actions values (28, 'RENAME');
  124. insert into audit_actions values (29, 'COMMENT');
  125. insert into audit_actions values (30, 'AUDIT OBJECT');
  126. insert into audit_actions values (31, 'NOAUDIT OBJECT');
  127. insert into audit_actions values (32, 'CREATE DATABASE LINK');
  128. insert into audit_actions values (33, 'DROP DATABASE LINK');
  129. insert into audit_actions values (34, 'CREATE DATABASE');
  130. insert into audit_actions values (35, 'ALTER DATABASE');
  131. insert into audit_actions values (36, 'CREATE ROLLBACK SEG');
  132. insert into audit_actions values (37, 'ALTER ROLLBACK SEG');
  133. insert into audit_actions values (38, 'DROP ROLLBACK SEG');
  134. insert into audit_actions values (39, 'CREATE TABLESPACE');
  135. insert into audit_actions values (40, 'ALTER TABLESPACE');
  136. insert into audit_actions values (41, 'DROP TABLESPACE');
  137. insert into audit_actions values (42, 'ALTER SESSION');
  138. insert into audit_actions values (43, 'ALTER USER');
  139. insert into audit_actions values (49, 'ALTER SYSTEM');
  140. insert into audit_actions values (60, 'LOGON');
  141. insert into audit_actions values (61, 'LOGOFF');
  142. insert into audit_actions values (62, 'CLEANUP');
  143. insert into audit_actions values (63, 'SESSION');
  144. insert into audit_actions values (64, 'AUDIT SYSTEM');
  145. insert into audit_actions values (65, 'NOAUDIT SYSTEM');
  146. insert into audit_actions values (66, 'AUDIT DEFAULT');
  147. insert into audit_actions values (67, 'NOAUDIT DEFAULT');
  148. insert into audit_actions values (68, 'GRANT SYSTEM');
  149. insert into audit_actions values (69, 'REVOKE SYSTEM');
  150. insert into audit_actions values (70, 'CREATE PUBLIC SYNONYM');
  151. insert into audit_actions values (71, 'DROP PUBLIC SYNONYM');
  152. insert into audit_actions values (72, 'CREATE PUBLIC DATABASE LINK');
  153. insert into audit_actions values (73, 'DROP PUBLIC DATABASE LINK');
  154. insert into audit_actions values (80, 'USER COMMENT');
  155. commit;
  156. create unique index audact$uid on audit_actions(action,name) nocompress
  157. /
  158. drop public synonym AUDIT_ACTIONS
  159. /
  160. create public synonym AUDIT_ACTIONS for AUDIT_ACTIONS
  161. /
  162. grant select on AUDIT_ACTIONS to public
  163. /
  164.  
  165. remark  
  166. remark  USER_AUDIT_TRAIL
  167. remark  The raw audit trail of all information related to the user
  168. remark  or the objects owned by the user.  Some columns are only filled
  169. remark  in by certain statements (e.g., only rename uses new_name).
  170. remark  
  171. remark  DBA_AUDIT_TRAIL is implemented as a synonym for user_audit_trail.
  172. remark  This means that users with dba privilege have a hard time viewing
  173. remark  the audit info for just the objects they own because they always
  174. remark  see all the audit info.  Simplifying the implementation and
  175. remark  maintanence of these views seems more important.
  176. remark  A user with dba privilege sees all entries.
  177. remark  
  178. /
  179. drop view USER_AUDIT_TRAIL
  180. /
  181. create view USER_AUDIT_TRAIL
  182.         (
  183.          username, userhost, terminal, timestamp,
  184.          owner, obj_name,
  185.          action, action_name,
  186.          new_name,
  187.          privilege, grantee,
  188.          ses_actions,
  189.          logoff_time, logoff_lread, logoff_pread, logoff_lwrite, logoff_dlock,
  190.          comment_text,
  191.          sessionid, entryid, statementid, returncode
  192.         )
  193.  as 
  194.   select userid, userhost, terminal, timestamp,
  195.          t.obj$creator, t.obj$name,
  196.          t.action, act.name,
  197.          new$name,
  198.          auth$privileges, auth$grantee,
  199.          ses$actions,
  200.          logoff$time, logoff$lread,
  201.          logoff$pread, logoff$lwrite,
  202.          logoff$dead,
  203.          comment$text,
  204.          sessionid, entryid, statement, returncode
  205.   from sys.aud$ t, audit_actions act
  206.   where t.action = act.action
  207.     and ((t.obj$creator = user)
  208.          or (t.obj$creator is null and t.userid = user)
  209.          or exists
  210.             (select null from sys.user$
  211.                   where user# = uid and dba$ = 1)
  212.          )
  213. /
  214. comment on table USER_AUDIT_TRAIL is
  215. 'Audit trail entries relevant to the user'
  216. /
  217. comment on column USER_AUDIT_TRAIL.USERNAME is
  218. 'Name (not ID number) of the user whose actions were audited'
  219. /
  220. comment on column USER_AUDIT_TRAIL.USERHOST is
  221. 'Numeric instance ID for the Oracle instance from which the user is accessing the database.  Used only in environments with distributed file systems and shared database files (e.g., clustered Oracle on DEC VAX/VMS clusters)'
  222. /
  223. comment on column USER_AUDIT_TRAIL.TERMINAL is
  224. 'Identifier for the user''s terminal'
  225. /
  226. comment on column USER_AUDIT_TRAIL.TIMESTAMP is
  227. 'Timestamp for the creation of the audit trail entry (Timestamp for the user''s logon for entries created by AUDIT CONNECT)'
  228. /
  229. comment on column USER_AUDIT_TRAIL.OWNER is
  230. 'Creator of object affected by the action'
  231. /
  232. comment on column USER_AUDIT_TRAIL.OBJ_NAME is
  233. 'Name of the object affected by the action'
  234. /
  235. comment on column USER_AUDIT_TRAIL.ACTION is
  236. 'Numeric action type code.  The corresponding name of the action type (CREATE TABLE, INSERT, etc.) is in the column ACTION_NAME'
  237. /
  238. comment on column USER_AUDIT_TRAIL.ACTION_NAME is
  239. 'Name of the action type corresponding to the numeric code in ACTION'
  240. /
  241. comment on column USER_AUDIT_TRAIL.NEW_NAME is
  242. 'The new name of an object renamed by a RENAME statement'
  243. /
  244. comment on column USER_AUDIT_TRAIL.PRIVILEGE is
  245. 'Privileges granted/revoked by a GRANT/REVOKE statement'
  246. /
  247. remark  There is one audit entry for each grantee.
  248. /
  249. comment on column USER_AUDIT_TRAIL.GRANTEE is
  250. 'The name of the grantee specified in a GRANT/REVOKE statement'
  251. /
  252. comment on column USER_AUDIT_TRAIL.SES_ACTIONS is
  253. 'Session summary.  A string of 11 characters, one for each action type, in this order: Alter, Audit, Comment, Delete, Grant, Index, Insert, Lock, Rename, Select, Update.  Values:  "-" = None, "S" = Success, "F" = Failure, "B" = Both'
  254. /
  255. remark  A single audit entry describes both the logon and logoff.
  256. remark  The logoff_* columns are null while a user is logged in.
  257. /
  258. comment on column USER_AUDIT_TRAIL.LOGOFF_TIME is
  259. 'Timestamp for user logoff'
  260. /
  261. comment on column USER_AUDIT_TRAIL.LOGOFF_LREAD is
  262. 'Logical reads for the session'
  263. /
  264. comment on column USER_AUDIT_TRAIL.LOGOFF_PREAD is
  265. 'Physical reads for the session'
  266. /
  267. comment on column USER_AUDIT_TRAIL.LOGOFF_LWRITE is
  268. 'Logical writes for the session'
  269. /
  270. comment on column USER_AUDIT_TRAIL.LOGOFF_DLOCK is
  271. 'Deadlocks detected during the session'
  272. /
  273. comment on column USER_AUDIT_TRAIL.COMMENT_TEXT is
  274. 'Text comment on the audit trail entry'
  275. /
  276. comment on column USER_AUDIT_TRAIL.SESSIONID is
  277. 'Numeric ID for each Oracle session'
  278. /
  279. comment on column USER_AUDIT_TRAIL.ENTRYID is
  280. 'Numeric ID for each audit trail entry in the session'
  281. /
  282. comment on column USER_AUDIT_TRAIL.STATEMENTID is
  283. 'Numeric ID for each statement run (a statement may cause many actions)'
  284. /
  285. comment on column USER_AUDIT_TRAIL.RETURNCODE is
  286. 'Oracle error code generated by the action.  Zero if the action succeeded'
  287. /
  288. drop public synonym USER_AUDIT_TRAIL
  289. /
  290. create public synonym USER_AUDIT_TRAIL for USER_AUDIT_TRAIL
  291. /
  292. grant select on USER_AUDIT_TRAIL to public
  293. /
  294. drop public synonym DBA_AUDIT_TRAIL
  295. /
  296. create public synonym DBA_AUDIT_TRAIL for USER_AUDIT_TRAIL
  297. /
  298.  
  299. remark
  300. remark  USER_AUDIT_CONNECT
  301. remark  Lists the audit trail entries produced by AUDIT CONNECT.
  302. remark  DBA's see all entries, while ordinary users only
  303. remark  see entries for their own logins/logoffs.
  304. remark  
  305. remark  DBA_AUDIT_CONNECT is implemented as synonym of user_audit_connect,
  306. remark  which in turn is implemented in terms of user_audit_trail.
  307. remark  
  308. drop view USER_AUDIT_CONNECT
  309. /
  310. create view USER_AUDIT_CONNECT as
  311.   select username, userhost, terminal, timestamp,
  312.          action_name,
  313.          logoff_time, logoff_lread, logoff_pread, logoff_lwrite, logoff_dlock,
  314.          sessionid, returncode
  315.   from user_audit_trail
  316.   where action between 60 and 62
  317. /                 
  318. comment on table USER_AUDIT_CONNECT is
  319. 'Audit trail entries for user logons/logoffs'
  320. /
  321. comment on column USER_AUDIT_CONNECT.USERNAME is
  322. 'Name (not ID number) of the user whose actions were audited'
  323. /
  324. comment on column USER_AUDIT_CONNECT.USERHOST is
  325. 'Numeric instance ID for the Oracle instance from which the user is accessing the database.  Used only in environments with distributed file systems and shared database files (e.g., clustered Oracle on DEC VAX/VMS clusters)'
  326. /
  327. comment on column USER_AUDIT_CONNECT.TERMINAL is
  328. 'Identifier for the user''s terminal'
  329. /
  330. comment on column USER_AUDIT_CONNECT.TIMESTAMP is
  331. 'Timestamp for the user''s logon'
  332. /
  333. comment on column USER_AUDIT_CONNECT.ACTION_NAME is
  334. 'Name of the action type corresponding to the numeric code in ACTION'
  335. /
  336. remark  A single audit entry describes both the logon and logoff.
  337. remark  The logoff_* columns are null while a user is logged in.
  338. /
  339. comment on column USER_AUDIT_CONNECT.LOGOFF_TIME is
  340. 'Timestamp for user logoff'
  341. /
  342. comment on column USER_AUDIT_CONNECT.LOGOFF_LREAD is
  343. 'Logical reads for the session'
  344. /
  345. comment on column USER_AUDIT_CONNECT.LOGOFF_PREAD is
  346. 'Physical reads for the session'
  347. /
  348. comment on column USER_AUDIT_CONNECT.LOGOFF_LWRITE is
  349. 'Logical writes for the session'
  350. /
  351. comment on column USER_AUDIT_CONNECT.LOGOFF_DLOCK is
  352. 'Deadlocks detected during the session'
  353. /
  354. comment on column USER_AUDIT_CONNECT.SESSIONID is
  355. 'Numeric ID for each Oracle session'
  356. /
  357. comment on column USER_AUDIT_CONNECT.RETURNCODE is
  358. 'Oracle error code generated by the action.  Zero if the action succeeded'
  359. /
  360. drop public synonym USER_AUDIT_CONNECT
  361. /
  362. create public synonym USER_AUDIT_CONNECT for USER_AUDIT_CONNECT
  363. /
  364. grant select on USER_AUDIT_CONNECT to public
  365. /
  366. drop public synonym DBA_AUDIT_CONNECT
  367. /
  368. create public synonym DBA_AUDIT_CONNECT for USER_AUDIT_CONNECT
  369. /
  370.  
  371. remark
  372. remark  DBA_AUDIT_EXISTS
  373. remark  Only dba's can see audit info about objects that do not exist.
  374. remark  
  375. remark  Lists audit trail entries produced by AUDIT NOT EXISTS.
  376. remark  This is all audit trail entries with return codes of
  377. remark  942, 943, 959, 1418, 1432, 1434, 1435, 2019 and 2289.
  378. remark  This view is accessible to DBAs only.
  379. remark
  380. drop view DBA_AUDIT_EXISTS
  381. /
  382. create view DBA_AUDIT_EXISTS as
  383.   select username, userhost, terminal, timestamp,
  384.          owner, obj_name,
  385.          action_name,
  386.          new_name,
  387.          privilege, grantee,
  388.          sessionid, entryid, statementid, returncode
  389.   from user_audit_trail
  390.   where returncode in (942, 943, 959, 1418, 1432, 1434, 1435, 2019, 2289)
  391. /                 
  392. comment on column DBA_AUDIT_EXISTS.USERNAME is
  393. 'Name (not ID number) of the user whose actions were audited'
  394. /
  395. comment on column DBA_AUDIT_EXISTS.USERHOST is
  396. 'Numeric instance ID for the Oracle instance from which the user is accessing the database.  Used only in environments with distributed file systems and shared database files (e.g., clustered Oracle on DEC VAX/VMS clusters)'
  397. /
  398. comment on column DBA_AUDIT_EXISTS.TERMINAL is
  399. 'Identifier for the user''s terminal'
  400. /
  401. comment on column DBA_AUDIT_EXISTS.TIMESTAMP is
  402. 'Timestamp for the creation of the audit trail entry'
  403. /
  404. comment on column DBA_AUDIT_EXISTS.OWNER is
  405. 'Intended creator of the non-existent object'
  406. /
  407. comment on column DBA_AUDIT_EXISTS.OBJ_NAME is
  408. 'Name of the object affected by the action'
  409. /
  410. comment on column DBA_AUDIT_EXISTS.ACTION_NAME is
  411. 'Name of the action type corresponding to the numeric code in ACTION'
  412. /
  413. comment on column DBA_AUDIT_EXISTS.NEW_NAME is
  414. 'The new name of an object renamed by a RENAME statement'
  415. /
  416. comment on column DBA_AUDIT_EXISTS.PRIVILEGE is
  417. 'Privileges granted/revoked by a GRANT/REVOKE statement'
  418. /
  419. remark  There is one audit entry for each grantee.
  420. /
  421. comment on column DBA_AUDIT_EXISTS.GRANTEE is
  422. 'The name of the grantee specified in a GRANT/REVOKE statement'
  423. /
  424. comment on column DBA_AUDIT_EXISTS.SESSIONID is
  425. 'Numeric ID for each Oracle session'
  426. /
  427. comment on column DBA_AUDIT_EXISTS.ENTRYID is
  428. 'Numeric ID for each audit trail entry in the session'
  429. /
  430. comment on column DBA_AUDIT_EXISTS.STATEMENTID is
  431. 'Numeric ID for each statement run (a statement may cause many actions)'
  432. /
  433. comment on column DBA_AUDIT_EXISTS.RETURNCODE is
  434. 'Oracle error code generated by the action.  Zero if the action succeeded'
  435. /
  436. drop public synonym DBA_AUDIT_EXISTS
  437. /
  438. create public synonym DBA_AUDIT_EXISTS for DBA_AUDIT_EXISTS
  439. /
  440.  
  441. remark
  442. remark  USER_AUDIT_RESOURCE
  443. remark  DBA_AUDIT_RESOURCE implemented in terms of user_audit_resource.
  444. remark  DBA Sees all.
  445. remark  
  446. remark  Lists audit trail entries produced by AUDIT RESOURCE.
  447. remark
  448. /
  449. drop view USER_AUDIT_RESOURCE
  450. /
  451. create view USER_AUDIT_RESOURCE as
  452.   select username, userhost, terminal, timestamp,
  453.          owner, obj_name,
  454.          action_name,
  455.          sessionid, entryid, statementid, returncode
  456.   from user_audit_trail
  457.   where action in (1, 4, 8, 9, 10, 12, 13, 16, 19, 20, 21, 22,
  458.                    32, 33, 36, 38, 39, 41, 70, 71, 72, 73)
  459. /                 
  460. comment on column USER_AUDIT_RESOURCE.USERNAME is
  461. 'Name (not ID number) of the user whose actions were audited'
  462. /
  463. comment on column USER_AUDIT_RESOURCE.USERHOST is
  464. 'Numeric instance ID for the Oracle instance from which the user is accessing the database.  Used only in environments with distributed file systems and shared database files (e.g., clustered Oracle on DEC VAX/VMS clusters)'
  465. /
  466. comment on column USER_AUDIT_RESOURCE.TERMINAL is
  467. 'Identifier for the user''s terminal'
  468. /
  469. comment on column USER_AUDIT_RESOURCE.TIMESTAMP is
  470. 'Timestamp for the creation of the audit trail entry'
  471. /
  472. comment on column USER_AUDIT_RESOURCE.OWNER is
  473. 'Intended creator of the non-existent object'
  474. /
  475. comment on column USER_AUDIT_RESOURCE.OBJ_NAME is
  476. 'Name of the object affected by the action'
  477. /
  478. comment on column USER_AUDIT_RESOURCE.ACTION_NAME is
  479. 'Name of the action type corresponding to the numeric code in ACTION'
  480. /
  481. comment on column USER_AUDIT_RESOURCE.SESSIONID is
  482. 'Numeric ID for each Oracle session'
  483. /
  484. comment on column USER_AUDIT_RESOURCE.ENTRYID is
  485. 'Numeric ID for each audit trail entry in the session'
  486. /
  487. comment on column USER_AUDIT_RESOURCE.STATEMENTID is
  488. 'Numeric ID for each statement run (a statement may cause many actions)'
  489. /
  490. comment on column USER_AUDIT_RESOURCE.RETURNCODE is
  491. 'Oracle error code generated by the action.  Zero if the action succeeded'
  492. /
  493. drop public synonym USER_AUDIT_RESOURCE
  494. /
  495. create public synonym USER_AUDIT_RESOURCE for USER_AUDIT_RESOURCE
  496. /
  497. grant select on USER_AUDIT_RESOURCE to public
  498. /
  499. drop public synonym DBA_AUDIT_RESOURCE
  500. /
  501. create public synonym DBA_AUDIT_RESOURCE for USER_AUDIT_RESOURCE
  502. /
  503.  
  504. remark  
  505. remark  DBA_AUDIT_DBA
  506. remark  This view is only accessible to DBAs.
  507. remark  Lists audit trail entries produced by AUDIT DBA
  508. remark  (all operations with an action code of 24, 25, or
  509. remark  64 through 73).
  510. remark  The connect, resource and dba columns are filled in for
  511. remark  entries related to granting/revoking system-wide privileges.
  512. remark  The value 'Y' indicates the priv was granted/revoked.  If not,
  513. remark  a '-' appears.
  514. remark
  515. /
  516. drop view DBA_AUDIT_DBA
  517. /
  518. create view DBA_AUDIT_DBA as  
  519.   select username, userhost, terminal, timestamp,
  520.          owner, obj_name,
  521.          action, action_name,
  522.          substr(privilege,1,1) connect_priv,
  523.          substr(privilege,2,1) dba_priv,
  524.          substr(privilege,3,1) resource_priv,
  525.          grantee,
  526.          sessionid, entryid, statementid, returncode
  527.    from user_audit_trail
  528.    where action between 24 and 25
  529.          or action between 64 and 73
  530. /                 
  531. comment on table DBA_AUDIT_DBA is
  532. 'Audit trail entries created by AUDIT DBA'
  533. /
  534. comment on column DBA_AUDIT_DBA.USERNAME is
  535. 'Name (not ID number) of the user whose actions were audited'
  536. /
  537. comment on column DBA_AUDIT_DBA.USERHOST is
  538. 'Numeric instance ID for the Oracle instance from which the user is accessing the database.  Used only in environments with distributed file systems and shared database files (e.g., clustered Oracle on DEC VAX/VMS clusters)'
  539. /
  540. comment on column DBA_AUDIT_DBA.TERMINAL is
  541. 'Identifier for the user''s terminal'
  542. /
  543. comment on column DBA_AUDIT_DBA.TIMESTAMP is
  544. 'Timestamp for the creation of the audit trail entry (Timestamp for the user''s logon for entries created by AUDIT CONNECT)'
  545. /
  546. comment on column DBA_AUDIT_DBA.OWNER is
  547. 'Creator of object affected by the action'
  548. /
  549. comment on column DBA_AUDIT_DBA.OBJ_NAME is
  550. 'Name of the object affected by the action'
  551. /
  552. comment on column DBA_AUDIT_DBA.ACTION is
  553. 'Numeric action type code.  The corresponding name of the action type (CREATE TABLE, INSERT, etc.) is in the column ACTION_NAME'
  554. /
  555. comment on column DBA_AUDIT_DBA.ACTION_NAME is
  556. 'Name of the action type corresponding to the numeric code in ACTION'
  557. /
  558. comment on column DBA_AUDIT_DBA.CONNECT_PRIV is
  559. 'Y or - for CONNECT privilege did or did not appear in GRANT/REVOKE statement'
  560. /
  561. comment on column DBA_AUDIT_DBA.DBA_PRIV is
  562. 'Y or - for DBA privilege did or did not appear in GRANT/REVOKE statement'
  563. /
  564. comment on column DBA_AUDIT_DBA.RESOURCE_PRIV is
  565. 'Y or - for RESOURCE privilege did or did not appear in GRANT/REVOKE statement'
  566. /
  567. remark  There is one audit entry for each grantee.
  568. /
  569. comment on column DBA_AUDIT_DBA.GRANTEE is
  570. 'The name of the grantee specified in a GRANT/REVOKE statement'
  571. /
  572. comment on column DBA_AUDIT_DBA.SESSIONID is
  573. 'Numeric ID for each Oracle session'
  574. /
  575. comment on column DBA_AUDIT_DBA.ENTRYID is
  576. 'Numeric ID for each audit trail entry in the session'
  577. /
  578. comment on column DBA_AUDIT_DBA.STATEMENTID is
  579. 'Numeric ID for each statement run (a statement may cause many actions)'
  580. /
  581. comment on column DBA_AUDIT_DBA.RETURNCODE is
  582. 'Oracle error code generated by the action.  Zero if the action succeeded'
  583. /
  584. drop public synonym DBA_AUDIT_DBA
  585. /
  586. create public synonym DBA_AUDIT_DBA for DBA_AUDIT_DBA
  587. /
  588.  
  589. remark
  590. remark  FAMILY "CATALOG"
  591. remark  Objects which may be used as tables in SQL statements: 
  592. remark  Tables, Views, Synonyms.
  593. remark               
  594.  
  595. remark add DUAL
  596. drop table DUAL
  597. /
  598. create table DUAL(DUMMY char(1))
  599. /
  600. insert into DUAL values( 'X' );
  601. commit;
  602. create public synonym DUAL for DUAL
  603. /
  604. grant select on DUAL to public
  605. /
  606.  
  607.  
  608. drop view USER_CATALOG
  609. /
  610. create view USER_CATALOG
  611.     (TABLE_NAME,
  612.      TABLE_TYPE)
  613. as
  614. select o.name,
  615.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  616.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED')
  617. from sys.obj$ o
  618. where o.owner# = uid
  619.   and o.type in (2, 4, 5, 6)
  620. /
  621. comment on table USER_CATALOG is
  622. 'Tables, Views, Synonyms, Sequences accessible to the user'
  623. /
  624. comment on column USER_CATALOG.TABLE_NAME is
  625. 'Name of the object'
  626. /
  627. comment on column USER_CATALOG.TABLE_TYPE is
  628. 'Type of the object'
  629. /
  630. drop public synonym USER_CATALOG
  631. /
  632. create public synonym USER_CATALOG for USER_CATALOG
  633. /
  634. drop public synonym CAT
  635. /
  636. create public synonym CAT for USER_CATALOG
  637. /
  638. grant select on USER_CATALOG to PUBLIC
  639. /
  640. drop view ALL_CATALOG
  641. /
  642. remark
  643. remark  This view shows all tables, views, synonyms, and sequences owned by the
  644. remark  user and those tables, views, synonyms, and sequences that PUBLIC
  645. remark  has been granted access.
  646. remark
  647. create view ALL_CATALOG
  648.     (OWNER, TABLE_NAME,
  649.      TABLE_TYPE)
  650. as
  651. select u.name, o.name,
  652.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  653.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED')
  654. from sys.user$ u, sys.obj$ o
  655. where o.owner# = u.user#
  656.   and o.type in (2, 4, 5, 6)
  657.   and (o.owner# in (uid, 1)
  658.         or
  659.         obj# in ( select obj#
  660.                   from sys.tabauth$
  661.                   where grantee# in ( uid,1 )
  662.                 )
  663.        )
  664. /
  665. comment on table ALL_CATALOG is
  666. 'All tables, views, synonyms, sequences accesible to the user'
  667. /
  668. comment on column ALL_CATALOG.OWNER is
  669. 'Owner of the object'
  670. /
  671. comment on column ALL_CATALOG.TABLE_NAME is
  672. 'Name of the object'
  673. /
  674. comment on column ALL_CATALOG.TABLE_TYPE is
  675. 'Type of the object'
  676. /
  677. drop public synonym ALL_CATALOG
  678. /
  679. create public synonym ALL_CATALOG for ALL_CATALOG
  680. /
  681. grant select on ALL_CATALOG to PUBLIC
  682. /
  683. drop view ACCESSIBLE_TABLES
  684. /
  685. remark
  686. remark  This view shows all tables and views owned by the
  687. remark  user, plus all tables and views to which the user or PUBLIC
  688. remark  has been granted access.
  689. remark
  690. create view ACCESSIBLE_TABLES
  691.     (OWNER, TABLE_NAME,
  692.      TABLE_TYPE)
  693. as
  694. select u.name, o.name,
  695.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  696.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED')
  697. from sys.user$ u, sys.obj$ o
  698. where o.owner# = u.user#
  699.   and o.type in (2, 4)
  700.   and (o.owner# in (uid, 1)
  701.         or
  702.         obj# in ( select obj#
  703.                   from sys.tabauth$
  704.                   where grantee# in ( uid,1 )
  705.                 )
  706.        )
  707. /
  708. comment on table ACCESSIBLE_TABLES is
  709. 'Tables and Views accessible to the user'
  710. /
  711. comment on column ACCESSIBLE_TABLES.OWNER is
  712. 'Owner of the object'
  713. /
  714. comment on column ACCESSIBLE_TABLES.TABLE_NAME is
  715. 'Name of the object'
  716. /
  717. comment on column ACCESSIBLE_TABLES.TABLE_TYPE is
  718. 'Type of the object'
  719. /
  720. drop public synonym ACCESSIBLE_TABLES
  721. /
  722. create public synonym ACCESSIBLE_TABLES for ACCESSIBLE_TABLES
  723. /
  724. grant select on ACCESSIBLE_TABLES to PUBLIC
  725. /
  726. drop view DBA_CATALOG
  727. /
  728. create view DBA_CATALOG
  729.     (OWNER, TABLE_NAME,
  730.      TABLE_TYPE)
  731. as
  732. select u.name, o.name,
  733.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  734.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED')
  735. from sys.user$ u, sys.obj$ o
  736. where o.owner# = u.user#
  737.   and o.type in (2, 4, 5, 6)
  738. /
  739. comment on table DBA_CATALOG is
  740. 'All database Tables, Views, Synonyms, Sequences'
  741. /
  742. comment on column DBA_CATALOG.OWNER is
  743. 'Owner of the object'
  744. /
  745. comment on column DBA_CATALOG.TABLE_NAME is
  746. 'Name of the object'
  747. /
  748. comment on column DBA_CATALOG.TABLE_TYPE is
  749. 'Type of the object'
  750. /
  751. remark
  752. remark  FAMILY "CLUSTERS"
  753. remark  CREATE CLUSTER parameters.
  754. remark  This family has no "ALL" member.
  755. remark
  756. drop view USER_CLUSTERS
  757. /
  758. create view USER_CLUSTERS
  759.     (CLUSTER_NAME, TABLESPACE_NAME,
  760.      PCT_FREE, PCT_USED, KEY_SIZE,
  761.      INI_TRANS, MAX_TRANS,
  762.      INITIAL_EXTENT, NEXT_EXTENT,
  763.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE)
  764. as select o.name, ts.name,
  765.           c.pctfree$, c.pctused$, c.size$,c.initrans,c.maxtrans,
  766.           s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  767.           s.minexts, s.maxexts, s.extpct
  768. from sys.ts$ ts, sys.seg$ s, sys.clu$ c, sys.obj$ o
  769. where o.owner# = uid
  770.   and o.obj# = c.obj#
  771.   and c.ts# = ts.ts# 
  772.   and c.ts# = s.ts#
  773.   and c.file# = s.file#
  774.   and c.block# = s.block#
  775. /
  776. comment on table USER_CLUSTERS is
  777. 'Descriptions of user''s own clusters'
  778. /
  779. comment on column USER_CLUSTERS.CLUSTER_NAME is
  780. 'Name of the cluster'
  781. /
  782. comment on column USER_CLUSTERS.TABLESPACE_NAME is
  783. 'Name of the tablespace containing the cluster'
  784. /
  785. comment on column USER_CLUSTERS.PCT_FREE is
  786. 'Minimum percentage of free space in a block'
  787. /
  788. comment on column USER_CLUSTERS.PCT_USED is
  789. 'Minimum percentage of used space in a block'
  790. /
  791. comment on column USER_CLUSTERS.KEY_SIZE is
  792. 'Estimated size of cluster key plus associated rows'
  793. /
  794. comment on column USER_CLUSTERS.INI_TRANS is
  795. 'Initial number of transactions'
  796. /
  797. comment on column USER_CLUSTERS.MAX_TRANS is
  798. 'Maximum number of transactions'
  799. /
  800. comment on column USER_CLUSTERS.INITIAL_EXTENT is
  801. 'Size of the initial extent in bytes'
  802. /
  803. comment on column USER_CLUSTERS.NEXT_EXTENT is
  804. 'Size of secondary extents in bytes'
  805. /
  806. comment on column USER_CLUSTERS.MIN_EXTENTS is
  807. 'Minimum number of extents allowed in the segment'
  808. /
  809. comment on column USER_CLUSTERS.MAX_EXTENTS is
  810. 'Maximum number of extents allowed in the segment'
  811. /
  812. comment on column USER_CLUSTERS.PCT_INCREASE is
  813. 'Percentage increase in extent size'
  814. /
  815. drop public synonym USER_CLUSTERS
  816. /
  817. create public synonym USER_CLUSTERS for USER_CLUSTERS
  818. /
  819. drop public synonym CLU
  820. /
  821. create public synonym CLU for USER_CLUSTERS
  822. /
  823. grant select on USER_CLUSTERS to PUBLIC
  824. /
  825. drop view DBA_CLUSTERS
  826. /
  827. create view DBA_CLUSTERS
  828.     (OWNER, CLUSTER_NAME, TABLESPACE_NAME,
  829.      PCT_FREE, PCT_USED, KEY_SIZE,
  830.      INI_TRANS, MAX_TRANS,
  831.      INITIAL_EXTENT, NEXT_EXTENT,
  832.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE)
  833. as select u.name, o.name, ts.name,
  834.           c.pctfree$, c.pctused$, c.size$,c.initrans,c.maxtrans,
  835.           s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  836.           s.minexts, s.maxexts, s.extpct
  837. from sys.user$ u, sys.ts$ ts, sys.seg$ s, sys.clu$ c, sys.obj$ o
  838. where o.owner# = u.user#
  839.   and o.obj# = c.obj#
  840.   and c.ts# = ts.ts#
  841.   and c.ts# = s.ts#
  842.   and c.file# = s.file#
  843.   and c.block# = s.block#
  844. /
  845. comment on table DBA_CLUSTERS is
  846. 'Description of all clusters in the database'
  847. /
  848. comment on column DBA_CLUSTERS.OWNER is
  849. 'Owner of the cluster'
  850. /
  851. comment on column DBA_CLUSTERS.CLUSTER_NAME is
  852. 'Name of the cluster'
  853. /
  854. comment on column DBA_CLUSTERS.TABLESPACE_NAME is
  855. 'Name of the tablespace containing the cluster'
  856. /
  857. comment on column DBA_CLUSTERS.PCT_FREE is
  858. 'Minimum percentage of free space in a block'
  859. /
  860. comment on column DBA_CLUSTERS.PCT_USED is
  861. 'Minimum percentage of used space in a block'
  862. /
  863. comment on column DBA_CLUSTERS.KEY_SIZE is
  864. 'Estimated size of cluster key plus associated rows'
  865. /
  866. comment on column DBA_CLUSTERS.INI_TRANS is
  867. 'Initial number of transactions'
  868. /
  869. comment on column DBA_CLUSTERS.MAX_TRANS is
  870. 'Maximum number of transactions'
  871. /
  872. comment on column DBA_CLUSTERS.INITIAL_EXTENT is
  873. 'Size of the initial extent in bytes'
  874. /
  875. comment on column DBA_CLUSTERS.NEXT_EXTENT is
  876. 'Size of secondary extents in bytes'
  877. /
  878. comment on column DBA_CLUSTERS.MIN_EXTENTS is
  879. 'Minimum number of extents allowed in the segment'
  880. /
  881. comment on column DBA_CLUSTERS.MAX_EXTENTS is
  882. 'Maximum number of extents allowed in the segment'
  883. /
  884. comment on column DBA_CLUSTERS.PCT_INCREASE is
  885. 'Percentage increase in extent size'
  886. /
  887. remark
  888. remark  FAMILY "CLU_COLUMNS"
  889. remark  Mapping of cluster columns to table columns.
  890. remark  This family has no ALL member.
  891. remark  Creator:  Vicken Khachadourian
  892. remark
  893. drop view USER_CLU_COLUMNS
  894. /
  895. create view USER_CLU_COLUMNS
  896.     (CLUSTER_NAME, CLU_COLUMN_NAME, TABLE_NAME, TAB_COLUMN_NAME)
  897. as
  898. select oc.name, cc.name, ot.name, tc.name
  899. from sys.obj$ oc, sys.col$ cc, sys.obj$ ot, sys.col$ tc, sys.tab$ t
  900. where oc.obj#    = cc.obj#
  901.   and t.clu#     = oc.obj#
  902.   and t.obj#     = tc.obj#
  903.   and tc.segcol# = cc.segcol#
  904.   and t.obj#     = ot.obj#
  905.   and oc.type    = 3
  906.   and oc.owner#  = uid
  907. /
  908. comment on table USER_CLU_COLUMNS is
  909. 'Mapping of table columns to cluster columns'
  910. /
  911. comment on column USER_CLU_COLUMNS.CLUSTER_NAME is
  912. 'Cluster name'
  913. /
  914. comment on column USER_CLU_COLUMNS.CLU_COLUMN_NAME is
  915. 'Key column in the cluster'
  916. /
  917. comment on column USER_CLU_COLUMNS.TABLE_NAME is
  918. 'Clustered table name'
  919. /
  920. comment on column USER_CLU_COLUMNS.TAB_COLUMN_NAME is
  921. 'Key column in the table'
  922. /
  923. drop public synonym USER_CLU_COLUMNS
  924. /
  925. create public synonym USER_CLU_COLUMNS for USER_CLU_COLUMNS
  926. /
  927. grant select on USER_CLU_COLUMNS to PUBLIC
  928. /
  929. drop view DBA_CLU_COLUMNS
  930. /
  931. create view DBA_CLU_COLUMNS
  932.     (OWNER, CLUSTER_NAME, CLU_COLUMN_NAME, TABLE_NAME, TAB_COLUMN_NAME)
  933. as
  934. select u.name, oc.name, cc.name, ot.name, tc.name
  935. from sys.user$ u, sys.obj$ oc, sys.col$ cc, sys.obj$ ot, sys.col$ tc,
  936.      sys.tab$ t
  937. where oc.owner#  = u.user#
  938.   and oc.obj#    = cc.obj#
  939.   and t.clu#     = oc.obj#
  940.   and t.obj#     = tc.obj#
  941.   and tc.segcol# = cc.segcol#
  942.   and t.obj#     = ot.obj#
  943.   and oc.type    = 3
  944. /
  945. comment on table DBA_CLU_COLUMNS is
  946. 'Mapping of table columns to cluster columns'
  947. /
  948. comment on column DBA_CLU_COLUMNS.OWNER is
  949. 'Owner of the cluster'
  950. /
  951. comment on column DBA_CLU_COLUMNS.CLUSTER_NAME is
  952. 'Cluster name'
  953. /
  954. comment on column DBA_CLU_COLUMNS.CLU_COLUMN_NAME is
  955. 'Key column in the cluster'
  956. /
  957. comment on column DBA_CLU_COLUMNS.TABLE_NAME is
  958. 'Clustered table name'
  959. /
  960. comment on column DBA_CLU_COLUMNS.TAB_COLUMN_NAME is
  961. 'Key column in the table'
  962. /
  963. remark
  964. remark  FAMILY "COL_COMMENTS"
  965. remark  Comments on columns of tables and views.
  966. remark
  967. drop view USER_COL_COMMENTS
  968. /
  969. create view USER_COL_COMMENTS
  970.     (TABLE_NAME, COLUMN_NAME, COMMENTS)
  971. as
  972. select o.name, c.name, co.comment$
  973. from sys.obj$ o, sys.col$ c, sys.com$ co
  974. where o.owner# = uid
  975.   and o.type in (2, 4)
  976.   and o.obj# = c.obj#
  977.   and c.obj# = co.obj#(+)
  978.   and c.col# = co.col#(+)
  979. /
  980. comment on table USER_COL_COMMENTS is
  981. 'Comments on columns of user''s tables and views'
  982. /
  983. comment on column USER_COL_COMMENTS.TABLE_NAME is
  984. 'Object name'
  985. /
  986. comment on column USER_COL_COMMENTS.COLUMN_NAME is
  987. 'Column name'
  988. /
  989. comment on column USER_COL_COMMENTS.COMMENTS is
  990. 'Comment on the column'
  991. /
  992. drop public synonym USER_COL_COMMENTS
  993. /
  994. create public synonym USER_COL_COMMENTS for USER_COL_COMMENTS
  995. /
  996. grant select on USER_COL_COMMENTS to PUBLIC
  997. /
  998. drop view ALL_COL_COMMENTS
  999. /
  1000. create view ALL_COL_COMMENTS
  1001.     (OWNER, TABLE_NAME, COLUMN_NAME, COMMENTS)
  1002. as
  1003. select u.name, o.name, c.name, co.comment$
  1004. from sys.obj$ o, sys.col$ c, sys.user$ u, sys.com$ co
  1005. where o.owner# = u.user#
  1006.   and o.type in (2, 4)
  1007.   and o.obj# = c.obj#
  1008.   and c.obj# = co.obj#(+)
  1009.   and c.col# = co.col#(+)
  1010.   and (o.owner# = uid
  1011.        or o.obj# in
  1012.          (select obj#
  1013.           from sys.tabauth$
  1014.           where grantee# in (uid, 1))
  1015.       )
  1016. /
  1017. comment on table ALL_COL_COMMENTS is
  1018. 'Comments on columns of accessible tables and views'
  1019. /
  1020. comment on column ALL_COL_COMMENTS.OWNER is
  1021. 'Owner of the object'
  1022. /
  1023. comment on column ALL_COL_COMMENTS.TABLE_NAME is
  1024. 'Name of the object'
  1025. /
  1026. comment on column ALL_COL_COMMENTS.COLUMN_NAME is
  1027. 'Name of the column'
  1028. /
  1029. comment on column ALL_COL_COMMENTS.COMMENTS is
  1030. 'Comment on the column'
  1031. /
  1032. drop public synonym ALL_COL_COMMENTS
  1033. /
  1034. create public synonym ALL_COL_COMMENTS for ALL_COL_COMMENTS
  1035. /
  1036. grant select on ALL_COL_COMMENTS to PUBLIC
  1037. /
  1038. drop view DBA_COL_COMMENTS
  1039. /
  1040. create view DBA_COL_COMMENTS
  1041.     (OWNER, TABLE_NAME, COLUMN_NAME, COMMENTS)
  1042. as
  1043. select u.name, o.name, c.name, co.comment$
  1044. from sys.obj$ o, sys.col$ c, sys.user$ u, sys.com$ co
  1045. where o.owner# = u.user#
  1046.   and o.type in (2, 4)
  1047.   and o.obj# = c.obj#
  1048.   and c.obj# = co.obj#(+)
  1049.   and c.col# = co.col#(+)
  1050. /
  1051. comment on table DBA_COL_COMMENTS is
  1052. 'Comments on columns of all tables and views'
  1053. /
  1054. comment on column DBA_COL_COMMENTS.OWNER is
  1055. 'Name of the owner of the object'
  1056. /
  1057. comment on column DBA_COL_COMMENTS.TABLE_NAME is
  1058. 'Name of the object'
  1059. /
  1060. comment on column DBA_COL_COMMENTS.COLUMN_NAME is
  1061. 'Name of the column'
  1062. /
  1063. comment on column DBA_COL_COMMENTS.COMMENTS is
  1064. 'Comment on the object'
  1065. /
  1066. remark
  1067. remark  FAMILY "COL_GRANTS"
  1068. remark  Grants on columns.
  1069. remark
  1070. drop view USER_COL_GRANTS
  1071. /
  1072. create view USER_COL_GRANTS
  1073.       (GRANTEE, OWNER, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1074.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1075.        CREATED)
  1076. as
  1077. select ue.name, u.name, o.name, ca.name, ur.name,
  1078. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1079.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1080.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1081.        ca.time
  1082. from sys.colauth$ ca, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  1083. where ca.obj# = o.obj#
  1084.   and ca.grantor# = ur.user#
  1085.   and ca.grantee# = ue.user#
  1086.   and u.user# = o.owner#
  1087.   and uid in (ca.grantor#, ca.grantee#, o.owner#)
  1088. /
  1089. comment on table USER_COL_GRANTS is
  1090. 'Grants on columns for which the user is the owner, grantor or grantee'
  1091. /
  1092. comment on column USER_COL_GRANTS.GRANTEE is
  1093. 'Name of the user to whom access was granted'
  1094. /
  1095. comment on column USER_COL_GRANTS.OWNER is
  1096. 'Username of the owner of the object'
  1097. /
  1098. comment on column USER_COL_GRANTS.TABLE_NAME is
  1099. 'Name of the object'
  1100. /
  1101. comment on column USER_COL_GRANTS.COLUMN_NAME is
  1102. 'Name of the column'
  1103. /
  1104. comment on column USER_COL_GRANTS.GRANTOR is
  1105. 'Name of the user who performed the grant'
  1106. /
  1107. remark comment on column USER_COL_GRANTS.INSERT_PRIV is
  1108. remark 'Permission to INSERT into the column?'
  1109. remark /
  1110. comment on column USER_COL_GRANTS.UPDATE_PRIV is
  1111. 'Permission to UPDATE the column?'
  1112. /
  1113. comment on column USER_COL_GRANTS.REFERENCES_PRIV is
  1114. 'Permission to make REFERENCES to the column?'
  1115. /
  1116. comment on column USER_COL_GRANTS.CREATED is
  1117. 'Timestamp for the grant'
  1118. /
  1119. drop public synonym USER_COL_GRANTS
  1120. /
  1121. create public synonym USER_COL_GRANTS for USER_COL_GRANTS
  1122. /
  1123. grant select on USER_COL_GRANTS to PUBLIC
  1124. /
  1125. drop view COLUMN_PRIVILEGES
  1126. /
  1127. create view COLUMN_PRIVILEGES
  1128.       (GRANTEE, OWNER, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1129.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1130.        CREATED)
  1131. as
  1132. select ue.name, u.name, o.name, ca.name, ur.name,
  1133. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1134.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1135.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1136.        ca.time
  1137. from sys.colauth$ ca, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  1138. where ca.obj# = o.obj#
  1139.   and ca.grantor# = ur.user#
  1140.   and ca.grantee# = ue.user#
  1141.   and u.user# = o.owner#
  1142.   and (uid in (ca.grantor#, ca.grantee#, o.owner#)
  1143.    or  ca.grantee# = 1)
  1144. /
  1145. comment on table COLUMN_PRIVILEGES is
  1146. 'Grants on columns for which the user is the grantor, grantee, or owner, or PUBLIC is the grantee'
  1147. /
  1148. comment on column COLUMN_PRIVILEGES.GRANTEE is
  1149. 'Name of the user to whom access was granted'
  1150. /
  1151. comment on column COLUMN_PRIVILEGES.OWNER is
  1152. 'Username of the owner of the object'
  1153. /
  1154. comment on column COLUMN_PRIVILEGES.TABLE_NAME is
  1155. 'Name of the object'
  1156. /
  1157. comment on column COLUMN_PRIVILEGES.COLUMN_NAME is
  1158. 'Name of the column'
  1159. /
  1160. comment on column COLUMN_PRIVILEGES.GRANTOR is
  1161. 'Name of the user who performed the grant'
  1162. /
  1163. remark comment on column COLUMN_PRIVILEGES.INSERT_PRIV is
  1164. remark 'Permission to INSERT into the column?'
  1165. remark /
  1166. comment on column COLUMN_PRIVILEGES.UPDATE_PRIV is
  1167. 'Permission to UPDATE the column?'
  1168. /
  1169. comment on column COLUMN_PRIVILEGES.REFERENCES_PRIV is
  1170. 'Permission to make REFERENCES to the column?'
  1171. /
  1172. comment on column COLUMN_PRIVILEGES.CREATED is
  1173. 'Timestamp for the grant'
  1174. /
  1175. drop public synonym COLUMN_PRIVILEGES
  1176. /
  1177. create public synonym COLUMN_PRIVILEGES for COLUMN_PRIVILEGES
  1178. /
  1179. drop public synonym ALL_COL_GRANTS
  1180. /
  1181. create public synonym ALL_COL_GRANTS for COLUMN_PRIVILEGES
  1182. /
  1183. grant select on COLUMN_PRIVILEGES to PUBLIC
  1184. /
  1185. drop view DBA_COL_GRANTS
  1186. /
  1187. create view DBA_COL_GRANTS
  1188.       (GRANTEE, OWNER, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1189.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1190.        CREATED)
  1191. as
  1192. select ue.name, u.name, o.name, ca.name, ur.name,
  1193. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1194.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1195.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1196.        ca.time
  1197. from sys.colauth$ ca, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  1198. where ca.obj# = o.obj#
  1199.   and ca.grantor# = ur.user#
  1200.   and ca.grantee# = ue.user#
  1201.   and u.user# = o.owner#
  1202. /
  1203. comment on table DBA_COL_GRANTS is
  1204. 'All grants on columns in the database'
  1205. /
  1206. comment on column DBA_COL_GRANTS.GRANTEE is
  1207. 'Name of the user to whom access was granted'
  1208. /
  1209. comment on column DBA_COL_GRANTS.OWNER is
  1210. 'Username of the owner of the object'
  1211. /
  1212. comment on column DBA_COL_GRANTS.TABLE_NAME is
  1213. 'Name of the object'
  1214. /
  1215. comment on column DBA_COL_GRANTS.COLUMN_NAME is
  1216. 'Name of the column'
  1217. /
  1218. comment on column DBA_COL_GRANTS.GRANTOR is
  1219. 'Name of the user who performed the grant'
  1220. /
  1221. remark comment on column DBA_COL_GRANTS.INSERT_PRIV is
  1222. remark 'Permission to INSERT into the column?'
  1223. remark /
  1224. comment on column DBA_COL_GRANTS.UPDATE_PRIV is
  1225. 'Permission to UPDATE the column?'
  1226. /
  1227. comment on column DBA_COL_GRANTS.REFERENCES_PRIV is
  1228. 'Permission to make REFERENCES to the column?'
  1229. /
  1230. comment on column DBA_COL_GRANTS.CREATED is
  1231. 'Timestamp for the grant'
  1232. /
  1233. remark
  1234. remark  FAMILY "COL_GRANTS_MADE"
  1235. remark  Grants on columns made by the user.
  1236. remark  This family has no DBA member.
  1237. remark
  1238. drop view USER_COL_GRANTS_MADE
  1239. /
  1240. create view USER_COL_GRANTS_MADE
  1241.       (GRANTEE, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1242.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1243.        CREATED)
  1244. as
  1245. select ue.name, o.name, ca.name, ur.name,
  1246. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1247.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1248.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1249.        ca.time
  1250. from sys.colauth$ ca, sys.obj$ o, sys.user$ ue, sys.user$ ur
  1251. where ca.obj# = o.obj#
  1252.   and ca.grantor# = ur.user#
  1253.   and ca.grantee# = ue.user#
  1254.   and o.owner# = uid
  1255. /
  1256. comment on table USER_COL_GRANTS_MADE is
  1257. 'All grants on columns of objects owned by the user'
  1258. /
  1259. comment on column USER_COL_GRANTS_MADE.GRANTEE is
  1260. 'Name of the user to whom access was granted'
  1261. /
  1262. comment on column USER_COL_GRANTS_MADE.TABLE_NAME is
  1263. 'Name of the object'
  1264. /
  1265. comment on column USER_COL_GRANTS_MADE.COLUMN_NAME is
  1266. 'Name of the column'
  1267. /
  1268. comment on column USER_COL_GRANTS_MADE.GRANTOR is
  1269. 'Name of the user who performed the grant'
  1270. /
  1271. remark comment on column USER_COL_GRANTS_MADE.INSERT_PRIV is
  1272. remark 'Permission to INSERT into the column?'
  1273. remark /
  1274. comment on column USER_COL_GRANTS_MADE.UPDATE_PRIV is
  1275. 'Permission to UPDATE the column?'
  1276. /
  1277. comment on column USER_COL_GRANTS_MADE.REFERENCES_PRIV is
  1278. 'Permission to make REFERENCES to the column?'
  1279. /
  1280. comment on column USER_COL_GRANTS_MADE.CREATED is
  1281. 'Timestamp for the grant'
  1282. /
  1283. drop public synonym USER_COL_GRANTS_MADE
  1284. /
  1285. create public synonym USER_COL_GRANTS_MADE for USER_COL_GRANTS_MADE
  1286. /
  1287. grant select on USER_COL_GRANTS_MADE to PUBLIC
  1288. /
  1289. drop view ALL_COL_GRANTS_MADE
  1290. /
  1291. create view ALL_COL_GRANTS_MADE
  1292.       (GRANTEE, OWNER, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1293.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1294.        CREATED)
  1295. as
  1296. select ue.name, u.name, o.name, ca.name, ur.name,
  1297. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1298.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1299.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1300.        ca.time
  1301. from sys.colauth$ ca, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  1302. where ca.obj# = o.obj#
  1303.   and ca.grantor# = ur.user#
  1304.   and ca.grantee# = ue.user#
  1305.   and u.user# = o.owner#
  1306.   and uid in (o.owner#, ca.grantor#)
  1307. /
  1308. comment on table ALL_COL_GRANTS_MADE is
  1309. 'Grants on columns for which the user is owner or grantor'
  1310. /
  1311. comment on column ALL_COL_GRANTS_MADE.GRANTEE is
  1312. 'Name of the user to whom access was granted'
  1313. /
  1314. comment on column ALL_COL_GRANTS_MADE.OWNER is
  1315. 'Username of the owner of the object'
  1316. /
  1317. comment on column ALL_COL_GRANTS_MADE.TABLE_NAME is
  1318. 'Name of the object'
  1319. /
  1320. comment on column ALL_COL_GRANTS_MADE.COLUMN_NAME is
  1321. 'Name of the column'
  1322. /
  1323. comment on column ALL_COL_GRANTS_MADE.GRANTOR is
  1324. 'Name of the user who performed the grant'
  1325. /
  1326. remark comment on column ALL_COL_GRANTS_MADE.INSERT_PRIV is
  1327. remark 'Permission to INSERT into the column?'
  1328. remark /
  1329. comment on column ALL_COL_GRANTS_MADE.UPDATE_PRIV is
  1330. 'Permission to UPDATE the column?'
  1331. /
  1332. comment on column ALL_COL_GRANTS_MADE.REFERENCES_PRIV is
  1333. 'Permission to make REFERENCES to the column?'
  1334. /
  1335. comment on column ALL_COL_GRANTS_MADE.CREATED is
  1336. 'Timestamp for the grant'
  1337. /
  1338. drop public synonym ALL_COL_GRANTS_MADE
  1339. /
  1340. create public synonym ALL_COL_GRANTS_MADE for ALL_COL_GRANTS_MADE
  1341. /
  1342. grant select on ALL_COL_GRANTS_MADE to PUBLIC
  1343. /
  1344. remark
  1345. remark  FAMILY "COL_GRANTS_RECD"
  1346. remark  Received grants on columns
  1347. remark
  1348. drop view USER_COL_GRANTS_RECD
  1349. /
  1350. create view USER_COL_GRANTS_RECD
  1351.       (OWNER, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1352.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1353.        CREATED)
  1354. as
  1355. select u.name, o.name, ca.name, ur.name,
  1356. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1357.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1358.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1359.        ca.time
  1360. from sys.colauth$ ca, sys.obj$ o, sys.user$ u, sys.user$ ur
  1361. where ca.obj# = o.obj#
  1362.   and ca.grantor# = ur.user#
  1363.   and u.user# = o.owner#
  1364.   and ca.grantee# = uid
  1365. /
  1366. comment on table USER_COL_GRANTS_RECD is
  1367. 'Grants on columns for which the user is the grantee'
  1368. /
  1369. comment on column USER_COL_GRANTS_RECD.OWNER is
  1370. 'Username of the owner of the object'
  1371. /
  1372. comment on column USER_COL_GRANTS_RECD.TABLE_NAME is
  1373. 'Name of the object'
  1374. /
  1375. comment on column USER_COL_GRANTS_RECD.COLUMN_NAME is
  1376. 'Name of the column'
  1377. /
  1378. comment on column USER_COL_GRANTS_RECD.GRANTOR is
  1379. 'Name of the user who performed the grant'
  1380. /
  1381. remark comment on column USER_COL_GRANTS_RECD.INSERT_PRIV is
  1382. remark 'Permission to INSERT into the column?'
  1383. remark /
  1384. comment on column USER_COL_GRANTS_RECD.UPDATE_PRIV is
  1385. 'Permission to UPDATE the column?'
  1386. /
  1387. comment on column USER_COL_GRANTS_RECD.REFERENCES_PRIV is
  1388. 'Permission to make REFERENCES to the column?'
  1389. /
  1390. comment on column USER_COL_GRANTS_RECD.CREATED is
  1391. 'Timestamp for the grant'
  1392. /
  1393. drop public synonym USER_COL_GRANTS_RECD
  1394. /
  1395. create public synonym USER_COL_GRANTS_RECD for USER_COL_GRANTS_RECD
  1396. /
  1397. grant select on USER_COL_GRANTS_RECD to PUBLIC
  1398. /
  1399. drop view ALL_COL_GRANTS_RECD
  1400. /
  1401. create view ALL_COL_GRANTS_RECD
  1402.       (GRANTEE, OWNER, TABLE_NAME, COLUMN_NAME, GRANTOR,
  1403.        /* INSERT_PRIV, */ UPDATE_PRIV, REFERENCES_PRIV,
  1404.        CREATED)
  1405. as
  1406. select ue.name, u.name, o.name, ca.name, ur.name,
  1407. /*     decode(ca.insert$, 0, 'N', 2, 'Y', 3, 'G', '?'), */
  1408.        decode(ca.update$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1409.        decode(ca.references$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  1410.        ca.time
  1411. from sys.colauth$ ca, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  1412. where ca.obj# = o.obj#
  1413.   and ca.grantor# = ur.user#
  1414.   and ca.grantee# = ue.user#
  1415.   and u.user# = o.owner#
  1416.   and ca.grantee# in (uid, 1)
  1417. /
  1418. comment on table ALL_COL_GRANTS_RECD is
  1419. 'Grants on columns for which the user or PUBLIC is the grantee'
  1420. /
  1421. comment on column ALL_COL_GRANTS_RECD.GRANTEE is
  1422. 'Name of the user to whom access was granted'
  1423. /
  1424. comment on column ALL_COL_GRANTS_RECD.OWNER is
  1425. 'Username of the owner of the object'
  1426. /
  1427. comment on column ALL_COL_GRANTS_RECD.TABLE_NAME is
  1428. 'Name of the object'
  1429. /
  1430. comment on column ALL_COL_GRANTS_RECD.COLUMN_NAME is
  1431. 'Name of the column'
  1432. /
  1433. comment on column ALL_COL_GRANTS_RECD.GRANTOR is
  1434. 'Name of the user who performed the grant'
  1435. /
  1436. remark comment on column ALL_COL_GRANTS_RECD.INSERT_PRIV is
  1437. remark 'Permission to INSERT into the column?'
  1438. remark /
  1439. comment on column ALL_COL_GRANTS_RECD.UPDATE_PRIV is
  1440. 'Permission to UPDATE the column?'
  1441. /
  1442. comment on column ALL_COL_GRANTS_RECD.REFERENCES_PRIV is
  1443. 'Permission to make REFERENCES to the column?'
  1444. /
  1445. comment on column ALL_COL_GRANTS_RECD.CREATED is
  1446. 'Timestamp for the grant'
  1447. /
  1448. drop public synonym ALL_COL_GRANTS_RECD
  1449. /
  1450. create public synonym ALL_COL_GRANTS_RECD for ALL_COL_GRANTS_RECD
  1451. /
  1452. grant select on ALL_COL_GRANTS_RECD to PUBLIC
  1453. /
  1454. remark
  1455. remark  FAMILY "CROSS_REFS"
  1456. remark  Object cross-referencing information
  1457. remark  Creator:  Brian G. Hirano
  1458. remark
  1459. drop view USER_CROSS_REFS
  1460. /
  1461. create view USER_CROSS_REFS
  1462.      (TABLE_NAME,
  1463.       TABLE_TYPE,
  1464.       REF_OWNER, REF_TABLE_NAME, REF_DB_LINK)
  1465. as
  1466. select x.name,
  1467.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX',
  1468.                       2, 'TABLE', 3, 'CLUSTER', 4, 'VIEW',
  1469.                       5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  1470.        x.rowner, x.rname, x.rnode
  1471. from sys.xref$ x, sys.obj$ o
  1472. where o.owner# = uid
  1473.   and x.name   = o.name
  1474.   and x.owner  = user
  1475. /
  1476. comment on table USER_CROSS_REFS is 
  1477. 'Cross references for user''s views and synonyms'
  1478. /
  1479. comment on column USER_CROSS_REFS.TABLE_NAME is
  1480. 'Name of the referencing object'
  1481. /
  1482. comment on column USER_CROSS_REFS.TABLE_TYPE is
  1483. 'Type of the referencing object'
  1484. /
  1485. comment on column USER_CROSS_REFS.REF_OWNER is
  1486. 'Owner of the referenced object'
  1487. /
  1488. comment on column USER_CROSS_REFS.REF_TABLE_NAME is
  1489. 'Name of the referenced object'
  1490. /
  1491. comment on column USER_CROSS_REFS.REF_DB_LINK is
  1492. 'Database link of the referenced object'
  1493. /
  1494. drop public synonym USER_CROSS_REFS
  1495. /
  1496. create public synonym USER_CROSS_REFS for USER_CROSS_REFS
  1497. /
  1498. grant select on USER_CROSS_REFS to PUBLIC
  1499. /
  1500. drop view DBA_CROSS_REFS
  1501. create view DBA_CROSS_REFS
  1502.      (OWNER, TABLE_NAME,
  1503.       TABLE_TYPE,
  1504.       REF_OWNER, REF_TABLE_NAME, REF_DB_LINK)
  1505. as
  1506. select x.owner, x.name,
  1507.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX',
  1508.                       2, 'TABLE', 3, 'CLUSTER', 4, 'VIEW',
  1509.                       5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  1510.        x.rowner, x.rname, x.rnode
  1511. from sys.xref$ x, sys.obj$ o, sys.user$ u
  1512. where o.owner# = u.user#
  1513.   and x.name   = o.name
  1514.   and x.owner  = u.name
  1515. /
  1516. comment on table DBA_CROSS_REFS is
  1517. 'Cross reference of all views and synonyms'
  1518. /
  1519. comment on column DBA_CROSS_REFS.OWNER is
  1520. 'Owner of the referencing object'
  1521. /
  1522. comment on column DBA_CROSS_REFS.TABLE_NAME is
  1523. 'Name of the referencing object'
  1524. /
  1525. comment on column DBA_CROSS_REFS.TABLE_TYPE is
  1526. 'Type of the referencing object'
  1527. /
  1528. comment on column DBA_CROSS_REFS.REF_OWNER is
  1529. 'Owner of the referenced object'
  1530. /
  1531. comment on column DBA_CROSS_REFS.REF_TABLE_NAME is
  1532. 'Name of the referenced object'
  1533. /
  1534. comment on column DBA_CROSS_REFS.REF_DB_LINK is
  1535. 'Database link of the referenced object'
  1536. /
  1537. remark
  1538. remark  FAMILY "DATA_FILES"
  1539. remark  Information about database files.
  1540. remark  This family has a DBA member only.
  1541. remark
  1542. drop view DBA_DATA_FILES
  1543. /
  1544. create view DBA_DATA_FILES
  1545.     (FILE_NAME, FILE_ID, TABLESPACE_NAME, 
  1546.      BYTES, BLOCKS, 
  1547.      STATUS)
  1548. as
  1549. select v.name, f.file#, ts.name, 
  1550.        ts.blocksize * f.blocks, f.blocks, 
  1551.        decode(f.status$, 1, 'INVALID', 2, 'AVAILABLE', 'UNDEFINED')
  1552. from sys.file$ f, sys.ts$ ts, sys.v$dbfile v
  1553. where v.file# = f.file# (+)
  1554.   and f.ts# = ts.ts# (+)
  1555. /
  1556. comment on table DBA_DATA_FILES is
  1557. 'Information about database files'
  1558. /
  1559. comment on column DBA_DATA_FILES.FILE_NAME is
  1560. 'Name of the database file'
  1561. /
  1562. comment on column DBA_DATA_FILES.FILE_ID is
  1563. 'ID of the database file'
  1564. /
  1565. comment on column DBA_DATA_FILES.TABLESPACE_NAME is
  1566. 'Name of the tablespace to which the file belongs'
  1567. /
  1568. comment on column DBA_DATA_FILES.BYTES is
  1569. 'Size of the file in bytes'
  1570. /
  1571. comment on column DBA_DATA_FILES.BLOCKS is
  1572. 'Size of the file in ORACLE blocks'
  1573. /
  1574. comment on column DBA_DATA_FILES.STATUS is
  1575. 'File status:  "INVALID" or "AVAILABLE"'
  1576. /
  1577. remark
  1578. remark  FAMILY "DB_LINKS"
  1579. remark  All relevant information about database links.
  1580. remark
  1581. drop view USER_DB_LINKS
  1582. /
  1583. create view USER_DB_LINKS
  1584.     (DB_LINK, USERNAME, PASSWORD, HOST, CREATED)
  1585. as
  1586. select l.name, l.userid, l.password, l.host, l.ctime
  1587. from sys.link$ l
  1588. where l.owner# = uid
  1589. /
  1590. comment on table USER_DB_LINKS is
  1591. 'Database links owned by the user'
  1592. /
  1593. comment on column USER_DB_LINKS.DB_LINK is
  1594. 'Name of the database link'
  1595. /
  1596. comment on column USER_DB_LINKS.USERNAME is
  1597. 'Name of user to log on as'
  1598. /
  1599. comment on column USER_DB_LINKS.PASSWORD is
  1600. 'Password for logon'
  1601. /
  1602. comment on column USER_DB_LINKS.HOST is
  1603. 'SQL*Net string for connect'
  1604. /
  1605. comment on column USER_DB_LINKS.CREATED is
  1606. 'Creation time of the database link'
  1607. /
  1608. drop public synonym USER_DB_LINKS
  1609. /
  1610. create public synonym USER_DB_LINKS for USER_DB_LINKS
  1611. /
  1612. grant select on USER_DB_LINKS to PUBLIC
  1613. /
  1614. drop view ALL_DB_LINKS
  1615. /
  1616. create view ALL_DB_LINKS
  1617.     (OWNER, DB_LINK, USERNAME, HOST, CREATED)
  1618. as
  1619. select u.name, l.name, l.userid, l.host, l.ctime
  1620. from sys.link$ l, sys.user$ u
  1621. where l.owner# in (uid, 1)
  1622.   and l.owner# = u.user#
  1623. /
  1624. comment on table ALL_DB_LINKS is
  1625. 'Database links accessible to the user'
  1626. /
  1627. comment on column ALL_DB_LINKS.DB_LINK is
  1628. 'Name of the database link'
  1629. /
  1630. comment on column ALL_DB_LINKS.USERNAME is
  1631. 'Name of user to log on as'
  1632. /
  1633. comment on column ALL_DB_LINKS.HOST is
  1634. 'SQL*Net string for connect'
  1635. /
  1636. comment on column ALL_DB_LINKS.CREATED is
  1637. 'Creation time of the database link'
  1638. /
  1639. drop public synonym ALL_DB_LINKS
  1640. /
  1641. create public synonym ALL_DB_LINKS for ALL_DB_LINKS
  1642. /
  1643. grant select on ALL_DB_LINKS to PUBLIC
  1644. /
  1645. drop view DBA_DB_LINKS
  1646. /
  1647. create view DBA_DB_LINKS
  1648.     (OWNER, DB_LINK, USERNAME, HOST, CREATED)
  1649. as
  1650. select u.name, l.name, l.userid, l.host, l.ctime
  1651. from sys.link$ l, sys.user$ u
  1652. where l.owner# = u.user#
  1653. /
  1654. comment on table DBA_DB_LINKS is
  1655. 'All database links in the database'
  1656. /
  1657. comment on column DBA_DB_LINKS.DB_LINK is
  1658. 'Name of the database link'
  1659. /
  1660. comment on column DBA_DB_LINKS.USERNAME is
  1661. 'Name of user to log on as'
  1662. /
  1663. comment on column DBA_DB_LINKS.HOST is
  1664. 'SQL*Net string for connect'
  1665. /
  1666. comment on column DBA_DB_LINKS.CREATED is
  1667. 'Creation time of the database link'
  1668. /
  1669. remark
  1670. remark  FAMILY "DEF_AUDIT_OPTS"
  1671. remark  Single row view indicating the default auditing options
  1672. remark  for newly created objects.
  1673. remark  This family has an ALL member only, since the default is
  1674. remark  system-wide and applies to all accessible objects.
  1675. remark
  1676. drop view ALL_DEF_AUDIT_OPTS
  1677. /
  1678. create view ALL_DEF_AUDIT_OPTS
  1679.     (ALT,
  1680.      AUD,
  1681.      COM,
  1682.      DEL,
  1683.      GRA,
  1684.      IND,
  1685.      INS,
  1686.      LOC,
  1687.      REN,
  1688.      SEL,
  1689.      UPD)
  1690. as
  1691. select substr(t.audit$, 1, 1) || '/' || substr(t.audit$, 2, 1),
  1692.        substr(t.audit$, 3, 1) || '/' || substr(t.audit$, 4, 1),
  1693.        substr(t.audit$, 5, 1) || '/' || substr(t.audit$, 6, 1),
  1694.        substr(t.audit$, 7, 1) || '/' || substr(t.audit$, 8, 1),
  1695.        substr(t.audit$, 9, 1) || '/' || substr(t.audit$, 10, 1),
  1696.        substr(t.audit$, 11, 1) || '/' || substr(t.audit$, 12, 1),
  1697.        substr(t.audit$, 13, 1) || '/' || substr(t.audit$, 14, 1),
  1698.        substr(t.audit$, 15, 1) || '/' || substr(t.audit$, 16, 1),
  1699.        substr(t.audit$, 17, 1) || '/' || substr(t.audit$, 18, 1),
  1700.        substr(t.audit$, 19, 1) || '/' || substr(t.audit$, 20, 1),
  1701.        substr(t.audit$, 21, 1) || '/' || substr(t.audit$, 22, 1)
  1702. from sys.obj$ o, sys.tab$ t
  1703. where o.obj# = t.obj#
  1704.   and o.owner# = 0
  1705.   and o.name = '_default_auditing_options_'
  1706. /
  1707. comment on table ALL_DEF_AUDIT_OPTS is
  1708. 'Auditing options for newly created objects'
  1709. /
  1710. comment on column ALL_DEF_AUDIT_OPTS.ALT is
  1711. 'Auditing ALTER WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1712. /
  1713. comment on column ALL_DEF_AUDIT_OPTS.AUD is
  1714. 'Auditing AUDIT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1715. /
  1716. comment on column ALL_DEF_AUDIT_OPTS.COM is
  1717. 'Auditing COMMENT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1718. /
  1719. comment on column ALL_DEF_AUDIT_OPTS.DEL is
  1720. 'Auditing DELETE WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1721. /
  1722. comment on column ALL_DEF_AUDIT_OPTS.GRA is
  1723. 'Auditing GRANT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1724. /
  1725. comment on column ALL_DEF_AUDIT_OPTS.IND is
  1726. 'Auditing INDEX WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1727. /
  1728. comment on column ALL_DEF_AUDIT_OPTS.INS is
  1729. 'Auditing INSERT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1730. /
  1731. comment on column ALL_DEF_AUDIT_OPTS.LOC is
  1732. 'Auditing LOCK WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1733. /
  1734. comment on column ALL_DEF_AUDIT_OPTS.REN is
  1735. 'Auditing RENAME WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1736. /
  1737. comment on column ALL_DEF_AUDIT_OPTS.SEL is
  1738. 'Auditing SELECT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1739. /
  1740. comment on column ALL_DEF_AUDIT_OPTS.UPD is
  1741. 'Auditing UPDATE WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  1742. /
  1743. drop public synonym ALL_DEF_AUDIT_OPTS
  1744. /
  1745. create public synonym ALL_DEF_AUDIT_OPTS for ALL_DEF_AUDIT_OPTS
  1746. /
  1747. grant select on ALL_DEF_AUDIT_OPTS to PUBLIC
  1748. /
  1749. remark
  1750. remark  VIEW "DICTIONARY"
  1751. remark  Online documentation for data dictionary tables and views.
  1752. remark  This view exists outside of the family schema.
  1753. remark
  1754. drop view DICTIONARY
  1755. /
  1756. create view DICTIONARY
  1757.     (TABLE_NAME, COMMENTS)
  1758. as
  1759. select o.name, c.comment$
  1760. from sys.obj$ o, sys.com$ c
  1761. where o.obj# = c.obj#(+)
  1762.   and c.col# is null
  1763.   and o.owner# = 0
  1764.   and o.type = 4
  1765.   and (o.name like 'USER%'
  1766.        or o.name like 'ALL%'
  1767.        or (o.name like 'DBA%'
  1768.            and uid in
  1769.                    (select u.user#
  1770.                     from sys.user$ u
  1771.                     where u.dba$ = 1)
  1772.            )
  1773.       )
  1774. union
  1775. select o.name, c.comment$
  1776. from sys.obj$ o, sys.com$ c
  1777. where o.obj# = c.obj#(+)
  1778.   and o.owner# = 0
  1779.   and o.name in ('AUDIT_ACTIONS', 'DICTIONARY', 'DICT_COLUMNS', 'DUAL',
  1780.                  /* ANSI views */
  1781.                  'ACCESSIBLE_TABLES', 'TABLE_PRIVILEGES',
  1782.                  'ACCESSIBLE_COLUMNS', 'COLUMN_PRIVILEGES',
  1783.                  'CONSTRAINT_DEFS', 'CONSTRAINT_COLUMNS')
  1784.   and c.col# is null
  1785. union
  1786. /* Find the names of public synonyms for views owned by SYS that
  1787. have names different from the synonym name.  This allows the user
  1788. to see the short-hand synonyms we have created.
  1789. */
  1790. select so.name, 'Synonym for ' || sy.name
  1791. from sys.obj$ ro, sys.syn$ sy, sys.obj$ so
  1792. where so.type = 5
  1793.   and so.owner# = 1
  1794.   and so.obj# = sy.obj#
  1795.   and so.name <> sy.name
  1796.   and sy.owner = 'SYS'
  1797.   and sy.name = ro.name
  1798.   and ro.owner# = 0
  1799.   and ro.type = 4
  1800. /
  1801. comment on table DICTIONARY is
  1802. 'Description of data dictionary tables and views'
  1803. /
  1804. comment on column DICTIONARY.TABLE_NAME is
  1805. 'Name of the object'
  1806. /
  1807. comment on column DICTIONARY.COMMENTS is
  1808. 'Text comment on the object'
  1809. /
  1810. drop public synonym DICTIONARY
  1811. /
  1812. create public synonym DICTIONARY for DICTIONARY
  1813. /
  1814. drop public synonym DICT
  1815. /
  1816. create public synonym DICT for DICTIONARY
  1817. /
  1818. grant select on DICTIONARY to PUBLIC
  1819. /
  1820. remark
  1821. remark  VIEW "DICT_COLUMNS"
  1822. remark  Online documentation for columns in data dictionary tables and views.
  1823. remark  This view exists outside of the family schema.
  1824. remark
  1825. drop view DICT_COLUMNS
  1826. /
  1827. create view DICT_COLUMNS
  1828.     (TABLE_NAME, COLUMN_NAME, COMMENTS)
  1829. as
  1830. select o.name, c.name, co.comment$
  1831. from sys.com$ co, sys.col$ c, sys.obj$ o
  1832. where  o.owner# = 0
  1833.   and o.type = 4
  1834.   and (o.name like 'USER%'
  1835.        or o.name like 'ALL$'
  1836.        or (o.name like 'DBA%'
  1837.            and uid in
  1838.                (select u.user#
  1839.                 from sys.user$ u
  1840.                 where u.dba$ = 1)
  1841.           )
  1842.       )
  1843.   and o.obj# = c.obj#
  1844.   and c.obj# = co.obj#(+)
  1845.   and c.col# = co.col#(+)
  1846. union
  1847. select o.name, c.name, co.comment$
  1848. from sys.com$ co, sys.col$ c, sys.obj$ o
  1849. where  o.owner# = 0
  1850.   and o.name in ('AUDIT_ACTIONS','DUAL','DICTIONARY', 'DICT_COLUMNS',
  1851.                  /* ANSI views */
  1852.                  'ACCESSIBLE_TABLES', 'TABLE_PRIVILEGES',
  1853.                  'ACCESSIBLE_COLUMNS', 'COLUMN_PRIVILEGES',
  1854.                  'CONSTRAINT_DEFS', 'CONSTRAINT_COLUMNS')
  1855.   and o.obj# = c.obj#
  1856.   and c.obj# = co.obj#(+)
  1857.   and c.col# = co.col#(+)
  1858. union
  1859.     /* Find the column comments for public synonyms for views owned by SYS that
  1860. have names different from the synonym name.  This allows the user
  1861. to see the columns of the short-hand synonyms we have created.
  1862. */
  1863. select so.name, c.name, co.comment$
  1864. from sys.com$ co,sys.col$ c, sys.obj$ ro, sys.syn$ sy, sys.obj$ so
  1865. where so.type = 5
  1866.   and so.owner# = 1
  1867.   and so.obj# = sy.obj#
  1868.   and so.name <> sy.name
  1869.   and sy.owner = 'SYS'
  1870.   and sy.name = ro.name
  1871.   and ro.owner# = 0
  1872.   and ro.type = 4
  1873.   and ro.obj# = c.obj#
  1874.   and c.col# = co.col#(+)  
  1875.   and c.obj# = co.obj#(+)
  1876. /
  1877. comment on table DICT_COLUMNS is
  1878. 'Description of columns in data dictionary tables and views'
  1879. /
  1880. comment on column DICT_COLUMNS.TABLE_NAME is
  1881. 'Name of the object that contains the column'
  1882. /
  1883. comment on column DICT_COLUMNS.COLUMN_NAME is
  1884. 'Name of the column'
  1885. /
  1886. comment on column DICT_COLUMNS.COMMENTS is
  1887. 'Text comment on the object'
  1888. /
  1889. drop public synonym DICT_COLUMNS
  1890. /
  1891. create public synonym DICT_COLUMNS for DICT_COLUMNS
  1892. /
  1893. grant select on DICT_COLUMNS to PUBLIC
  1894. /
  1895. remark
  1896. remark  FAMILY "EXP_OBJECTS"
  1897. remark  Objects that have been incrementally exported.
  1898. remark  This family has a DBA member only.
  1899. remark  Creator:  Vicken Khachadourian
  1900. remark
  1901. drop view DBA_EXP_OBJECTS
  1902. /
  1903. create view DBA_EXP_OBJECTS
  1904.     (OWNER, OBJECT_NAME, OBJECT_TYPE, CUMULATIVE, INCREMENTAL, EXPORT_VERSION)
  1905. as
  1906. select u.name, o.name, 
  1907.        decode(o.type, 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  1908.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  1909.        o.ctime, o.itime, o.expid
  1910. from sys.incexp o, sys.user$ u
  1911. where o.owner# = u.user#
  1912. /
  1913. comment on table DBA_EXP_OBJECTS is
  1914. 'Objects that have been incrementally exported'
  1915. /
  1916. comment on column DBA_EXP_OBJECTS.OWNER is
  1917. 'Owner of exported object'
  1918. comment on column DBA_EXP_OBJECTS.OBJECT_NAME is
  1919. 'Name of exported object'
  1920. comment on column DBA_EXP_OBJECTS.OBJECT_TYPE is
  1921. 'Type of exported object'
  1922. comment on column DBA_EXP_OBJECTS.CUMULATIVE is
  1923. 'Timestamp of last cumulative export'
  1924. comment on column DBA_EXP_OBJECTS.INCREMENTAL is
  1925. 'Timestamp of last incremental export'
  1926. comment on column DBA_EXP_OBJECTS.EXPORT_VERSION is
  1927. 'The id of the export session'
  1928. remark
  1929. remark  FAMILY "EXP_VERSION"
  1930. remark  Version number of last incremental export
  1931. remark  This family has a DBA member only.
  1932. remark  Creator:  Vicken Khachadourian
  1933. remark
  1934. drop view DBA_EXP_VERSION
  1935. /
  1936. create view DBA_EXP_VERSION 
  1937.     (EXP_VERSION)
  1938. as
  1939. select o.expid 
  1940. from sys.incvid o
  1941. /
  1942. comment on table DBA_EXP_VERSION is
  1943. 'Version number of the last export session'
  1944. /
  1945. comment on column DBA_EXP_VERSION.EXP_VERSION is
  1946. 'Version number of the last export session'
  1947. /
  1948. remark
  1949. remark  FAMILY "EXP_FILES"
  1950. remark  Files created by incremental exports.
  1951. remark  This family has a DBA member only.
  1952. remark  Creator:  Vicken Khachadourian
  1953. remark
  1954. drop view DBA_EXP_FILES
  1955. /
  1956. create view DBA_EXP_FILES 
  1957.      (EXP_VERSION, EXP_TYPE, FILE_NAME, USER_NAME, TIMESTAMP)
  1958. as
  1959. select o.expid, decode(o.exptype, 'X', 'COMPLETE', 'C', 'CUMULATIVE',
  1960.                                   'I', 'INCREMENTAL', 'UNDEFINED'),
  1961.        o.expfile, o.expuser, o.expdate
  1962. from sys.incfil o
  1963. /
  1964. comment on table DBA_EXP_FILES is
  1965. 'Description of export files'
  1966. /
  1967. comment on column DBA_EXP_FILES.EXP_VERSION is
  1968. 'Version number of the export session'
  1969. /
  1970. comment on column DBA_EXP_FILES.FILE_NAME is
  1971. 'Name of the export file'
  1972. /
  1973. comment on column DBA_EXP_FILES.USER_NAME is
  1974. 'Name of user who executed export'
  1975. /
  1976. comment on column DBA_EXP_FILES.TIMESTAMP is
  1977. 'Timestamp of the export session'
  1978. /
  1979. remark
  1980. remark  FAMILY "FREE_SPACE"
  1981. remark  Free extents.
  1982. remark  This family has no ALL member.
  1983. remark
  1984. drop view USER_FREE_SPACE
  1985. /
  1986. create view USER_FREE_SPACE
  1987.     (TABLESPACE_NAME, FILE_ID, BLOCK_ID,
  1988.      BYTES, BLOCKS)
  1989. as
  1990. select ts.name, f.file#, f.block#,
  1991.        f.length * ts.blocksize, f.length
  1992. from sys.fet$ f, sys.ts$ ts
  1993. where f.ts# = ts.ts#
  1994.   and (ts.ts# in
  1995.          (select tsq.ts#
  1996.           from sys.tsq$ tsq
  1997.           where tsq.user# = uid)
  1998.        or uid in
  1999.             (select u.user#
  2000.              from sys.user$ u
  2001.              where u.resource$ = 1)
  2002.       )
  2003. /
  2004. comment on table USER_FREE_SPACE is
  2005. 'Free extents in tablespaces accessible to the user'
  2006. /
  2007. comment on column USER_FREE_SPACE.TABLESPACE_NAME is
  2008. 'Name of the tablespace containing the extent'
  2009. /
  2010. comment on column USER_FREE_SPACE.FILE_ID is
  2011. 'ID number of the file containing the extent'
  2012. /
  2013. comment on column USER_FREE_SPACE.BLOCK_ID is
  2014. 'Starting block number of the extent'
  2015. /
  2016. comment on column USER_FREE_SPACE.BYTES is
  2017. 'Size of the extent in bytes'
  2018. /
  2019. comment on column USER_FREE_SPACE.BLOCKS is
  2020. 'Size of the extent in ORACLE blocks'
  2021. /
  2022. drop public synonym USER_FREE_SPACE
  2023. /
  2024. create public synonym USER_FREE_SPACE for USER_FREE_SPACE
  2025. /
  2026. grant select on USER_FREE_SPACE to PUBLIC
  2027. /
  2028. drop view DBA_FREE_SPACE
  2029. /
  2030. create view DBA_FREE_SPACE
  2031.     (TABLESPACE_NAME, FILE_ID, BLOCK_ID,
  2032.      BYTES, BLOCKS)
  2033. as
  2034. select ts.name, f.file#, f.block#,
  2035.        f.length * ts.blocksize, f.length
  2036. from sys.fet$ f, sys.ts$ ts
  2037. where f.ts# = ts.ts# (+)
  2038. /
  2039. comment on table DBA_FREE_SPACE is
  2040. 'Free extents in all tablespaces'
  2041. /
  2042. comment on column DBA_FREE_SPACE.TABLESPACE_NAME is
  2043. 'Name of the tablespace containing the extent'
  2044. /
  2045. comment on column DBA_FREE_SPACE.FILE_ID is
  2046. 'ID number of the file containing the extent'
  2047. /
  2048. comment on column DBA_FREE_SPACE.BLOCK_ID is
  2049. 'Starting block number of the extent'
  2050. /
  2051. comment on column DBA_FREE_SPACE.BYTES is
  2052. 'Size of the extent in bytes'
  2053. /
  2054. comment on column DBA_FREE_SPACE.BLOCKS is
  2055. 'Size of the extent in ORACLE blocks'
  2056. /
  2057. remark
  2058. remark  FAMILY "INDEXES"
  2059. remark  CREATE INDEX parameters.
  2060. remark
  2061. drop view USER_INDEXES
  2062. /
  2063. create view USER_INDEXES
  2064.     (INDEX_NAME, TABLE_OWNER, TABLE_NAME,
  2065.      TABLE_TYPE,
  2066.      UNIQUENESS,
  2067.      TABLESPACE_NAME, INI_TRANS, MAX_TRANS,
  2068.      INITIAL_EXTENT, NEXT_EXTENT,
  2069.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE, PCT_FREE)
  2070. as
  2071. select o.name, iu.name, io.name,
  2072.        decode(io.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  2073.                        4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  2074.        decode(i.unique$, 0, 'NONUNIQUE', 1, 'UNIQUE', 'UNDEFINED'),
  2075.        ts.name, i.initrans, i.maxtrans,
  2076.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  2077.        s.minexts, s.maxexts, s.extpct, i.pctfree$
  2078. from sys.ts$ ts, sys.seg$ s, sys.user$ iu, sys.obj$ io, sys.ind$ i, sys.obj$ o
  2079. where o.owner# = uid
  2080.   and o.obj# = i.obj#
  2081.   and i.bo# = io.obj#
  2082.   and io.owner# = iu.user#
  2083.   and i.ts# = ts.ts#
  2084.   and i.file# = s.file#
  2085.   and i.block# = s.block#
  2086. /
  2087. comment on table USER_INDEXES is
  2088. 'Description of the user''s own indexes'
  2089. /
  2090. comment on column USER_INDEXES.INDEX_NAME is
  2091. 'Name of the index'
  2092. /
  2093. comment on column USER_INDEXES.TABLE_OWNER is
  2094. 'Owner of the indexed object'
  2095. /
  2096. comment on column USER_INDEXES.TABLE_NAME is
  2097. 'Name of the indexed object'
  2098. /
  2099. comment on column USER_INDEXES.TABLE_TYPE is
  2100. 'Type of the indexed object'
  2101. /
  2102. comment on column USER_INDEXES.UNIQUENESS is
  2103. 'Uniqueness status of the index:  "UNIQUE" or "NONUNIQUE"'
  2104. /
  2105. comment on column USER_INDEXES.TABLESPACE_NAME is
  2106. 'Name of the tablespace containing the index'
  2107. /
  2108. comment on column USER_INDEXES.INI_TRANS is
  2109. 'Initial number of transactions'
  2110. /
  2111. comment on column USER_INDEXES.MAX_TRANS is
  2112. 'Maximum number of transactions'
  2113. /
  2114. comment on column USER_INDEXES.INITIAL_EXTENT is
  2115. 'Size of the initial extent in bytes'
  2116. /
  2117. comment on column USER_INDEXES.NEXT_EXTENT is
  2118. 'Size of secondary extents in bytes'
  2119. /
  2120. comment on column USER_INDEXES.MIN_EXTENTS is
  2121. 'Minimum number of extents allowed in the segment'
  2122. /
  2123. comment on column USER_INDEXES.MAX_EXTENTS is
  2124. 'Maximum number of extents allowed in the segment'
  2125. /
  2126. comment on column USER_INDEXES.PCT_INCREASE is
  2127. 'Percentage increase in extent size'
  2128. /
  2129. comment on column USER_INDEXES.PCT_FREE is
  2130. 'Minimum precentage of free space in a block'
  2131. /
  2132. drop public synonym USER_INDEXES
  2133. /
  2134. create public synonym USER_INDEXES for USER_INDEXES
  2135. /
  2136. drop public synonym IND
  2137. /
  2138. create public synonym IND for USER_INDEXES
  2139. /
  2140. grant select on USER_INDEXES to PUBLIC
  2141. /
  2142. remark
  2143. remark  This view does not include cluster indexes on clusters
  2144. remark  containing tables which are accessible to the user.
  2145. remark
  2146. drop view ALL_INDEXES
  2147. /
  2148. create view ALL_INDEXES
  2149.     (OWNER, INDEX_NAME, TABLE_OWNER, TABLE_NAME,
  2150.      TABLE_TYPE,
  2151.      UNIQUENESS,
  2152.      TABLESPACE_NAME, INI_TRANS, MAX_TRANS,
  2153.      INITIAL_EXTENT, NEXT_EXTENT, MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE,
  2154.      PCT_FREE)
  2155.  as 
  2156. select u.name, o.name, iu.name, io.name, 
  2157.        decode(io.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  2158.                        4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  2159.        decode(i.unique$, 0, 'NONUNIQUE', 1, 'UNIQUE', 'UNDEFINED'), 
  2160.        ts.name, i.initrans, i.maxtrans,
  2161.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize, 
  2162.        s.minexts, s.maxexts, s.extpct , i.pctfree$
  2163. from sys.ts$ ts, sys.seg$ s, sys.user$ iu, sys.obj$ io, 
  2164.      sys.user$ u, sys.ind$ i, sys.obj$ o
  2165. where u.user# = o.owner#
  2166.   and o.obj# = i.obj#
  2167.   and i.bo# = io.obj#
  2168.   and io.owner# = iu.user# 
  2169.   and i.ts# = ts.ts# 
  2170.   and i.file# = s.file#
  2171.   and i.block# = s.block# 
  2172.   and (io.owner# = uid
  2173.         or
  2174.        io.obj# in ( select obj#
  2175.                     from tabauth$
  2176.                     where grantee# in ( uid, 1 )
  2177.                   )
  2178.        )
  2179. /
  2180. comment on table ALL_INDEXES is
  2181. 'Descriptions of indexes on tables accessible to the user'
  2182. /
  2183. comment on column ALL_INDEXES.OWNER is
  2184. 'Username of the owner of the index'
  2185. /
  2186. comment on column ALL_INDEXES.INDEX_NAME is
  2187. 'Name of the index'
  2188. /
  2189. comment on column ALL_INDEXES.TABLE_OWNER is
  2190. 'Owner of the indexed object'
  2191. /
  2192. comment on column ALL_INDEXES.TABLE_NAME is
  2193. 'Name of the indexed object'
  2194. /
  2195. comment on column ALL_INDEXES.TABLE_TYPE is
  2196. 'Type of the indexed object'
  2197. /
  2198. comment on column ALL_INDEXES.UNIQUENESS is
  2199. 'Uniqueness status of the index:  "UNIQUE" or "NONUNIQUE"'
  2200. /
  2201. comment on column ALL_INDEXES.TABLESPACE_NAME is
  2202. 'Name of the tablespace containing the index'
  2203. /
  2204. comment on column ALL_INDEXES.INI_TRANS is
  2205. 'Initial number of transactions'
  2206. /
  2207. comment on column ALL_INDEXES.MAX_TRANS is
  2208. 'Maximum number of transactions'
  2209. /
  2210. comment on column ALL_INDEXES.INITIAL_EXTENT is
  2211. 'Size of the initial extent'
  2212. /
  2213. comment on column ALL_INDEXES.NEXT_EXTENT is
  2214. 'Size of secondary extents'
  2215. /
  2216. comment on column ALL_INDEXES.MIN_EXTENTS is
  2217. 'Minimum number of extents allowed in the segment'
  2218. /
  2219. comment on column ALL_INDEXES.MAX_EXTENTS is
  2220. 'Maximum number of extents allowed in the segment'
  2221. /
  2222. comment on column ALL_INDEXES.PCT_INCREASE is
  2223. 'Percentage increase in extent size'
  2224. /
  2225. comment on column ALL_INDEXES.PCT_FREE is
  2226. 'Minimum percentage of free space in a block'
  2227. /
  2228. drop public synonym ALL_INDEXES
  2229. /
  2230. create public synonym ALL_INDEXES for ALL_INDEXES
  2231. /
  2232. grant select on ALL_INDEXES to PUBLIC
  2233. /
  2234. drop view DBA_INDEXES
  2235. /
  2236. create view DBA_INDEXES
  2237.     (OWNER, INDEX_NAME, TABLE_OWNER, TABLE_NAME,
  2238.      TABLE_TYPE,
  2239.      UNIQUENESS,
  2240.      TABLESPACE_NAME, INI_TRANS, MAX_TRANS,
  2241.      INITIAL_EXTENT, NEXT_EXTENT,
  2242.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE, PCT_FREE)
  2243. as
  2244. select u.name, o.name, iu.name, io.name,
  2245.        decode(io.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  2246.                        4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  2247.        decode(i.unique$, 0, 'NONUNIQUE', 1, 'UNIQUE', 'UNDEFINED'),
  2248.        ts.name, i.initrans, i.maxtrans,
  2249.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  2250.        s.minexts, s.maxexts, s.extpct, i.pctfree$
  2251. from sys.ts$ ts, sys.seg$ s,
  2252.      sys.user$ iu, sys.obj$ io, sys.user$ u, sys.ind$ i, sys.obj$ o
  2253. where u.user# = o.owner#
  2254.   and o.obj# = i.obj#
  2255.   and i.bo# = io.obj#
  2256.   and io.owner# = iu.user#
  2257.   and i.ts# = ts.ts#
  2258.   and i.file# = s.file#
  2259.   and i.block# = s.block#
  2260. /
  2261. comment on table DBA_INDEXES is
  2262. 'Description for all indexes in the database'
  2263. /
  2264. comment on column DBA_INDEXES.OWNER is
  2265. 'Username of the owner of the index'
  2266. /
  2267. comment on column DBA_INDEXES.INDEX_NAME is
  2268. 'Name of the index'
  2269. /
  2270. comment on column DBA_INDEXES.TABLE_OWNER is
  2271. 'Owner of the indexed object'
  2272. /
  2273. comment on column DBA_INDEXES.TABLE_NAME is
  2274. 'Name of the indexed object'
  2275. /
  2276. comment on column DBA_INDEXES.TABLE_TYPE is
  2277. 'Type of the indexed object'
  2278. /
  2279. comment on column DBA_INDEXES.UNIQUENESS is
  2280. 'Uniqueness status of the index:  "UNIQUE" or "NONUNIQUE"'
  2281. /
  2282. comment on column DBA_INDEXES.TABLESPACE_NAME is
  2283. 'Name of the tablespace containing the index'
  2284. /
  2285. comment on column DBA_INDEXES.INI_TRANS is
  2286. 'Initial number of transactions'
  2287. /
  2288. comment on column DBA_INDEXES.MAX_TRANS is
  2289. 'Maximum number of transactions'
  2290. /
  2291. comment on column DBA_INDEXES.INITIAL_EXTENT is
  2292. 'Size of the initial extent'
  2293. /
  2294. comment on column DBA_INDEXES.NEXT_EXTENT is
  2295. 'Size of secondary extents'
  2296. /
  2297. comment on column DBA_INDEXES.MIN_EXTENTS is
  2298. 'Minimum number of extents allowed in the segment'
  2299. /
  2300. comment on column DBA_INDEXES.MAX_EXTENTS is
  2301. 'Maximum number of extents allowed in the segment'
  2302. /
  2303. comment on column DBA_INDEXES.PCT_INCREASE is
  2304. 'Percentage increase in extent size'
  2305. /
  2306. comment on column DBA_INDEXES.PCT_FREE is
  2307. 'Minimum percentage of free space in a block'
  2308. /
  2309. remark
  2310. remark  FAMILY "IND_COLUMNS"
  2311. remark  Displays information on which columns are contained in which
  2312. remark  indexes
  2313. remark
  2314. drop view USER_IND_COLUMNS
  2315. /
  2316. create view USER_IND_COLUMNS
  2317.     (INDEX_NAME, TABLE_NAME, COLUMN_NAME, COLUMN_POSITION, COLUMN_LENGTH)
  2318. as
  2319. select idx.name, base.name, 
  2320.        c.name, ic.pos#, c.length
  2321. from sys.col$ c, sys.obj$ idx, sys.obj$ base, sys.icol$ ic
  2322. where base.obj# = c.obj#
  2323.   and ic.bo# = base.obj#
  2324.   and ic.col# = c.col#
  2325.   and (base.owner# = uid or idx.owner# = uid)
  2326.   and ic.obj# = idx.obj#
  2327. /
  2328. comment on table USER_IND_COLUMNS is
  2329. 'COLUMNs comprising user''s INDEXes or on user''s TABLES'
  2330. /
  2331. comment on column USER_IND_COLUMNS.INDEX_NAME is
  2332. 'Index name'
  2333. /
  2334. comment on column USER_IND_COLUMNS.TABLE_NAME is
  2335. 'Table or cluster name'
  2336. /
  2337. comment on column USER_IND_COLUMNS.COLUMN_NAME is
  2338. 'Column name'
  2339. /
  2340. comment on column USER_IND_COLUMNS.COLUMN_POSITION is
  2341. 'Position of column within index'
  2342. /
  2343. comment on column USER_IND_COLUMNS.COLUMN_LENGTH is
  2344. 'Indexed length of the column'
  2345. /
  2346. drop public synonym USER_IND_COLUMNS
  2347. /
  2348. create public synonym USER_IND_COLUMNS for USER_IND_COLUMNS
  2349. /
  2350. grant select on USER_IND_COLUMNS to PUBLIC
  2351. /
  2352. drop view ALL_IND_COLUMNS
  2353. /
  2354. create view ALL_IND_COLUMNS
  2355.     (INDEX_OWNER, INDEX_NAME,
  2356.      TABLE_OWNER, TABLE_NAME,
  2357.      COLUMN_NAME, COLUMN_POSITION, COLUMN_LENGTH)
  2358. as
  2359. select io.name, idx.name, bo.name, base.name, 
  2360.        c.name, ic.pos#, c.length
  2361. from sys.col$ c, sys.obj$ idx, sys.obj$ base, sys.icol$ ic,
  2362.      sys.user$ io, sys.user$ bo
  2363. where base.obj# = c.obj#
  2364.   and ic.col# = c.col#
  2365.   and ic.bo# = base.obj#
  2366.   and io.user# = idx.owner#
  2367.   and bo.user# = base.owner#
  2368.   and ic.obj# = idx.obj#
  2369.   and (idx.owner# = uid or
  2370.        base.owner# = uid
  2371.        or
  2372.        base.obj# in ( select obj#
  2373.                      from sys.tabauth$
  2374.                      where grantee# in ( uid, 1 )
  2375.                    )
  2376.        )
  2377. /
  2378. comment on table ALL_IND_COLUMNS is
  2379. 'COLUMNs comprising INDEXes on accessible TABLES'
  2380. /
  2381. comment on column ALL_IND_COLUMNS.INDEX_OWNER is
  2382. 'Index owner'
  2383. /
  2384. comment on column ALL_IND_COLUMNS.INDEX_NAME is
  2385. 'Index name'
  2386. /
  2387. comment on column ALL_IND_COLUMNS.TABLE_OWNER is
  2388. 'Table or cluster owner'
  2389. /
  2390. comment on column ALL_IND_COLUMNS.TABLE_NAME is
  2391. 'Table or cluster name'
  2392. /
  2393. comment on column ALL_IND_COLUMNS.COLUMN_NAME is
  2394. 'Column name'
  2395. /
  2396. comment on column ALL_IND_COLUMNS.COLUMN_POSITION is
  2397. 'Position of column within index'
  2398. /
  2399. comment on column ALL_IND_COLUMNS.COLUMN_LENGTH is
  2400. 'Indexed length of the column'
  2401. /
  2402. drop public synonym ALL_IND_COLUMNS
  2403. /
  2404. create public synonym ALL_IND_COLUMNS for ALL_IND_COLUMNS
  2405. /
  2406. grant select on ALL_IND_COLUMNS to PUBLIC
  2407. /
  2408. drop view DBA_IND_COLUMNS
  2409. /
  2410. create view DBA_IND_COLUMNS
  2411.     (INDEX_OWNER, INDEX_NAME,
  2412.      TABLE_OWNER, TABLE_NAME,
  2413.      COLUMN_NAME, COLUMN_POSITION, COLUMN_LENGTH)
  2414. as
  2415. select io.name, idx.name, bo.name, base.name, 
  2416.        c.name, ic.pos#, c.length
  2417. from sys.col$ c, sys.obj$ idx, sys.obj$ base, sys.icol$ ic,
  2418.      sys.user$ io, sys.user$ bo
  2419. where base.obj# = c.obj#
  2420.   and ic.col# = c.col#
  2421.   and ic.bo# = base.obj#
  2422.   and io.user# = idx.owner#
  2423.   and bo.user# = base.owner#
  2424.   and ic.obj# = idx.obj#
  2425. /
  2426. comment on table DBA_IND_COLUMNS is
  2427. 'COLUMNs comprising INDEXes on all TABLEs and CLUSTERs'
  2428. /
  2429. comment on column DBA_IND_COLUMNS.INDEX_OWNER is
  2430. 'Index owner'
  2431. /
  2432. comment on column DBA_IND_COLUMNS.INDEX_NAME is
  2433. 'Index name'
  2434. /
  2435. comment on column DBA_IND_COLUMNS.TABLE_OWNER is
  2436. 'Table or cluster owner'
  2437. /
  2438. comment on column DBA_IND_COLUMNS.TABLE_NAME is
  2439. 'Table or cluster name'
  2440. /
  2441. comment on column DBA_IND_COLUMNS.COLUMN_NAME is
  2442. 'Column name'
  2443. /
  2444. comment on column DBA_IND_COLUMNS.COLUMN_POSITION is
  2445. 'Position of column within index'
  2446. /
  2447. comment on column DBA_IND_COLUMNS.COLUMN_LENGTH is
  2448. 'Indexed length of the column'
  2449. /
  2450. drop view INDEX_STATS
  2451. /
  2452. create view INDEX_STATS as
  2453.  select    kdxstrot+1    height, 
  2454.     s.blocks,
  2455.     o.name,
  2456.            kdxstlrw     lf_rows,
  2457.     kdxstlbk    lf_blks,
  2458.     kdxstlln    lf_rows_len,
  2459.     kdxstlub    lf_blk_len,
  2460.            kdxstbrw     br_rows,
  2461.     kdxstbbk    br_blks,
  2462.     kdxstbln    br_rows_len,
  2463.     kdxstbub    br_blk_len,
  2464.     kdxstdrw    del_lf_rows,
  2465.     kdxstdln    del_lf_rows_len,
  2466.     kdxstdis    distinct_keys,
  2467.     kdxstmrl    most_repeated_key,
  2468.     kdxstlbk*kdxstlub+kdxstbbk*kdxstbub    btree_space,
  2469.     kdxstlln+kdxstbln            used_space,
  2470.     ceil(((kdxstlln+kdxstbln)*100)/
  2471.     (kdxstlbk*kdxstlub+kdxstbbk*kdxstbub))
  2472.                         pct_used,    
  2473.     kdxstlrw/kdxstdis            rows_per_key,
  2474.     kdxstrot+1+(kdxstlrw+kdxstdis)/(kdxstdis*2)
  2475.                         blks_gets_per_access
  2476.   from obj$ o, ind$ i, seg$ s, x$kdxst
  2477.  where kdxstfil = s.file#
  2478.   and  kdxstblk = s.block#
  2479.   and  s.file#  = i.file#
  2480.   and  s.block# = i.block#
  2481.   and  i.obj#   = o.obj#
  2482. /
  2483. comment on column index_stats.height is 
  2484. 'height of the b-tree'
  2485. /
  2486. comment on column index_stats.blocks is
  2487. 'blocks allocated to the segment'
  2488. /
  2489. comment on column index_stats.name is
  2490. 'name of the index'
  2491. /
  2492. comment on column index_stats.lf_rows is
  2493. 'number of leaf rows (values in the index)'
  2494. /
  2495. comment on column index_stats.lf_blks is
  2496. 'number of leaf blocks in the b-tree'
  2497. /
  2498. comment on column index_stats.lf_rows_len is
  2499. 'sum of the lengths of all the leaf rows'
  2500. /
  2501. comment on column index_stats.lf_blk_len is
  2502. 'useable space in a leaf block'
  2503. /
  2504. comment on column index_stats.br_rows is
  2505. 'number of branch rows'
  2506. /
  2507. comment on column index_stats.br_blks is
  2508. 'number of branch blocks in the b-tree'
  2509. /
  2510. comment on column index_stats.br_rows_len is
  2511. 'sum of the lengths of all the branch blocks in the b-tree'
  2512. /
  2513. comment on column index_stats.br_blk_len is
  2514. 'useable space in a branch block'
  2515. /
  2516. comment on column index_stats.del_lf_rows is
  2517. 'number of deleted leaf rows in the index'
  2518. /
  2519. comment on column index_stats.del_lf_rows_len is
  2520. 'total length of all deleted rows in the index'
  2521. /
  2522. comment on column index_stats.distinct_keys is
  2523. 'number of distinct keys in the index'
  2524. /
  2525. comment on column index_stats.most_repeated_key is
  2526. 'how many times the most repeated key is repeated'
  2527. /
  2528. comment on column index_stats.btree_space is
  2529. 'total space currently allocated in the b-tree'
  2530. /
  2531. comment on column index_stats.used_space is
  2532. 'total space that is currently being used in the b-tree'
  2533. /
  2534. comment on column index_stats.pct_used is
  2535. 'percent of space allocated in the b-tree that is being used'
  2536. /
  2537. comment on column index_stats.rows_per_key is
  2538. 'average number of rows per distinct key'
  2539. /
  2540. comment on column index_stats.blks_gets_per_access is
  2541. 'Expected number of consistent mode block gets per row. This assumes that a row chosen at random from the table is being searched for using the index'
  2542. /
  2543. drop public synonym INDEX_STATS
  2544. /
  2545. create public synonym INDEX_STATS for INDEX_STATS
  2546. /
  2547. grant select on INDEX_STATS to public
  2548. /
  2549. drop view INDEX_HISTOGRAM
  2550. /
  2551. create view INDEX_HISTOGRAM as
  2552.  select hist.indx * power(2, stats.kdxstscl-4)    repeat_count,
  2553.     hist.kdxhsval                keys_with_repeat_count
  2554.     from  x$kdxst stats, x$kdxhs hist
  2555. /
  2556. comment on column index_histogram.repeat_count is
  2557. 'number of times that a key is repeated'
  2558. /
  2559. comment on column index_histogram.keys_with_repeat_count is
  2560. 'number of keys that are repeated REPEAT_COUNT times'
  2561. /
  2562. drop public synonym INDEX_HISTOGRAM
  2563. /
  2564. create public synonym INDEX_HISTOGRAM for INDEX_HISTOGRAM
  2565. /
  2566. grant select on INDEX_HISTOGRAM to public
  2567. /
  2568. remark
  2569. remark  FAMILY "OBJECTS"
  2570. remark  List of objects, including creation and modify times.
  2571. remark
  2572. drop view USER_OBJECTS
  2573. /
  2574. create view USER_OBJECTS
  2575.     (OBJECT_NAME, OBJECT_ID,
  2576.      OBJECT_TYPE,
  2577.      CREATED, MODIFIED)
  2578. as
  2579. select o.name, o.obj#,
  2580.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  2581.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  2582.        o.ctime, o.mtime
  2583. from sys.obj$ o
  2584. where o.owner# = uid
  2585. union
  2586. select l.name, to_number(null),
  2587.        'DATABASE LINK',
  2588.        l.ctime, to_date(null)
  2589. from sys.link$ l
  2590. where l.owner# = uid
  2591. /
  2592. comment on table USER_OBJECTS is
  2593. 'Objects owned by the user'
  2594. /
  2595. comment on column USER_OBJECTS.OBJECT_NAME is
  2596. 'Name of the object'
  2597. /
  2598. comment on column USER_OBJECTS.OBJECT_ID is
  2599. 'Object number of the object'
  2600. /
  2601. comment on column USER_OBJECTS.OBJECT_TYPE is
  2602. 'Type of the object'
  2603. /
  2604. comment on column USER_OBJECTS.CREATED is
  2605. 'Timestamp for the creation of the object'
  2606. /
  2607. comment on column USER_OBJECTS.MODIFIED is
  2608. 'Timestamp for the last DDL change to the object'
  2609. /
  2610. drop public synonym USER_OBJECTS
  2611. /
  2612. create public synonym USER_OBJECTS for USER_OBJECTS
  2613. /
  2614. drop public synonym OBJ
  2615. /
  2616. create public synonym OBJ for USER_OBJECTS
  2617. /
  2618. grant select on USER_OBJECTS to PUBLIC
  2619. /
  2620. drop view ALL_OBJECTS
  2621. /
  2622. create view ALL_OBJECTS
  2623.     (OWNER, OBJECT_NAME, OBJECT_ID,
  2624.      OBJECT_TYPE,
  2625.      CREATED, MODIFIED)
  2626. as
  2627. select u.name, o.name, o.obj#,
  2628.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  2629.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  2630.        o.ctime, o.mtime
  2631. from sys.obj$ o, sys.user$ u
  2632. where o.owner# = u.user#
  2633.   and (o.owner# in (uid, 1)
  2634.         or
  2635.         o.obj# in ( select obj#
  2636.                     from sys.tabauth$
  2637.                     where grantee# in ( uid, 1 )
  2638.                   )
  2639.        )
  2640. /
  2641. comment on table ALL_OBJECTS is
  2642. 'Objects accessible to the user'
  2643. /
  2644. comment on column ALL_OBJECTS.OWNER is
  2645. 'Username of the owner of the object'
  2646. /
  2647. comment on column ALL_OBJECTS.OBJECT_NAME is
  2648. 'Name of the object'
  2649. /
  2650. comment on column ALL_OBJECTS.OBJECT_ID is
  2651. 'Object number of the object'
  2652. /
  2653. comment on column ALL_OBJECTS.OBJECT_TYPE is
  2654. 'Type of the object'
  2655. /
  2656. comment on column ALL_OBJECTS.CREATED is
  2657. 'Timestamp for the creation of the object'
  2658. /
  2659. comment on column ALL_OBJECTS.MODIFIED is
  2660. 'Timestamp for the last DDL change to the object'
  2661. /
  2662. drop public synonym ALL_OBJECTS
  2663. /
  2664. create public synonym ALL_OBJECTS for ALL_OBJECTS
  2665. /
  2666. grant select on ALL_OBJECTS to PUBLIC
  2667. /
  2668. drop view DBA_OBJECTS
  2669. /
  2670. create view DBA_OBJECTS
  2671.     (OWNER, OBJECT_NAME, OBJECT_ID,
  2672.      OBJECT_TYPE,
  2673.      CREATED, MODIFIED)
  2674. as
  2675. select u.name, o.name, o.obj#,
  2676.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  2677.                       4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED'),
  2678.        o.ctime, o.mtime
  2679. from sys.obj$ o, sys.user$ u
  2680. where o.owner# = u.user#
  2681. union
  2682. select u.name, l.name, to_number(null),
  2683.        'DATABASE LINK',
  2684.        l.ctime, to_date(null)
  2685. from sys.link$ l, sys.user$ u
  2686. where l.owner# = u.user#
  2687. /
  2688. comment on table DBA_OBJECTS is
  2689. 'All objects in the database'
  2690. /
  2691. comment on column DBA_OBJECTS.OWNER is
  2692. 'Username of the owner of the object'
  2693. /
  2694. comment on column DBA_OBJECTS.OBJECT_NAME is
  2695. 'Name of the object'
  2696. /
  2697. comment on column DBA_OBJECTS.OBJECT_ID is
  2698. 'Object number of the object'
  2699. /
  2700. comment on column DBA_OBJECTS.OBJECT_TYPE is
  2701. 'Type of the object'
  2702. /
  2703. comment on column DBA_OBJECTS.CREATED is
  2704. 'Timestamp for the creation of the object'
  2705. /
  2706. comment on column DBA_OBJECTS.MODIFIED is
  2707. 'Timestamp for the last DDL change to the object'
  2708. /
  2709. remark
  2710. remark  FAMILY "ROLLBACK_SEGS"
  2711. remark  CREATE ROLLBACK SEGMENT parameters.
  2712. remark  This family has a DBA member only.
  2713. remark
  2714. drop view DBA_ROLLBACK_SEGS
  2715. /
  2716. create view DBA_ROLLBACK_SEGS
  2717.     (SEGMENT_NAME, OWNER, TABLESPACE_NAME, SEGMENT_ID, FILE_ID, BLOCK_ID,
  2718.      INITIAL_EXTENT, NEXT_EXTENT,
  2719.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE,
  2720.      STATUS)
  2721. as
  2722. select un.name, decode(un.user#,1,'PUBLIC','SYS'),
  2723.        ts.name, un.us#, un.file#, un.block#,
  2724.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  2725.        s.minexts, s.maxexts, s.extpct,
  2726.        decode(un.status$, 1, 'INVALID', 2, 'AVAILABLE', 3, 'IN USE',
  2727.                           4, 'OFFLINE', 5, 'NEEDS RECOVERY', 'UNDEFINED')
  2728. from sys.undo$ un, sys.seg$ s, sys.ts$ ts
  2729. where un.file# = s.file# (+)
  2730.   and un.block# = s.block# (+)
  2731.   and s.type = 1
  2732.   and s.ts# = ts.ts#
  2733. /
  2734. comment on table DBA_ROLLBACK_SEGS is
  2735. 'Description of rollback segments'
  2736. /
  2737. comment on column DBA_ROLLBACK_SEGS.SEGMENT_NAME is
  2738. 'Name of the rollback segment'
  2739. /
  2740. comment on column DBA_ROLLBACK_SEGS.OWNER is
  2741. 'Owner of the rollback segment'
  2742. /
  2743. comment on column DBA_ROLLBACK_SEGS.TABLESPACE_NAME is
  2744. 'Name of the tablespace containing the rollback segment'
  2745. /
  2746. comment on column DBA_ROLLBACK_SEGS.SEGMENT_ID is
  2747. 'ID number of the rollback segment'
  2748. /
  2749. comment on column DBA_ROLLBACK_SEGS.FILE_ID is
  2750. 'ID number of the file containing the segment header'
  2751. /
  2752. comment on column DBA_ROLLBACK_SEGS.FILE_ID is
  2753. 'ID number of the block containing the segment header'
  2754. /
  2755. comment on column DBA_ROLLBACK_SEGS.INITIAL_EXTENT is
  2756. 'Initial extent size in bytes'
  2757. /
  2758. comment on column DBA_ROLLBACK_SEGS.NEXT_EXTENT is
  2759. 'Secondary extent size in bytes'
  2760. /
  2761. comment on column DBA_ROLLBACK_SEGS.MIN_EXTENTS is
  2762. 'Minimum number of extents'
  2763. /
  2764. comment on column DBA_ROLLBACK_SEGS.MAX_EXTENTS is
  2765. 'Maximum number of extents'
  2766. /
  2767. comment on column DBA_ROLLBACK_SEGS.PCT_INCREASE is
  2768. 'Percent increase for extent size'
  2769. /
  2770. comment on column DBA_ROLLBACK_SEGS.STATUS is
  2771. 'Rollback segment status'
  2772. /   
  2773. remark  FAMILY "SEGMENTS"
  2774. remark  Storage for all types of segments
  2775. remark  This family has no ALL member.
  2776. drop view SYS_OBJECTS
  2777. /
  2778. remark  define SYS_OBJECTS for use by segments views
  2779. create view SYS_OBJECTS
  2780.     (OBJECT_TYPE, OBJECT_TYPE_ID, SEGMENT_TYPE_ID,
  2781.      OBJECT_ID, HEADER_FILE, HEADER_BLOCK)
  2782. as
  2783. select 'TABLE', 2, 5,
  2784.        t.obj#, t.file#, t.block#
  2785. from sys.tab$ t
  2786. where t.clu# is null  /* exclude clustered tables */
  2787. union
  2788. select 'CLUSTER', 3, 5,
  2789.        c.obj#, c.file#, c.block#
  2790. from sys.clu$ c
  2791. union
  2792. select 'INDEX', 1, 6,
  2793.        i.obj#, i.file#, i.block#
  2794. from sys.ind$ i
  2795. /
  2796. drop view USER_SEGMENTS
  2797. /
  2798. create view USER_SEGMENTS
  2799.     (SEGMENT_NAME,
  2800.      SEGMENT_TYPE,
  2801.      TABLESPACE_NAME,
  2802.      BYTES, BLOCKS, EXTENTS, MAX_EXTENTS)
  2803. as
  2804. select o.name,
  2805.        so.object_type,
  2806.        ts.name,
  2807.        s.blocks * ts.blocksize, s.blocks, s.extents, s.maxexts
  2808. from sys.obj$ o, sys.ts$ ts, sys.sys_objects so, sys.seg$ s
  2809. where s.file# = so.header_file
  2810.   and s.block# = so.header_block
  2811.   and s.ts# = ts.ts#
  2812.   and o.obj# = so.object_id
  2813.   and o.owner# = uid
  2814.   and s.type = so.segment_type_id
  2815.   and o.type = so.object_type_id
  2816. union
  2817. select un.name,
  2818.        'ROLLBACK',
  2819.        ts.name,
  2820.        s.blocks * ts.blocksize, s.blocks, s.extents, s.maxexts
  2821. from sys.user$ u, sys.ts$ ts, sys.undo$ un, sys.seg$ s
  2822. where s.file# = un.file#
  2823.   and s.block# = un.block#
  2824.   and s.ts# = ts.ts#
  2825.   and s.user# = uid
  2826.   and s.type = 1
  2827. union
  2828. select to_char(s.file#) || '.' || to_char(s.block#),
  2829.        decode(s.type, 2, 'DEFERRED ROLLBACK', 3, 'TEMPORARY',
  2830.                       4, 'CACHE', 'UNDEFINED'),
  2831.        ts.name,
  2832.        s.blocks * ts.blocksize, s.blocks, s.extents, s.maxexts
  2833. from sys.ts$ ts, sys.seg$ s
  2834. where s.ts# = ts.ts#
  2835.   and s.user# = uid
  2836.   and s.type not in (1, 5, 6)
  2837. /
  2838. comment on table USER_SEGMENTS is
  2839. 'Storage allocated for all database segments'
  2840. /
  2841. comment on column USER_SEGMENTS.SEGMENT_NAME is
  2842. 'Name, if any, of the segment'
  2843. /
  2844. comment on column USER_SEGMENTS.SEGMENT_TYPE is
  2845. 'Type of segment:  "TABLE", "CLUSTER", "INDEX", "ROLLBACK",
  2846. "DEFERRED ROLLBACK", "TEMPORARY", or "CACHE"'
  2847. /
  2848. comment on column USER_SEGMENTS.TABLESPACE_NAME is
  2849. 'Name of the tablespace containing the segment'
  2850. /
  2851. comment on column USER_SEGMENTS.BYTES is
  2852. 'Size, in bytes, of the segment'
  2853. /
  2854. comment on column USER_SEGMENTS.BLOCKS is
  2855. 'Size, in Oracle blocks, of the segment'
  2856. /
  2857. comment on column USER_SEGMENTS.EXTENTS is
  2858. 'Number of extents allocated to the segment'
  2859. /
  2860. comment on column USER_SEGMENTS.MAX_EXTENTS is
  2861. 'Maximum number of extents allowed in the segment'
  2862. /
  2863. drop public synonym USER_SEGMENTS
  2864. /
  2865. create public synonym USER_SEGMENTS for USER_SEGMENTS
  2866. /
  2867. grant select on USER_SEGMENTS to PUBLIC
  2868. /
  2869. drop view DBA_SEGMENTS
  2870. /
  2871. create view DBA_SEGMENTS
  2872.     (OWNER, SEGMENT_NAME,
  2873.      SEGMENT_TYPE,
  2874.      TABLESPACE_NAME,
  2875.      HEADER_FILE, HEADER_BLOCK,
  2876.      BYTES, BLOCKS, EXTENTS, MAX_EXTENTS)
  2877. as
  2878. select u.name, o.name,
  2879.        so.object_type,
  2880.        ts.name,
  2881.        s.file#, s.block#,
  2882.        s.blocks * ts.blocksize, s.blocks, s.extents, s.maxexts
  2883. from sys.user$ u, sys.obj$ o, sys.ts$ ts, sys.sys_objects so, sys.seg$ s
  2884. where s.file# = so.header_file
  2885.   and s.block# = so.header_block
  2886.   and s.ts# = ts.ts#
  2887.   and o.obj# = so.object_id
  2888.   and o.owner# = u.user#
  2889.   and s.type = so.segment_type_id
  2890.   and o.type = so.object_type_id
  2891. union
  2892. select u.name, un.name,
  2893.        'ROLLBACK', ts.name, s.file#, s.block#,
  2894.        s.blocks * ts.blocksize, s.blocks, s.extents, s.maxexts
  2895. from sys.user$ u, sys.ts$ ts, sys.undo$ un, sys.seg$ s
  2896. where s.file# = un.file#
  2897.   and s.block# = un.block#
  2898.   and s.ts# = ts.ts#
  2899.   and s.user# = u.user#
  2900.   and s.type = 1
  2901. union
  2902. select u.name, to_char(s.file#) || '.' || to_char(s.block#),
  2903.        decode(s.type, 2, 'DEFERRED ROLLBACK', 3, 'TEMPORARY',
  2904.                       4, 'CACHE', 'UNDEFINED'),
  2905.        ts.name,
  2906.        s.file#, s.block#,
  2907.        s.blocks * ts.blocksize, s.blocks, s.extents, s.maxexts
  2908. from sys.user$ u, sys.ts$ ts, sys.seg$ s
  2909. where s.ts# = ts.ts#
  2910.   and s.user# = u.user#
  2911.   and s.type not in (1, 5, 6)
  2912. /
  2913. comment on table DBA_SEGMENTS is
  2914. 'Storage allocated for all database segments'
  2915. /
  2916. comment on column DBA_SEGMENTS.OWNER is
  2917. 'Username of the segment owner'
  2918. /
  2919. comment on column DBA_SEGMENTS.SEGMENT_NAME is
  2920. 'Name, if any, of the segment'
  2921. /
  2922. comment on column DBA_SEGMENTS.SEGMENT_TYPE is
  2923. 'Type of segment:  "TABLE", "CLUSTER", "INDEX", "ROLLBACK",
  2924. "DEFERRED ROLLBACK", "TEMPORARY", or "CACHE"'
  2925. /
  2926. comment on column DBA_SEGMENTS.TABLESPACE_NAME is
  2927. 'Name of the tablespace containing the segment'
  2928. /
  2929. comment on column DBA_SEGMENTS.HEADER_FILE is
  2930. 'ID of the file containing the segment header'
  2931. /
  2932. comment on column DBA_SEGMENTS.HEADER_BLOCK is
  2933. 'ID of the block containing the segment header'
  2934. /
  2935. comment on column DBA_SEGMENTS.BYTES is
  2936. 'Size, in bytes, of the segment'
  2937. /
  2938. comment on column DBA_SEGMENTS.BLOCKS is
  2939. 'Size, in Oracle blocks, of the segment'
  2940. /
  2941. comment on column DBA_SEGMENTS.EXTENTS is
  2942. 'Number of extents allocated to the segment'
  2943. /
  2944. comment on column DBA_SEGMENTS.MAX_EXTENTS is
  2945. 'Maximum number of extents allowed in the segment'
  2946. /
  2947. remark
  2948. remark  FAMILY "EXTENTS"
  2949. remark  Extents associated with their segments.
  2950. remark
  2951. drop view USER_EXTENTS
  2952. /
  2953. create view USER_EXTENTS
  2954.     (SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME,
  2955.      EXTENT_ID, BYTES, BLOCKS)
  2956. as
  2957. select ds.segment_name, ds.segment_type, ds.tablespace_name,
  2958.        e.ext#, e.length * ds.bytes / ds.blocks, e.length
  2959. from sys.uet$ e, sys.dba_segments ds
  2960. where e.segfile# = ds.header_file
  2961.   and e.segblock# = ds.header_block
  2962.   and ds.owner = user
  2963. /
  2964. comment on table USER_EXTENTS is
  2965. 'Extents comprising segments owned by the user'
  2966. /
  2967. comment on column USER_EXTENTS.SEGMENT_NAME is
  2968. 'Name of the segment associated with the extent'
  2969. /
  2970. comment on column USER_EXTENTS.TABLESPACE_NAME is
  2971. 'Name of the tablespace containing the extent'
  2972. /
  2973. comment on column USER_EXTENTS.SEGMENT_TYPE is
  2974. 'Type of the segment'
  2975. /
  2976. comment on column USER_EXTENTS.EXTENT_ID is
  2977. 'Extent number in the segment'
  2978. /
  2979. comment on column USER_EXTENTS.BYTES is
  2980. 'Size of the extent in bytes'
  2981. /
  2982. comment on column USER_EXTENTS.BLOCKS is
  2983. 'Size of the extent in ORACLE blocks'
  2984. /
  2985. drop public synonym USER_EXTENTS
  2986. /
  2987. create public synonym USER_EXTENTS for USER_EXTENTS
  2988. /
  2989. grant select on USER_EXTENTS to PUBLIC
  2990. /
  2991. drop view DBA_EXTENTS
  2992. /
  2993. create view DBA_EXTENTS
  2994.     (OWNER, SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME,
  2995.      EXTENT_ID, FILE_ID, BLOCK_ID,
  2996.      BYTES, BLOCKS)
  2997. as
  2998. select ds.owner, ds.segment_name, ds.segment_type, ds.tablespace_name,
  2999.        e.ext#, e.file#, e.block#,
  3000.        e.length * ds.bytes / ds.blocks, e.length
  3001. from sys.uet$ e, sys.dba_segments ds
  3002. where e.segfile# = ds.header_file
  3003.   and e.segblock# = ds.header_block
  3004. /
  3005. comment on table DBA_EXTENTS is
  3006. 'Extents comprising all segments in the database'
  3007. /
  3008. comment on column DBA_EXTENTS.OWNER is
  3009. 'Owner of the segment associated with the extent'
  3010. /
  3011. comment on column DBA_EXTENTS.SEGMENT_NAME is
  3012. 'Name of the segment associated with the extent'
  3013. /
  3014. comment on column DBA_EXTENTS.TABLESPACE_NAME is
  3015. 'Name of the tablespace containing the extent'
  3016. /
  3017. comment on column DBA_EXTENTS.SEGMENT_TYPE is
  3018. 'Type of the segment'
  3019. /
  3020. comment on column DBA_EXTENTS.FILE_ID is
  3021. 'Name of the file containing the extent'
  3022. /
  3023. comment on column DBA_EXTENTS.BLOCK_ID is
  3024. 'Starting block number of the extent'
  3025. /
  3026. comment on column DBA_EXTENTS.EXTENT_ID is
  3027. 'Extent number in the segment'
  3028. /
  3029. comment on column DBA_EXTENTS.BYTES is
  3030. 'Size of the extent in bytes'
  3031. /
  3032. comment on column DBA_EXTENTS.BLOCKS is
  3033. 'Size of the extent in ORACLE blocks'
  3034. /
  3035. remark
  3036. remark  FAMILY "SEQUENCES"
  3037. remark  CREATE SEQUENCE information.
  3038. remark
  3039. drop view USER_SEQUENCES
  3040. /
  3041. create view USER_SEQUENCES
  3042.   (SEQUENCE_NAME, MIN_VALUE, MAX_VALUE, INCREMENT_BY,
  3043.                   CYCLE_FLAG, ORDER_FLAG, CACHE_SIZE, LAST_NUMBER)
  3044. as select o.name,
  3045.       s.minvalue, s.maxvalue, s.increment$,
  3046.       decode (s.cycle, 0, 'N', 1, 'Y'),
  3047.       decode (s.order$, 0, 'N', 1, 'Y'),
  3048.       s.cache, s.highwater
  3049. from sys.seq$ s, sys.obj$ o
  3050. where o.owner# = uid
  3051.   and o.obj# = s.obj#
  3052. /
  3053. comment on table USER_SEQUENCES is
  3054. 'Description of the user''s own SEQUENCEs'
  3055. /
  3056. comment on column USER_SEQUENCES.SEQUENCE_NAME is
  3057. 'SEQUENCE name'
  3058. /
  3059. comment on column USER_SEQUENCES.INCREMENT_BY is
  3060. 'Value by which sequence is incremented'
  3061. /
  3062. comment on column USER_SEQUENCES.MIN_VALUE is
  3063. 'Minimum value of the sequence'
  3064. /
  3065. comment on column USER_SEQUENCES.MAX_VALUE is
  3066. 'Maximum value of the sequence'
  3067. /
  3068. comment on column USER_SEQUENCES.CYCLE_FLAG is
  3069. 'Does sequence wrap around on reaching limit?'
  3070. /
  3071. comment on column USER_SEQUENCES.ORDER_FLAG is
  3072. 'Are sequence numbers generated in order?'
  3073. /
  3074. comment on column USER_SEQUENCES.CACHE_SIZE is
  3075. 'Number of sequence numbers to cache'
  3076. /
  3077. comment on column USER_SEQUENCES.LAST_NUMBER is
  3078. 'Last sequence number written to disk'
  3079. /
  3080. drop public synonym USER_SEQUENCES
  3081. /
  3082. create public synonym USER_SEQUENCES for USER_SEQUENCES
  3083. /
  3084. drop public synonym SEQ
  3085. /
  3086. create public synonym SEQ for USER_SEQUENCES
  3087. /
  3088. grant select on USER_SEQUENCES to PUBLIC
  3089. /
  3090. drop view ALL_SEQUENCES
  3091. /
  3092. create view ALL_SEQUENCES
  3093.   (SEQUENCE_OWNER, SEQUENCE_NAME, 
  3094.                   MIN_VALUE, MAX_VALUE, INCREMENT_BY,
  3095.                   CYCLE_FLAG, ORDER_FLAG, CACHE_SIZE, LAST_NUMBER)
  3096. as select u.name, o.name,
  3097.       s.minvalue, s.maxvalue, s.increment$, 
  3098.       decode (s.cycle, 0, 'N', 1, 'Y'),
  3099.       decode (s.order$, 0, 'N', 1, 'Y'),
  3100.       s.cache, s.highwater
  3101. from sys.seq$ s, sys.obj$ o, sys.user$ u
  3102. where u.user# = o.owner#
  3103.   and o.obj# = s.obj#
  3104.   and (o.owner# = uid
  3105.        or o.obj# in
  3106.             (select ta.obj#
  3107.              from sys.tabauth$ ta
  3108.              where ta.grantee# in (uid, 1))
  3109.       )
  3110. /
  3111. comment on table ALL_SEQUENCES is
  3112. 'Description of SEQUENCEs accessible to the user'
  3113. /
  3114. comment on column ALL_SEQUENCES.SEQUENCE_OWNER is
  3115. 'Name of the owner of the sequence'
  3116. /
  3117. comment on column ALL_SEQUENCES.SEQUENCE_NAME is
  3118. 'SEQUENCE name'
  3119. /
  3120. comment on column ALL_SEQUENCES.INCREMENT_BY is
  3121. 'Value by which sequence is incremented'
  3122. /
  3123. comment on column ALL_SEQUENCES.MIN_VALUE is
  3124. 'Minimum value of the sequence'
  3125. /
  3126. comment on column ALL_SEQUENCES.MAX_VALUE is
  3127. 'Maximum value of the sequence'
  3128. /
  3129. comment on column ALL_SEQUENCES.CYCLE_FLAG is
  3130. 'Does sequence wrap around on reaching limit?'
  3131. /
  3132. comment on column ALL_SEQUENCES.ORDER_FLAG is
  3133. 'Are sequence numbers generated in order?'
  3134. /
  3135. comment on column ALL_SEQUENCES.CACHE_SIZE is
  3136. 'Number of sequence numbers to cache'
  3137. /
  3138. comment on column ALL_SEQUENCES.LAST_NUMBER is
  3139. 'Last sequence number written to disk'
  3140. /
  3141. drop public synonym ALL_SEQUENCES
  3142. /
  3143. create public synonym ALL_SEQUENCES for ALL_SEQUENCES
  3144. /
  3145. grant select on ALL_SEQUENCES to PUBLIC
  3146. /
  3147. drop view DBA_SEQUENCES
  3148. /
  3149. create view DBA_SEQUENCES
  3150.   (SEQUENCE_OWNER, SEQUENCE_NAME, 
  3151.                   MIN_VALUE, MAX_VALUE, INCREMENT_BY,
  3152.                   CYCLE_FLAG, ORDER_FLAG, CACHE_SIZE, LAST_NUMBER)
  3153. as select u.name, o.name,
  3154.       s.minvalue, s.maxvalue, s.increment$, 
  3155.       decode (s.cycle, 0, 'N', 1, 'Y'),
  3156.       decode (s.order$, 0, 'N', 1, 'Y'),
  3157.       s.cache, s.highwater
  3158. from sys.seq$ s, sys.obj$ o, sys.user$ u
  3159. where u.user# = o.owner#
  3160.   and o.obj# = s.obj#
  3161. /
  3162. comment on table DBA_SEQUENCES is
  3163. 'Description of all SEQUENCEs in the database'
  3164. /
  3165. comment on column DBA_SEQUENCES.SEQUENCE_OWNER is
  3166. 'Name of the owner of the sequence'
  3167. /
  3168. comment on column DBA_SEQUENCES.SEQUENCE_NAME is
  3169. 'SEQUENCE name'
  3170. /
  3171. comment on column DBA_SEQUENCES.INCREMENT_BY is
  3172. 'Value by which sequence is incremented'
  3173. /
  3174. comment on column DBA_SEQUENCES.MIN_VALUE is
  3175. 'Minimum value of the sequence'
  3176. /
  3177. comment on column DBA_SEQUENCES.MAX_VALUE is
  3178. 'Maximum value of the sequence'
  3179. /
  3180. comment on column DBA_SEQUENCES.CYCLE_FLAG is
  3181. 'Does sequence wrap around on reaching limit?'
  3182. /
  3183. comment on column DBA_SEQUENCES.ORDER_FLAG is
  3184. 'Are sequence numbers generated in order?'
  3185. /
  3186. comment on column DBA_SEQUENCES.CACHE_SIZE is
  3187. 'Number of sequence numbers to cache'
  3188. /
  3189. comment on column DBA_SEQUENCES.LAST_NUMBER is
  3190. 'Last sequence number written to disk'
  3191. /
  3192. remark
  3193. remark  FAMILY "SYNONYMS"
  3194. remark  CREATE SYNONYM information.
  3195. remark
  3196. drop view USER_SYNONYMS
  3197. /
  3198. create view USER_SYNONYMS
  3199.     (SYNONYM_NAME, TABLE_OWNER, TABLE_NAME, DB_LINK)
  3200. as select o.name, s.owner, s.name, s.node
  3201. from sys.syn$ s, sys.obj$ o
  3202. where o.obj# = s.obj#
  3203.   and o.type = 5
  3204.   and o.owner# = uid
  3205. /
  3206. comment on table USER_SYNONYMS is
  3207. 'The user''s private synonyms'
  3208. /
  3209. comment on column USER_SYNONYMS.SYNONYM_NAME is
  3210. 'Name of the synonym'
  3211. /
  3212. comment on column USER_SYNONYMS.TABLE_OWNER is
  3213. 'Owner of the object referenced by the synonym'
  3214. /
  3215. comment on column USER_SYNONYMS.TABLE_NAME is
  3216. 'Name of the object referenced by the synonym'
  3217. /
  3218. comment on column USER_SYNONYMS.DB_LINK is
  3219. 'Database link referenced in a remote synonym'
  3220. /
  3221. drop public synonym SYN
  3222. /
  3223. create public synonym SYN for USER_SYNONYMS
  3224. /
  3225. drop public synonym USER_SYNONYMS
  3226. /
  3227. create public synonym USER_SYNONYMS for USER_SYNONYMS
  3228. /
  3229. grant select on USER_SYNONYMS to PUBLIC
  3230. /
  3231. drop view ALL_SYNONYMS
  3232. /
  3233. remark
  3234. remark  This view shows all synonyms owned by the user (private synonyms),
  3235. remark  plus all public synonyms.
  3236. remark
  3237. create view ALL_SYNONYMS
  3238.     (OWNER, SYNONYM_NAME, TABLE_OWNER, TABLE_NAME, DB_LINK)
  3239. as
  3240. select u.name, o.name, s.owner, s.name, s.node
  3241. from sys.user$ u, sys.syn$ s, sys.obj$ o
  3242. where o.obj# = s.obj#
  3243.   and o.type = 5
  3244.   and o.owner# = u.user#
  3245.   and o.owner# in (uid, 1)
  3246. /
  3247. comment on table ALL_SYNONYMS is
  3248. 'All synonyms accessible to the user'
  3249. /
  3250. comment on column ALL_SYNONYMS.OWNER is
  3251. 'Owner of the synonym'
  3252. /
  3253. comment on column ALL_SYNONYMS.SYNONYM_NAME is
  3254. 'Name of the synonym'
  3255. /
  3256. comment on column ALL_SYNONYMS.TABLE_OWNER is
  3257. 'Owner of the object referenced by the synonym'
  3258. /
  3259. comment on column ALL_SYNONYMS.TABLE_NAME is
  3260. 'Name of the object referenced by the synonym'
  3261. /
  3262. comment on column ALL_SYNONYMS.DB_LINK is
  3263. 'Name of the database link referenced in a remote synonym'
  3264. /
  3265. drop public synonym ALL_SYNONYMS
  3266. /
  3267. create public synonym ALL_SYNONYMS for ALL_SYNONYMS
  3268. /
  3269. grant select on ALL_SYNONYMS to PUBLIC
  3270. /
  3271. drop view DBA_SYNONYMS
  3272. /
  3273. create view DBA_SYNONYMS
  3274.     (OWNER, SYNONYM_NAME, TABLE_OWNER, TABLE_NAME, DB_LINK)
  3275. as select u.name, o.name, s.owner, s.name, s.node
  3276. from sys.user$ u, sys.syn$ s, sys.obj$ o
  3277. where o.obj# = s.obj#
  3278.   and o.type = 5
  3279.   and o.owner# = u.user#
  3280. /
  3281. comment on table DBA_SYNONYMS is
  3282. 'All synonyms in the database'
  3283. /
  3284. comment on column DBA_SYNONYMS.OWNER is
  3285. 'Username of the owner of the synonym'
  3286. /
  3287. comment on column DBA_SYNONYMS.SYNONYM_NAME is
  3288. 'Name of the synonym'
  3289. /
  3290. comment on column DBA_SYNONYMS.TABLE_OWNER is
  3291. 'Owner of the object referenced by the synonym'
  3292. /
  3293. comment on column DBA_SYNONYMS.TABLE_NAME is
  3294. 'Name of the object referenced by the synonym'
  3295. /
  3296. comment on column DBA_SYNONYMS.DB_LINK is
  3297. 'Name of the database link referenced in a remote synonym'
  3298. /
  3299. remark
  3300. remark  FAMILY "SYS_AUDIT_OPTS"
  3301. remark  This view is only accessible to DBAs.
  3302. remark  Single row view indicating the current system auditing options.
  3303. remark
  3304. drop view DBA_SYS_AUDIT_OPTS
  3305. /
  3306. create view DBA_SYS_AUDIT_OPTS
  3307.     (CONNECT_ACTION, DBA_ACTION, NOT_EXISTS, RESOURCE_ACTION)
  3308. as
  3309. select decode(substr(t.audit$, 1, 2), 'S-', 'A/-',
  3310.                                       '-S', '-/A',
  3311.                                       'SS', 'A/A',
  3312.                                       '--', '-/-',
  3313.                                       '?'),
  3314.        decode(substr(t.audit$, 3, 2), 'S-', 'A/-',
  3315.                                       '-S', '-/A',
  3316.                                       'SS', 'A/A',
  3317.                                       '--', '-/-',
  3318.                                       '?'),
  3319.        decode(substr(t.audit$, 5, 2), 'S-', 'A/-',
  3320.                                       '-S', '-/A',
  3321.                                       'SS', 'A/A',
  3322.                                       '--', '-/-',
  3323.                                       '?'),
  3324.        decode(substr(t.audit$, 7, 2), 'S-', 'A/-',
  3325.                                       '-S', '-/A',
  3326.                                       'SS', 'A/A',
  3327.                                       '--', '-/-',
  3328.                                       '?')
  3329. from sys.obj$ o, sys.tab$ t
  3330. where o.obj# = t.obj#
  3331.   and o.owner# = 0
  3332.   and o.name = '_system_auditing_options_'
  3333. /
  3334. comment on table DBA_SYS_AUDIT_OPTS is
  3335. 'Describes current system auditing options'
  3336. /
  3337. comment on column DBA_SYS_AUDIT_OPTS.CONNECT_ACTION is
  3338. 'Auditing CONNECT/DISCONNECT actions'
  3339. /
  3340. comment on column DBA_SYS_AUDIT_OPTS.DBA_ACTION is
  3341. 'Auditing actions requiring DBA privilege' 
  3342. /
  3343. comment on column DBA_SYS_AUDIT_OPTS.NOT_EXISTS is
  3344. 'Auditing actions on objects that do NOT EXIST'
  3345. /
  3346. comment on column DBA_SYS_AUDIT_OPTS.RESOURCE_ACTION is
  3347. 'Auditing RESOURCE actions' 
  3348. /
  3349. remark
  3350. remark  FAMILY "TABLES"
  3351. remark  CREATE TABLE parameters.
  3352. remark
  3353. drop view USER_TABLES
  3354. /
  3355. create view USER_TABLES
  3356.     (TABLE_NAME, TABLESPACE_NAME, CLUSTER_NAME,
  3357.      PCT_FREE, PCT_USED,
  3358.      INI_TRANS, MAX_TRANS,
  3359.      INITIAL_EXTENT, NEXT_EXTENT,
  3360.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE,
  3361.      BACKED_UP)
  3362. as
  3363. select o.name, ts.name, co.name,
  3364.        t.pctfree$, t.pctused$,
  3365.        t.initrans, t.maxtrans,
  3366.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  3367.        s.minexts, s.maxexts, s.extpct,
  3368.        decode(t.modified, 0, 'Y', 1, 'N', '?')
  3369. from sys.ts$ ts, sys.seg$ s, sys.obj$ co, sys.tab$ t, sys.obj$ o
  3370. where o.owner# = uid
  3371.   and o.obj# = t.obj#
  3372.   and t.clu# = co.obj# (+)
  3373.   and t.ts# = ts.ts#
  3374.   and t.file# = s.file# (+)
  3375.   and t.block# = s.block# (+)
  3376. /
  3377. comment on table USER_TABLES is
  3378. 'Description of the user''s own tables'
  3379. /
  3380. comment on column USER_TABLES.TABLE_NAME is
  3381. 'Name of the table'
  3382. /
  3383. comment on column USER_TABLES.TABLESPACE_NAME is
  3384. 'Name of the tablespace containing the table'
  3385. /
  3386. comment on column USER_TABLES.CLUSTER_NAME is
  3387. 'Name of the cluster, if any, to which the table belongs'
  3388. /
  3389. comment on column USER_TABLES.PCT_FREE is
  3390. 'Minimum percentage of free space in a block'
  3391. /
  3392. comment on column USER_TABLES.PCT_USED is
  3393. 'Minimum percentage of used space in a block'
  3394. /
  3395. comment on column USER_TABLES.INI_TRANS is
  3396. 'Initial number of transactions'
  3397. /
  3398. comment on column USER_TABLES.MAX_TRANS is
  3399. 'Maximum number of transactions'
  3400. /
  3401. comment on column USER_TABLES.INITIAL_EXTENT is
  3402. 'Size of the initial extent in bytes'
  3403. /
  3404. comment on column USER_TABLES.NEXT_EXTENT is
  3405. 'Size of secondary extents in bytes'
  3406. /
  3407. comment on column USER_TABLES.MIN_EXTENTS is
  3408. 'Minimum number of extents allowed in the segment'
  3409. /
  3410. comment on column USER_TABLES.MAX_EXTENTS is
  3411. 'Maximum number of extents allowed in the segment'
  3412. /
  3413. comment on column USER_TABLES.PCT_INCREASE is
  3414. 'Percentage increase in extent size'
  3415. /
  3416. comment on column USER_TABLES.BACKED_UP is
  3417. 'Has table been backed up since last modification?'
  3418. /
  3419. drop public synonym USER_TABLES
  3420. /
  3421. create public synonym USER_TABLES for USER_TABLES
  3422. /
  3423. drop public synonym TABS
  3424. /
  3425. create public synonym TABS for USER_TABLES
  3426. /
  3427. grant select on USER_TABLES to PUBLIC
  3428. /
  3429. drop view ALL_TABLES
  3430. /
  3431. create view ALL_TABLES
  3432.     (OWNER, TABLE_NAME, TABLESPACE_NAME, CLUSTER_NAME,
  3433.      PCT_FREE, PCT_USED,
  3434.      INI_TRANS, MAX_TRANS,
  3435.      INITIAL_EXTENT, NEXT_EXTENT,
  3436.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE,
  3437.      BACKED_UP)
  3438. as
  3439. select u.name, o.name, ts.name, co.name,
  3440.        t.pctfree$, t.pctused$,
  3441.        t.initrans, t.maxtrans,
  3442.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  3443.        s.minexts, s.maxexts, s.extpct,
  3444.        decode(t.modified, 0, 'Y', 1, 'N', '?')
  3445. from sys.user$ u, sys.ts$ ts, sys.seg$ s, sys.obj$ co, sys.tab$ t, sys.obj$ o
  3446. where o.owner# = u.user#
  3447.   and o.obj# = t.obj#
  3448.   and t.clu# = co.obj# (+)
  3449.   and t.ts# = ts.ts#
  3450.   and t.file# = s.file# (+)
  3451.   and t.block# = s.block# (+)
  3452.   and (o.owner# = uid
  3453.        or o.obj# in
  3454.             (select ta.obj#
  3455.              from sys.tabauth$ ta
  3456.              where ta.grantee# in (uid, 1))
  3457.       )
  3458. /
  3459. comment on table ALL_TABLES is
  3460. 'Description of tables accessible to the user'
  3461. /
  3462. comment on column ALL_TABLES.OWNER is
  3463. 'Owner of the table'
  3464. /
  3465. comment on column ALL_TABLES.TABLE_NAME is
  3466. 'Name of the table'
  3467. /
  3468. comment on column ALL_TABLES.TABLESPACE_NAME is
  3469. 'Name of the tablespace containing the table'
  3470. /
  3471. comment on column ALL_TABLES.CLUSTER_NAME is
  3472. 'Name of the cluster, if any, to which the table belongs'
  3473. /
  3474. comment on column ALL_TABLES.PCT_FREE is
  3475. 'Minimum percentage of free space in a block'
  3476. /
  3477. comment on column ALL_TABLES.PCT_USED is
  3478. 'Minimum percentage of used space in a block'
  3479. /
  3480. comment on column ALL_TABLES.INI_TRANS is
  3481. 'Initial number of transactions'
  3482. /
  3483. comment on column ALL_TABLES.MAX_TRANS is
  3484. 'Maximum number of transactions'
  3485. /
  3486. comment on column ALL_TABLES.INITIAL_EXTENT is
  3487. 'Size of the initial extent in bytes'
  3488. /
  3489. comment on column ALL_TABLES.NEXT_EXTENT is
  3490. 'Size of secondary extents in bytes'
  3491. /
  3492. comment on column ALL_TABLES.MIN_EXTENTS is
  3493. 'Minimum number of extents allowed in the segment'
  3494. /
  3495. comment on column ALL_TABLES.MAX_EXTENTS is
  3496. 'Maximum number of extents allowed in the segment'
  3497. /
  3498. comment on column ALL_TABLES.PCT_INCREASE is
  3499. 'Percentage increase in extent size'
  3500. /
  3501. comment on column ALL_TABLES.BACKED_UP is
  3502. 'Has table been backed up since last modification?'
  3503. /
  3504. drop public synonym ALL_TABLES
  3505. /
  3506. create public synonym ALL_TABLES for ALL_TABLES
  3507. /
  3508. grant select on ALL_TABLES to PUBLIC
  3509. /
  3510. drop view DBA_TABLES
  3511. /
  3512. create view DBA_TABLES
  3513.     (OWNER, TABLE_NAME, TABLESPACE_NAME, CLUSTER_NAME,
  3514.      PCT_FREE, PCT_USED,
  3515.      INI_TRANS, MAX_TRANS,
  3516.      INITIAL_EXTENT, NEXT_EXTENT,
  3517.      MIN_EXTENTS, MAX_EXTENTS, PCT_INCREASE,
  3518.      BACKED_UP)
  3519. as
  3520. select u.name, o.name, ts.name, co.name,
  3521.        t.pctfree$, t.pctused$,
  3522.        t.initrans, t.maxtrans,
  3523.        s.iniexts * ts.blocksize, s.extsize * ts.blocksize,
  3524.        s.minexts, s.maxexts, s.extpct,
  3525.        decode(t.modified, 0, 'Y', 1, 'N', '?')
  3526. from sys.user$ u, sys.ts$ ts, sys.seg$ s, sys.obj$ co, sys.tab$ t, sys.obj$ o
  3527. where o.owner# = u.user#
  3528.   and o.obj# = t.obj#
  3529.   and t.clu# = co.obj# (+)
  3530.   and t.ts# = ts.ts#
  3531.   and t.file# = s.file# (+)
  3532.   and t.block# = s.block# (+)
  3533. /
  3534. comment on table DBA_TABLES is
  3535. 'Description of all tables in the database'
  3536. /
  3537. comment on column DBA_TABLES.OWNER is
  3538. 'Owner of the table'
  3539. /
  3540. comment on column DBA_TABLES.TABLE_NAME is
  3541. 'Name of the table'
  3542. /
  3543. comment on column DBA_TABLES.TABLESPACE_NAME is
  3544. 'Name of the tablespace containing the table'
  3545. /
  3546. comment on column DBA_TABLES.CLUSTER_NAME is
  3547. 'Name of the cluster, if any, to which the table belongs'
  3548. /
  3549. comment on column DBA_TABLES.PCT_FREE is
  3550. 'Minimum percentage of free space in a block'
  3551. /
  3552. comment on column DBA_TABLES.PCT_USED is
  3553. 'Minimum percentage of used space in a block'
  3554. /
  3555. comment on column DBA_TABLES.INI_TRANS is
  3556. 'Initial number of transactions'
  3557. /
  3558. comment on column DBA_TABLES.MAX_TRANS is
  3559. 'Maximum number of transactions'
  3560. /
  3561. comment on column DBA_TABLES.INITIAL_EXTENT is
  3562. 'Size of the initial extent in bytes'
  3563. /
  3564. comment on column DBA_TABLES.NEXT_EXTENT is
  3565. 'Size of secondary extents in bytes'
  3566. /
  3567. comment on column DBA_TABLES.MIN_EXTENTS is
  3568. 'Minimum number of extents allowed in the segment'
  3569. /
  3570. comment on column DBA_TABLES.MAX_EXTENTS is
  3571. 'Maximum number of extents allowed in the segment'
  3572. /
  3573. comment on column DBA_TABLES.PCT_INCREASE is
  3574. 'Percentage increase in extent size'
  3575. /
  3576. comment on column DBA_TABLES.BACKED_UP is
  3577. 'Has table been backed up since last modification?'
  3578. /
  3579. remark
  3580. remark  FAMILY "TABLESPACES"
  3581. remark  CREATE TABLESPACE parameters, except datafiles.
  3582. remark  This family has no ALL member.
  3583. remark
  3584. drop view USER_TABLESPACES
  3585. /
  3586. create view USER_TABLESPACES
  3587.     (TABLESPACE_NAME, INITIAL_EXTENT, NEXT_EXTENT, MIN_EXTENTS,
  3588.      MAX_EXTENTS, PCT_INCREASE,
  3589.      STATUS)
  3590. as select ts.name, ts.blocksize * ts.dflinit,
  3591.                    ts.blocksize * ts.dflincr,
  3592.                    ts.dflminext, ts.dflmaxext, ts.dflextpct,
  3593.           decode(ts.online$, 1, 'ONLINE', 2, 'OFFLINE', 3, 'INVALID',
  3594.                  'UNDEFINED')
  3595. from sys.ts$ ts
  3596. where exists (select null from sys.tsq$ tsq
  3597.               where tsq.ts# = ts.ts#
  3598.                 and tsq.user# = uid)
  3599.      or exists (select null from sys.user$ u
  3600.                 where u.user# = uid
  3601.                   and u.resource$ = 1)
  3602. /
  3603. comment on table USER_TABLESPACES is
  3604. 'Description of accessible tablespaces'
  3605. /
  3606. comment on column USER_TABLESPACES.TABLESPACE_NAME is
  3607. 'Tablespace name'
  3608. /
  3609. comment on column USER_TABLESPACES.INITIAL_EXTENT is
  3610. 'Default initial extent size'
  3611. /
  3612. comment on column USER_TABLESPACES.NEXT_EXTENT is
  3613. 'Default incremental extent size'
  3614. /
  3615. comment on column USER_TABLESPACES.MIN_EXTENTS is
  3616. 'Default minimum number of extents'
  3617. /
  3618. comment on column USER_TABLESPACES.MAX_EXTENTS is
  3619. 'Default maximum number of extents'
  3620. /
  3621. comment on column USER_TABLESPACES.PCT_INCREASE is
  3622. 'Default percent increase for extent size'
  3623. /
  3624. comment on column USER_TABLESPACES.STATUS is
  3625. 'Tablespace status: "ONLINE" or "OFFLINE"'
  3626. /
  3627. drop public synonym USER_TABLESPACES
  3628. /
  3629. create public synonym USER_TABLESPACES for USER_TABLESPACES
  3630. /
  3631. grant select on USER_TABLESPACES to PUBLIC
  3632. /
  3633. drop view DBA_TABLESPACES
  3634. /
  3635. create view DBA_TABLESPACES
  3636.     (TABLESPACE_NAME, INITIAL_EXTENT, NEXT_EXTENT, MIN_EXTENTS,
  3637.      MAX_EXTENTS, PCT_INCREASE,
  3638.      STATUS)
  3639. as select ts.name, ts.blocksize * ts.dflinit,
  3640.           ts.blocksize * ts.dflincr, ts.dflminext,
  3641.           ts.dflmaxext, ts.dflextpct,
  3642.           decode(ts.online$, 1, 'ONLINE', 2, 'OFFLINE', 3, 'INVALID',
  3643.                  'UNDEFINED')
  3644. from sys.ts$ ts
  3645. /
  3646. comment on table DBA_TABLESPACES is
  3647. 'Description of all tablespaces'
  3648. /
  3649. comment on column DBA_TABLESPACES.TABLESPACE_NAME is
  3650. 'Tablespace name'
  3651. /
  3652. comment on column DBA_TABLESPACES.INITIAL_EXTENT is
  3653. 'Default initial extent size'
  3654. /
  3655. comment on column DBA_TABLESPACES.NEXT_EXTENT is
  3656. 'Default incremental extent size'
  3657. /
  3658. comment on column DBA_TABLESPACES.MIN_EXTENTS is
  3659. 'Default minimum number of extents'
  3660. /
  3661. comment on column DBA_TABLESPACES.MAX_EXTENTS is
  3662. 'Default maximum number of extents'
  3663. /
  3664. comment on column DBA_TABLESPACES.PCT_INCREASE is
  3665. 'Default percent increase for extent size'
  3666. /
  3667. comment on column DBA_TABLESPACES.STATUS is
  3668. 'Tablespace status: "ONLINE" or "OFFLINE"'
  3669. /
  3670. remark
  3671. remark  FAMILY "TAB_AUDIT_OPTS"
  3672. remark  Auditing options on objects.  Only "user_" and "dba_" members.
  3673. remark  A user is not allowed to see audit options for other people's objects.
  3674. remark
  3675. remark  These views indicate what kind of audit trail entries (none,
  3676. remark  session-level, or access-level) are generated by the success or failure
  3677. remark  of each possible operation on a table or view (e.g., select, alter).
  3678. remark
  3679. remark  The values in the columns ALT through UPD are three character
  3680. remark  strings like 'A/S', 'A/-'.  The letters 'A', 'S', and '-' correspond to
  3681. remark  different levels of detail called Access, Session and None.  The
  3682. remark  character before the slash determines the auditing level if the action
  3683. remark  is successful.  The character after the slash determines auditing level
  3684. remark  if the operation fails for any reason.
  3685. remark
  3686. remark  This compressed three character format has been chosen to make all
  3687. remark  the information fit on a single line.  The column names are
  3688. remark  three chars long for the same reason.  The alternative is to use long
  3689. remark  column names to improve readability, but 
  3690. remark  serious users can get further documentation using the describe
  3691. remark  column statement.  I do not expect novice users to be looking at audit
  3692. remark  information.  Another alternative is to have separate columns for the
  3693. remark  success and failure settings.  This would eliminate the need to
  3694. remark  use the substr function in views built on top of these views,
  3695. remark  but the advantage to users of making information fit on one line
  3696. remark  overrides the hassle to view-implementors of using the substr function.
  3697. remark
  3698. drop view USER_TAB_AUDIT_OPTS
  3699. /
  3700. create view USER_TAB_AUDIT_OPTS
  3701.     (TABLE_NAME, 
  3702.      TABLE_TYPE,
  3703.      ALT,
  3704.      AUD,
  3705.      COM,
  3706.      DEL,
  3707.      GRA,
  3708.      IND,
  3709.      INS,
  3710.      LOC,
  3711.      REN,
  3712.      SEL,
  3713.      UPD)
  3714. as
  3715. select o.name, 'TABLE',
  3716.        substr(t.audit$, 1, 1) || '/' || substr(t.audit$, 2, 1),
  3717.        substr(t.audit$, 3, 1) || '/' || substr(t.audit$, 4, 1),
  3718.        substr(t.audit$, 5, 1) || '/' || substr(t.audit$, 6, 1),
  3719.        substr(t.audit$, 7, 1) || '/' || substr(t.audit$, 8, 1),
  3720.        substr(t.audit$, 9, 1) || '/' || substr(t.audit$, 10, 1),
  3721.        substr(t.audit$, 11, 1) || '/' || substr(t.audit$, 12, 1),
  3722.        substr(t.audit$, 13, 1) || '/' || substr(t.audit$, 14, 1),
  3723.        substr(t.audit$, 15, 1) || '/' || substr(t.audit$, 16, 1),
  3724.        substr(t.audit$, 17, 1) || '/' || substr(t.audit$, 18, 1),
  3725.        substr(t.audit$, 19, 1) || '/' || substr(t.audit$, 20, 1),
  3726.        substr(t.audit$, 21, 1) || '/' || substr(t.audit$, 22, 1)
  3727. from sys.obj$ o, sys.tab$ t
  3728. where o.type = 2
  3729.   and not (o.owner# = 0
  3730.   and      o.name in ('_default_auditing_options_',
  3731.                       '_system_auditing_options_'))
  3732.   and o.owner# = uid
  3733.   and o.obj# = t.obj#
  3734. union
  3735. select o.name, 'VIEW',
  3736.        substr(v.audit$, 1, 1) || '/' || substr(v.audit$, 2, 1),
  3737.        substr(v.audit$, 3, 1) || '/' || substr(v.audit$, 4, 1),
  3738.        substr(v.audit$, 5, 1) || '/' || substr(v.audit$, 6, 1),
  3739.        substr(v.audit$, 7, 1) || '/' || substr(v.audit$, 8, 1),
  3740.        substr(v.audit$, 9, 1) || '/' || substr(v.audit$, 10, 1),
  3741.        substr(v.audit$, 11, 1) || '/' || substr(v.audit$, 12, 1),
  3742.        substr(v.audit$, 13, 1) || '/' || substr(v.audit$, 14, 1),
  3743.        substr(v.audit$, 15, 1) || '/' || substr(v.audit$, 16, 1),
  3744.        substr(v.audit$, 17, 1) || '/' || substr(v.audit$, 18, 1),
  3745.        substr(v.audit$, 19, 1) || '/' || substr(v.audit$, 20, 1),
  3746.        substr(v.audit$, 21, 1) || '/' || substr(v.audit$, 22, 1)
  3747. from sys.obj$ o, sys.view$ v
  3748. where o.type = 4
  3749.   and o.owner# = uid
  3750.   and o.obj# = v.obj#
  3751. /
  3752. comment on table USER_TAB_AUDIT_OPTS is
  3753. 'Auditing options for user''s own tables and views'
  3754. /
  3755. comment on column USER_TAB_AUDIT_OPTS.TABLE_NAME is
  3756. 'Name of the object'
  3757. /
  3758. comment on column USER_TAB_AUDIT_OPTS.TABLE_TYPE is
  3759. 'Type of the object:  "TABLE" or "VIEW"'
  3760. /
  3761. comment on column USER_TAB_AUDIT_OPTS.ALT is
  3762. 'Auditing ALTER WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3763. /
  3764. comment on column USER_TAB_AUDIT_OPTS.AUD is
  3765. 'Auditing AUDIT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3766. /
  3767. comment on column USER_TAB_AUDIT_OPTS.COM is
  3768. 'Auditing COMMENT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3769. /
  3770. comment on column USER_TAB_AUDIT_OPTS.DEL is
  3771. 'Auditing DELETE WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3772. /
  3773. comment on column USER_TAB_AUDIT_OPTS.GRA is
  3774. 'Auditing GRANT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3775. /
  3776. comment on column USER_TAB_AUDIT_OPTS.IND is
  3777. 'Auditing INDEX WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3778. /
  3779. comment on column USER_TAB_AUDIT_OPTS.INS is
  3780. 'Auditing INSERT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3781. /
  3782. comment on column USER_TAB_AUDIT_OPTS.LOC is
  3783. 'Auditing LOCK WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3784. /
  3785. comment on column USER_TAB_AUDIT_OPTS.REN is
  3786. 'Auditing RENAME WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3787. /
  3788. comment on column USER_TAB_AUDIT_OPTS.SEL is
  3789. 'Auditing SELECT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3790. /
  3791. comment on column USER_TAB_AUDIT_OPTS.UPD is
  3792. 'Auditing UPDATE WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3793. /
  3794. drop public synonym USER_TAB_AUDIT_OPTS
  3795. /
  3796. create public synonym USER_TAB_AUDIT_OPTS for USER_TAB_AUDIT_OPTS
  3797. /
  3798. grant select on USER_TAB_AUDIT_OPTS to PUBLIC
  3799. /
  3800. drop view DBA_TAB_AUDIT_OPTS
  3801. /
  3802. create view DBA_TAB_AUDIT_OPTS
  3803.     (OWNER,
  3804.      TABLE_NAME, 
  3805.      TABLE_TYPE,
  3806.      ALT,
  3807.      AUD,
  3808.      COM,
  3809.      DEL,
  3810.      GRA,
  3811.      IND,
  3812.      INS,
  3813.      LOC,
  3814.      REN,
  3815.      SEL,
  3816.      UPD)
  3817. as
  3818. select u.name, o.name, 'TABLE',
  3819.        substr(t.audit$, 1, 1) || '/' || substr(t.audit$, 2, 1),
  3820.        substr(t.audit$, 3, 1) || '/' || substr(t.audit$, 4, 1),
  3821.        substr(t.audit$, 5, 1) || '/' || substr(t.audit$, 6, 1),
  3822.        substr(t.audit$, 7, 1) || '/' || substr(t.audit$, 8, 1),
  3823.        substr(t.audit$, 9, 1) || '/' || substr(t.audit$, 10, 1),
  3824.        substr(t.audit$, 11, 1) || '/' || substr(t.audit$, 12, 1),
  3825.        substr(t.audit$, 13, 1) || '/' || substr(t.audit$, 14, 1),
  3826.        substr(t.audit$, 15, 1) || '/' || substr(t.audit$, 16, 1),
  3827.        substr(t.audit$, 17, 1) || '/' || substr(t.audit$, 18, 1),
  3828.        substr(t.audit$, 19, 1) || '/' || substr(t.audit$, 20, 1),
  3829.        substr(t.audit$, 21, 1) || '/' || substr(t.audit$, 22, 1)
  3830. from sys.obj$ o, sys.user$ u, sys.tab$ t
  3831. where o.type = 2
  3832.   and not (o.owner# = 0
  3833.   and      o.name in ('_default_auditing_options_',
  3834.                       '_system_auditing_options_'))
  3835.   and o.owner# = u.user#
  3836.   and o.obj# = t.obj#
  3837. union
  3838. select u.name, o.name, 'VIEW',
  3839.        substr(v.audit$, 1, 1) || '/' || substr(v.audit$, 2, 1),
  3840.        substr(v.audit$, 3, 1) || '/' || substr(v.audit$, 4, 1),
  3841.        substr(v.audit$, 5, 1) || '/' || substr(v.audit$, 6, 1),
  3842.        substr(v.audit$, 7, 1) || '/' || substr(v.audit$, 8, 1),
  3843.        substr(v.audit$, 9, 1) || '/' || substr(v.audit$, 10, 1),
  3844.        substr(v.audit$, 11, 1) || '/' || substr(v.audit$, 12, 1),
  3845.        substr(v.audit$, 13, 1) || '/' || substr(v.audit$, 14, 1),
  3846.        substr(v.audit$, 15, 1) || '/' || substr(v.audit$, 16, 1),
  3847.        substr(v.audit$, 17, 1) || '/' || substr(v.audit$, 18, 1),
  3848.        substr(v.audit$, 19, 1) || '/' || substr(v.audit$, 20, 1),
  3849.        substr(v.audit$, 21, 1) || '/' || substr(v.audit$, 22, 1)
  3850. from sys.obj$ o, sys.user$ u, sys.view$ v
  3851. where o.type = 4
  3852.   and o.owner# = u.user#
  3853.   and o.obj# = v.obj#
  3854. /
  3855. comment on table DBA_TAB_AUDIT_OPTS is
  3856. 'Auditing options for all tables and views'
  3857. /
  3858. comment on column DBA_TAB_AUDIT_OPTS.OWNER is
  3859. 'Owner of the object'
  3860. /
  3861. comment on column DBA_TAB_AUDIT_OPTS.TABLE_NAME is
  3862. 'Name of the object'
  3863. /
  3864. comment on column DBA_TAB_AUDIT_OPTS.TABLE_TYPE is
  3865. 'Type of the object'
  3866. /
  3867. comment on column DBA_TAB_AUDIT_OPTS.ALT is
  3868. 'Auditing ALTER WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3869. /
  3870. comment on column DBA_TAB_AUDIT_OPTS.AUD is
  3871. 'Auditing AUDIT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3872. /
  3873. comment on column DBA_TAB_AUDIT_OPTS.COM is
  3874. 'Auditing COMMENT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3875. /
  3876. comment on column DBA_TAB_AUDIT_OPTS.DEL is
  3877. 'Auditing DELETE WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3878. /
  3879. comment on column DBA_TAB_AUDIT_OPTS.GRA is
  3880. 'Auditing GRANT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3881. /
  3882. comment on column DBA_TAB_AUDIT_OPTS.IND is
  3883. 'Auditing INDEX WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3884. /
  3885. comment on column DBA_TAB_AUDIT_OPTS.INS is
  3886. 'Auditing INSERT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3887. /
  3888. comment on column DBA_TAB_AUDIT_OPTS.LOC is
  3889. 'Auditing LOCK WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3890. /
  3891. comment on column DBA_TAB_AUDIT_OPTS.REN is
  3892. 'Auditing RENAME WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3893. /
  3894. comment on column DBA_TAB_AUDIT_OPTS.SEL is
  3895. 'Auditing SELECT WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3896. /
  3897. comment on column DBA_TAB_AUDIT_OPTS.UPD is
  3898. 'Auditing UPDATE WHENEVER SUCCESSFUL / UNSUCCESSFUL'
  3899. /
  3900. remark
  3901. remark  FAMILY "TAB_COLUMNS"
  3902. remark  The columns that make up objects:  Tables, Views, Clusters
  3903. remark  Includes information specified or implied by user in 
  3904. remark  CREATE/ALTER TABLE/VIEW/CLUSTER.
  3905. remark
  3906. drop view USER_TAB_COLUMNS
  3907. /
  3908. create view USER_TAB_COLUMNS
  3909.     (TABLE_NAME,
  3910.      COLUMN_NAME, DATA_TYPE,
  3911.      DATA_LENGTH, DATA_PRECISION, DATA_SCALE, NULLABLE, COLUMN_ID,
  3912.      DEFAULT_LENGTH, DATA_DEFAULT)
  3913. as
  3914. select o.name,
  3915.        c.name,
  3916.        decode(c.type#, 1, 'CHAR',
  3917.                        2, decode(c.scale, null,
  3918.                                  decode(c.precision, null, 'NUMBER', 'FLOAT'),
  3919.                                  'NUMBER'),
  3920.                        8, 'LONG', 9, 'VARCHAR',
  3921.                        12, 'DATE', 23, 'RAW', 24, 'LONG RAW', 
  3922.                        69, 'ROWID', 'UNDEFINED'),
  3923.        c.length, c.precision, c.scale,
  3924.        decode(c.null$, 0, 'Y', 'N'), c.col#, c.deflength, c.default$
  3925. from sys.col$ c, sys.obj$ o
  3926. where o.obj# = c.obj#
  3927.   and o.owner# = uid
  3928.   and o.type in (2, 3, 4)
  3929. /
  3930. comment on table USER_TAB_COLUMNS is
  3931. 'Columns of user''s tables, views and clusters'
  3932. /
  3933. comment on column USER_TAB_COLUMNS.TABLE_NAME is
  3934. 'Table, view or cluster name'
  3935. /
  3936. comment on column USER_TAB_COLUMNS.COLUMN_NAME is
  3937. 'Column name'
  3938. /
  3939. comment on column USER_TAB_COLUMNS.DATA_LENGTH is
  3940. 'Length of the column in bytes'
  3941. /
  3942. comment on column USER_TAB_COLUMNS.DATA_TYPE is
  3943. 'Datatype of the column'
  3944. /
  3945. comment on column USER_TAB_COLUMNS.DATA_PRECISION is
  3946. 'Length: decimal digits (NUMBER) or binary digits (FLOAT)'
  3947. /
  3948. comment on column USER_TAB_COLUMNS.DATA_SCALE is
  3949. 'Digits to right of decimal point in a number'
  3950. /
  3951. comment on column USER_TAB_COLUMNS.NULLABLE is
  3952. 'Does column allow NULL values?'
  3953. /
  3954. comment on column USER_TAB_COLUMNS.COLUMN_ID is
  3955. 'Sequence number of the column as created'
  3956. /
  3957. comment on column USER_TAB_COLUMNS.DEFAULT_LENGTH is
  3958. 'Length of default value for the column'
  3959. /
  3960. comment on column USER_TAB_COLUMNS.DATA_DEFAULT is
  3961. 'Default value for the column'
  3962. /
  3963. drop public synonym USER_TAB_COLUMNS
  3964. /
  3965. create public synonym USER_TAB_COLUMNS for USER_TAB_COLUMNS
  3966. /
  3967. drop public synonym COLS
  3968. /
  3969. create public synonym COLS for USER_TAB_COLUMNS
  3970. /
  3971. grant select on USER_TAB_COLUMNS to PUBLIC
  3972. /
  3973. drop view ACCESSIBLE_COLUMNS
  3974. /
  3975. create view ACCESSIBLE_COLUMNS
  3976.     (OWNER, TABLE_NAME,
  3977.      COLUMN_NAME, 
  3978.      DATA_TYPE,
  3979.      DATA_LENGTH, DATA_PRECISION, DATA_SCALE,
  3980.      NULLABLE, COLUMN_ID, DEFAULT_LENGTH, DATA_DEFAULT)
  3981. as
  3982. select u.name, o.name,
  3983.        c.name,
  3984.        decode(c.type#, 1, 'CHAR',
  3985.                        2, decode(c.scale, null,
  3986.                                  decode(c.precision, null, 'NUMBER', 'FLOAT'),
  3987.                                  'NUMBER'),
  3988.                        8, 'LONG', 9, 'VARCHAR',
  3989.                        12, 'DATE', 23, 'RAW', 24, 'LONG RAW',
  3990.                        69, 'ROWID',  'UNDEFINED'),
  3991.        c.length, c.precision, c.scale,
  3992.        decode(c.null$, 0, 'Y', 'N'), c.col#, c.deflength, c.default$
  3993. from sys.col$ c, sys.obj$ o, sys.user$ u
  3994. where o.obj# = c.obj#
  3995.   and o.owner# = u.user#
  3996.   and o.type in (2, 3, 4)
  3997.   and (o.owner# = uid
  3998.         or
  3999.         o.obj# in ( select obj#
  4000.                     from sys.tabauth$
  4001.                     where grantee# in ( uid, 1 )
  4002.                   )
  4003.        )
  4004. /
  4005. comment on table ACCESSIBLE_COLUMNS is
  4006. 'Columns of all tables, views and clusters'
  4007. /
  4008. comment on column ACCESSIBLE_COLUMNS.OWNER is
  4009. 'Owner of the table, view or cluster'
  4010. /
  4011. comment on column ACCESSIBLE_COLUMNS.TABLE_NAME is
  4012. 'Table, view or cluster name'
  4013. /
  4014. comment on column ACCESSIBLE_COLUMNS.COLUMN_NAME is
  4015. 'Column name'
  4016. /
  4017. comment on column ACCESSIBLE_COLUMNS.DATA_LENGTH is
  4018. 'Length of the column in bytes'
  4019. /
  4020. comment on column ACCESSIBLE_COLUMNS.DATA_TYPE is
  4021. 'Datatype of the column'
  4022. /
  4023. comment on column ACCESSIBLE_COLUMNS.DATA_PRECISION is
  4024. 'Length: decimal digits (NUMBER), binary digits (FLOAT)'
  4025. /
  4026. comment on column ACCESSIBLE_COLUMNS.DATA_SCALE is
  4027. 'Digits to right of decimal point in a number'
  4028. /
  4029. comment on column ACCESSIBLE_COLUMNS.NULLABLE is
  4030. 'Does column allow NULL values?'
  4031. /
  4032. comment on column ACCESSIBLE_COLUMNS.COLUMN_ID is
  4033. 'Sequence number of the column as created'
  4034. /
  4035. comment on column ACCESSIBLE_COLUMNS.DEFAULT_LENGTH is
  4036. 'Length of default value for the column'
  4037. /
  4038. comment on column ACCESSIBLE_COLUMNS.DATA_DEFAULT is
  4039. 'Default value for the column'
  4040. /
  4041. drop public synonym ACCESSIBLE_COLUMNS
  4042. /
  4043. create public synonym ACCESSIBLE_COLUMNS for ACCESSIBLE_COLUMNS
  4044. /
  4045. drop public synonym ALL_TAB_COLUMNS
  4046. /
  4047. create public synonym ALL_TAB_COLUMNS for ACCESSIBLE_COLUMNS
  4048. /
  4049. grant select on ACCESSIBLE_COLUMNS to PUBLIC
  4050. /
  4051. drop view DBA_TAB_COLUMNS
  4052. /
  4053. create view DBA_TAB_COLUMNS
  4054.     (OWNER, TABLE_NAME,
  4055.      COLUMN_NAME,
  4056.      DATA_TYPE,
  4057.      DATA_LENGTH, DATA_PRECISION, DATA_SCALE,
  4058.      NULLABLE, COLUMN_ID, DEFAULT_LENGTH, DATA_DEFAULT)
  4059. as
  4060. select u.name, o.name,
  4061.        c.name,
  4062.        decode(c.type#, 1, 'CHAR',
  4063.                        2, decode(c.scale, null,
  4064.                                  decode(c.precision, null, 'NUMBER', 'FLOAT'),
  4065.                                  'NUMBER'),
  4066.                        8, 'LONG', 9, 'VARCHAR',
  4067.                        12, 'DATE', 23, 'RAW', 24, 'LONG RAW',
  4068.                        69, 'ROWID',  'UNDEFINED'),
  4069.        c.length, c.precision, c.scale,
  4070.        decode(c.null$, 0, 'Y', 'N'), c.col#, c.deflength, c.default$
  4071. from sys.col$ c, sys.obj$ o, sys.user$ u
  4072. where o.obj# = c.obj#
  4073.   and o.owner# = u.user#
  4074.   and o.type in (2, 3, 4)
  4075. /
  4076. comment on table DBA_TAB_COLUMNS is
  4077. 'Columns of all tables, views and clusters'
  4078. /
  4079. comment on column DBA_TAB_COLUMNS.OWNER is
  4080. 'Owner of the table, view or cluster'
  4081. /
  4082. comment on column DBA_TAB_COLUMNS.TABLE_NAME is
  4083. 'Table, view or cluster name'
  4084. /
  4085. comment on column DBA_TAB_COLUMNS.COLUMN_NAME is
  4086. 'Column name'
  4087. /
  4088. comment on column DBA_TAB_COLUMNS.DATA_LENGTH is
  4089. 'Length of the column in bytes'
  4090. /
  4091. comment on column DBA_TAB_COLUMNS.DATA_TYPE is
  4092. 'Datatype of the column'
  4093. /
  4094. comment on column DBA_TAB_COLUMNS.DATA_PRECISION is
  4095. 'Length: decimal digits (NUMBER), binary digits (FLOAT)'
  4096. /
  4097. comment on column DBA_TAB_COLUMNS.DATA_SCALE is
  4098. 'Digits to right of decimal point in a number'
  4099. /
  4100. comment on column DBA_TAB_COLUMNS.NULLABLE is
  4101. 'Does column allow NULL values?'
  4102. /
  4103. comment on column DBA_TAB_COLUMNS.COLUMN_ID is
  4104. 'Sequence number of the column as created'
  4105. /
  4106. comment on column DBA_TAB_COLUMNS.DEFAULT_LENGTH is
  4107. 'Length of default value for the column'
  4108. /
  4109. comment on column DBA_TAB_COLUMNS.DATA_DEFAULT is
  4110. 'Default value for the column'
  4111. /
  4112. remark
  4113. remark  FAMILY "TAB_COMMENTS"
  4114. remark  Comments on objects.
  4115. remark
  4116. drop view USER_TAB_COMMENTS
  4117. /
  4118. create view USER_TAB_COMMENTS
  4119.     (TABLE_NAME,
  4120.      TABLE_TYPE,
  4121.      COMMENTS)
  4122. as
  4123. select o.name,
  4124.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  4125.                       4, 'VIEW', 5, 'SYNONYM', 'UNDEFINED'),
  4126.        c.comment$
  4127. from sys.obj$ o, sys.com$ c
  4128. where o.owner# = uid
  4129.   and o.type in (2, 4)
  4130.   and o.obj# = c.obj#(+)
  4131.   and c.col#(+) is null
  4132. /
  4133. comment on table USER_TAB_COMMENTS is
  4134. 'Comments on the tables and views owned by the user'
  4135. /
  4136. comment on column USER_TAB_COMMENTS.TABLE_NAME is
  4137. 'Name of the object'
  4138. /
  4139. comment on column USER_TAB_COMMENTS.TABLE_TYPE is
  4140. 'Type of the object:  "TABLE" or "VIEW"'
  4141. /
  4142. comment on column USER_TAB_COMMENTS.COMMENTS is
  4143. 'Comment on the object'
  4144. /
  4145. drop public synonym USER_TAB_COMMENTS
  4146. /
  4147. create public synonym USER_TAB_COMMENTS for USER_TAB_COMMENTS
  4148. /
  4149. grant select on USER_TAB_COMMENTS to PUBLIC
  4150. /
  4151. drop view ALL_TAB_COMMENTS
  4152. /
  4153. create view ALL_TAB_COMMENTS
  4154.     (OWNER, TABLE_NAME,
  4155.      TABLE_TYPE,
  4156.      COMMENTS)
  4157. as
  4158. select u.name, o.name,
  4159.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  4160.                       4, 'VIEW', 5, 'SYNONYM', 'UNDEFINED'),
  4161.        c.comment$
  4162. from sys.obj$ o, sys.user$ u, sys.com$ c
  4163. where o.owner# = u.user#
  4164.   and o.obj# = c.obj#(+)
  4165.   and c.col#(+) is null
  4166.   and o.type in (2, 4)
  4167.   and (o.owner# = uid
  4168.         or
  4169.         o.obj# in ( select obj#
  4170.                     from sys.tabauth$
  4171.                     where grantee# in ( uid, 1 )
  4172.                   )
  4173.        )
  4174. /
  4175. comment on table ALL_TAB_COMMENTS is
  4176. 'Comments on tables and views accessible to the user'
  4177. /
  4178. comment on column ALL_TAB_COMMENTS.OWNER is
  4179. 'Owner of the object'
  4180. /
  4181. comment on column ALL_TAB_COMMENTS.TABLE_NAME is
  4182. 'Name of the object'
  4183. /
  4184. comment on column ALL_TAB_COMMENTS.TABLE_TYPE is
  4185. 'Type of the object'
  4186. /
  4187. comment on column ALL_TAB_COMMENTS.COMMENTS is
  4188. 'Comment on the object'
  4189. /
  4190. drop public synonym ALL_TAB_COMMENTS
  4191. /
  4192. create public synonym ALL_TAB_COMMENTS for ALL_TAB_COMMENTS
  4193. /
  4194. grant select on ALL_TAB_COMMENTS to PUBLIC
  4195. /
  4196. drop view DBA_TAB_COMMENTS
  4197. /
  4198. create view DBA_TAB_COMMENTS
  4199.     (OWNER, TABLE_NAME,
  4200.      TABLE_TYPE,
  4201.      COMMENTS)
  4202. as
  4203. select u.name, o.name,
  4204.        decode(o.type, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
  4205.                       4, 'VIEW', 5, 'SYNONYM', 'UNDEFINED'),
  4206.        c.comment$
  4207. from sys.obj$ o, sys.user$ u, sys.com$ c
  4208. where o.owner# = u.user#
  4209.   and o.type in (2, 4)
  4210.   and o.obj# = c.obj#(+)
  4211.   and c.col#(+) is null
  4212. /
  4213. comment on table DBA_TAB_COMMENTS is
  4214. 'Comments on all tables and views in the database'
  4215. /
  4216. comment on column DBA_TAB_COMMENTS.OWNER is
  4217. 'Owner of the object'
  4218. /
  4219. comment on column DBA_TAB_COMMENTS.TABLE_NAME is
  4220. 'Name of the object'
  4221. /
  4222. comment on column DBA_TAB_COMMENTS.TABLE_TYPE is
  4223. 'Type of the object'
  4224. /
  4225. comment on column DBA_TAB_COMMENTS.COMMENTS is
  4226. 'Comment on the object'
  4227. /
  4228. remark
  4229. remark  FAMILY "TAB_GRANTS"
  4230. remark  Grants on objects.
  4231. remark
  4232. drop view USER_TAB_GRANTS
  4233. /
  4234. create view USER_TAB_GRANTS
  4235.       (GRANTEE, OWNER, TABLE_NAME, GRANTOR,
  4236.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4237.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4238.        CREATED)
  4239. as
  4240. select ue.name, u.name, o.name, ur.name,
  4241.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4242.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4243.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4244.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4245.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4246.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4247.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4248.        ta.time
  4249. from sys.tabauth$ ta, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  4250. where ta.obj# = o.obj#
  4251.   and ta.grantor# = ur.user#
  4252.   and ta.grantee# = ue.user#
  4253.   and u.user# = o.owner#
  4254.   and uid in (ta.grantor#, ta.grantee#, o.owner#)
  4255. /
  4256. comment on table USER_TAB_GRANTS is
  4257. 'Grants on objects for which the user is the owner, grantor or grantee'
  4258. /
  4259. comment on column USER_TAB_GRANTS.GRANTEE is
  4260. 'Name of the user to whom access was granted'
  4261. /
  4262. comment on column USER_TAB_GRANTS.OWNER is
  4263. 'Owner of the object'
  4264. /
  4265. comment on column USER_TAB_GRANTS.TABLE_NAME is
  4266. 'Name of the object'
  4267. /
  4268. comment on column USER_TAB_GRANTS.GRANTOR is
  4269. 'Name of the user who performed the grant'
  4270. /
  4271. comment on column USER_TAB_GRANTS.SELECT_PRIV is
  4272. 'Permission to SELECT from the object?'
  4273. /
  4274. comment on column USER_TAB_GRANTS.INSERT_PRIV is
  4275. 'Permission to INSERT into the object?'
  4276. /
  4277. comment on column USER_TAB_GRANTS.DELETE_PRIV is
  4278. 'Permission to DELETE from the object?'
  4279. /
  4280. comment on column USER_TAB_GRANTS.UPDATE_PRIV is
  4281. 'Permission to UPDATE the object?'
  4282. /
  4283. comment on column USER_TAB_GRANTS.REFERENCES_PRIV is
  4284. 'Permission to make REFERENCES to the object?'
  4285. /
  4286. comment on column USER_TAB_GRANTS.ALTER_PRIV is
  4287. 'Permission to ALTER the object?'
  4288. /
  4289. comment on column USER_TAB_GRANTS.INDEX_PRIV is
  4290. 'Permission to create/drop an INDEX on the object?'
  4291. /
  4292. comment on column USER_TAB_GRANTS.CREATED is
  4293. 'Timestamp for the grant'
  4294. /
  4295. drop public synonym USER_TAB_GRANTS
  4296. /
  4297. create public synonym USER_TAB_GRANTS for USER_TAB_GRANTS
  4298. /
  4299. grant select on USER_TAB_GRANTS to PUBLIC
  4300. /
  4301. drop view TABLE_PRIVILEGES
  4302. /
  4303. create view TABLE_PRIVILEGES
  4304.       (GRANTEE, OWNER, TABLE_NAME, GRANTOR,
  4305.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4306.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4307.        CREATED)
  4308. as
  4309. select ue.name, u.name, o.name, ur.name,
  4310.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4311.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4312.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4313.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4314.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4315.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4316.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4317.        ta.time
  4318. from sys.tabauth$ ta, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  4319. where ta.obj# = o.obj#
  4320.   and ta.grantor# = ur.user#
  4321.   and ta.grantee# = ue.user#
  4322.   and u.user# = o.owner#
  4323.   and (uid in (ta.grantor#, ta.grantee#, o.owner#)
  4324.    or  ta.grantee# = 1)
  4325. /
  4326. comment on table TABLE_PRIVILEGES is
  4327. 'Grants on objects for which the user is the grantor, grantee, or owner, or PUBLIC is the grantee'
  4328. /
  4329. comment on column TABLE_PRIVILEGES.GRANTEE is
  4330. 'Name of the user to whom access was granted'
  4331. /
  4332. comment on column TABLE_PRIVILEGES.OWNER is
  4333. 'Owner of the object'
  4334. /
  4335. comment on column TABLE_PRIVILEGES.TABLE_NAME is
  4336. 'Name of the object'
  4337. /
  4338. comment on column TABLE_PRIVILEGES.GRANTOR is
  4339. 'Name of the user who performed the grant'
  4340. /
  4341. comment on column TABLE_PRIVILEGES.SELECT_PRIV is
  4342. 'Permission to SELECT from the object?'
  4343. /
  4344. comment on column TABLE_PRIVILEGES.INSERT_PRIV is
  4345. 'Permission to INSERT into the object?'
  4346. /
  4347. comment on column TABLE_PRIVILEGES.DELETE_PRIV is
  4348. 'Permission to DELETE from the object?'
  4349. /
  4350. comment on column TABLE_PRIVILEGES.UPDATE_PRIV is
  4351. 'Permission to UPDATE the object?'
  4352. /
  4353. comment on column TABLE_PRIVILEGES.REFERENCES_PRIV is
  4354. 'Permission to make REFERENCES to the object?'
  4355. /
  4356. comment on column TABLE_PRIVILEGES.ALTER_PRIV is
  4357. 'Permission to ALTER the object?'
  4358. /
  4359. comment on column TABLE_PRIVILEGES.INDEX_PRIV is
  4360. 'Permission to create/drop an INDEX on the object?'
  4361. /
  4362. comment on column TABLE_PRIVILEGES.CREATED is
  4363. 'Timestamp for the grant'
  4364. /
  4365. drop public synonym TABLE_PRIVILEGES
  4366. /
  4367. create public synonym TABLE_PRIVILEGES for TABLE_PRIVILEGES
  4368. /
  4369. drop public synonym ALL_TAB_GRANTS
  4370. /
  4371. create public synonym ALL_TAB_GRANTS for TABLE_PRIVILEGES
  4372. /
  4373. grant select on TABLE_PRIVILEGES to PUBLIC
  4374. /
  4375. drop view DBA_TAB_GRANTS
  4376. /
  4377. create view DBA_TAB_GRANTS
  4378.       (GRANTEE, OWNER, TABLE_NAME, GRANTOR,
  4379.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4380.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4381.        CREATED)
  4382. as
  4383. select ue.name, u.name, o.name, ur.name,
  4384.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4385.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4386.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4387.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4388.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4389.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4390.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4391.        ta.time
  4392. from sys.tabauth$ ta, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  4393. where ta.obj# = o.obj#
  4394.   and ta.grantor# = ur.user#
  4395.   and ta.grantee# = ue.user#
  4396.   and u.user# = o.owner#
  4397. /
  4398. comment on table DBA_TAB_GRANTS is
  4399. 'All grants on objects in the database'
  4400. /
  4401. comment on column DBA_TAB_GRANTS.GRANTEE is
  4402. 'User to whom access was granted'
  4403. /
  4404. comment on column DBA_TAB_GRANTS.OWNER is
  4405. 'Owner of the object'
  4406. /
  4407. comment on column DBA_TAB_GRANTS.TABLE_NAME is
  4408. 'Name of the object'
  4409. /
  4410. comment on column DBA_TAB_GRANTS.GRANTOR is
  4411. 'Name of the user who performed the grant'
  4412. /
  4413. comment on column DBA_TAB_GRANTS.SELECT_PRIV is
  4414. 'Permission to SELECT from the object?'
  4415. /
  4416. comment on column DBA_TAB_GRANTS.INSERT_PRIV is
  4417. 'Permission to INSERT into the object?'
  4418. /
  4419. comment on column DBA_TAB_GRANTS.DELETE_PRIV is
  4420. 'Permission to DELETE from the object?'
  4421. /
  4422. comment on column DBA_TAB_GRANTS.UPDATE_PRIV is
  4423. 'Permission to UPDATE the object?'
  4424. /
  4425. comment on column DBA_TAB_GRANTS.REFERENCES_PRIV is
  4426. 'Permission to make REFERENCES to the object?'
  4427. /
  4428. comment on column DBA_TAB_GRANTS.ALTER_PRIV is
  4429. 'Permission to ALTER the object?'
  4430. /
  4431. comment on column DBA_TAB_GRANTS.INDEX_PRIV is
  4432. 'Permission to create/drop an INDEX on the object?'
  4433. /
  4434. comment on column DBA_TAB_GRANTS.CREATED is
  4435. 'Timestamp for the grant'
  4436. /
  4437. remark
  4438. remark  FAMILY "TAB_GRANTS_MADE"
  4439. remark  Grants made on objects.
  4440. remark  This family has no DBA member.
  4441. remark
  4442. drop view USER_TAB_GRANTS_MADE
  4443. /
  4444. create view USER_TAB_GRANTS_MADE
  4445.       (GRANTEE, TABLE_NAME, GRANTOR,
  4446.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4447.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4448.        CREATED)
  4449. as
  4450. select ue.name, o.name, ur.name,
  4451.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4452.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4453.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4454.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4455.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4456.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4457.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4458.        ta.time
  4459. from sys.tabauth$ ta, sys.obj$ o, sys.user$ ue, sys.user$ ur
  4460. where ta.obj# = o.obj#
  4461.   and ta.grantor# = ur.user#
  4462.   and ta.grantee# = ue.user#
  4463.   and o.owner# = uid
  4464. /
  4465. comment on table USER_TAB_GRANTS_MADE is
  4466. 'All grants on objects owned by the user'
  4467. /
  4468. comment on column USER_TAB_GRANTS_MADE.GRANTEE is
  4469. 'Name of the user to whom access was granted'
  4470. /
  4471. comment on column USER_TAB_GRANTS_MADE.TABLE_NAME is
  4472. 'Name of the object'
  4473. /
  4474. comment on column USER_TAB_GRANTS_MADE.GRANTOR is
  4475. 'Name of the user who performed the grant'
  4476. /
  4477. comment on column USER_TAB_GRANTS_MADE.SELECT_PRIV is
  4478. 'Permission to SELECT from the object?'
  4479. /
  4480. comment on column USER_TAB_GRANTS_MADE.INSERT_PRIV is
  4481. 'Permission to INSERT into the object?'
  4482. /
  4483. comment on column USER_TAB_GRANTS_MADE.DELETE_PRIV is
  4484. 'Permission to DELETE from the object?'
  4485. /
  4486. comment on column USER_TAB_GRANTS_MADE.UPDATE_PRIV is
  4487. 'Permission to UPDATE the object?'
  4488. /
  4489. comment on column USER_TAB_GRANTS_MADE.REFERENCES_PRIV is
  4490. 'Permission to make REFERENCES to the object?'
  4491. /
  4492. comment on column USER_TAB_GRANTS_MADE.ALTER_PRIV is
  4493. 'Permission to ALTER the object?'
  4494. /
  4495. comment on column USER_TAB_GRANTS_MADE.INDEX_PRIV is
  4496. 'Permission to CREATE/DROP INDEX on the object?'
  4497. /
  4498. comment on column USER_TAB_GRANTS_MADE.CREATED is
  4499. 'Timestamp for the grant'
  4500. /
  4501. drop public synonym USER_TAB_GRANTS_MADE
  4502. /
  4503. create public synonym USER_TAB_GRANTS_MADE for USER_TAB_GRANTS_MADE
  4504. /
  4505. grant select on USER_TAB_GRANTS_MADE to PUBLIC
  4506. /
  4507. drop view ALL_TAB_GRANTS_MADE
  4508. /
  4509. create view ALL_TAB_GRANTS_MADE
  4510.       (GRANTEE, OWNER, TABLE_NAME, GRANTOR,
  4511.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4512.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4513.        CREATED)
  4514. as
  4515. select ue.name, u.name, o.name, ur.name,
  4516.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4517.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4518.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4519.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4520.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4521.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4522.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4523.        ta.time
  4524. from sys.tabauth$ ta, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  4525. where ta.obj# = o.obj#
  4526.   and ta.grantor# = ur.user#
  4527.   and ta.grantee# = ue.user#
  4528.   and u.user# = o.owner#
  4529.   and uid in (o.owner#, ta.grantor#)
  4530. /
  4531. comment on table ALL_TAB_GRANTS_MADE is
  4532. 'User''s grants and grants on user''s objects'
  4533. /
  4534. comment on column ALL_TAB_GRANTS_MADE.GRANTEE is
  4535. 'Name of the user to whom access was granted'
  4536. /
  4537. comment on column ALL_TAB_GRANTS_MADE.OWNER is
  4538. 'Owner of the object'
  4539. /
  4540. comment on column ALL_TAB_GRANTS_MADE.TABLE_NAME is
  4541. 'Name of the object'
  4542. /
  4543. comment on column ALL_TAB_GRANTS_MADE.GRANTOR is
  4544. 'Name of the user who performed the grant'
  4545. /
  4546. comment on column ALL_TAB_GRANTS_MADE.SELECT_PRIV is
  4547. 'Permission to SELECT from the object?'
  4548. /
  4549. comment on column ALL_TAB_GRANTS_MADE.INSERT_PRIV is
  4550. 'Permission to INSERT into the object?'
  4551. /
  4552. comment on column ALL_TAB_GRANTS_MADE.DELETE_PRIV is
  4553. 'Permission to DELETE from the object?'
  4554. /
  4555. comment on column ALL_TAB_GRANTS_MADE.UPDATE_PRIV is
  4556. 'Permission to UPDATE the object?'
  4557. /
  4558. comment on column ALL_TAB_GRANTS_MADE.REFERENCES_PRIV is
  4559. 'Permission to make REFERENCES to the object?'
  4560. /
  4561. comment on column ALL_TAB_GRANTS_MADE.ALTER_PRIV is
  4562. 'Permission to ALTER the object?'
  4563. /
  4564. comment on column ALL_TAB_GRANTS_MADE.INDEX_PRIV is
  4565. 'Permission to CREATE/DROP INDEX on the object?'
  4566. /
  4567. comment on column ALL_TAB_GRANTS_MADE.CREATED is
  4568. 'Timestamp for the grant'
  4569. /
  4570. drop public synonym ALL_TAB_GRANTS_MADE
  4571. /
  4572. create public synonym ALL_TAB_GRANTS_MADE for ALL_TAB_GRANTS_MADE
  4573. /
  4574. grant select on ALL_TAB_GRANTS_MADE to PUBLIC
  4575. /
  4576. remark
  4577. remark  FAMILY "TAB_GRANTS_RECD"
  4578. remark  Grants received on objects.
  4579. remark  This family has no DBA member.
  4580. remark
  4581. drop view USER_TAB_GRANTS_RECD
  4582. /
  4583. create view USER_TAB_GRANTS_RECD
  4584.       (OWNER, TABLE_NAME, GRANTOR,
  4585.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4586.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4587.        CREATED)
  4588. as
  4589. select u.name, o.name, ur.name,
  4590.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4591.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4592.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4593.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4594.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4595.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4596.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4597.        ta.time
  4598. from sys.tabauth$ ta, sys.obj$ o, sys.user$ u, sys.user$ ur
  4599. where ta.obj# = o.obj#
  4600.   and ta.grantor# = ur.user#
  4601.   and u.user# = o.owner#
  4602.   and ta.grantee# = uid
  4603. /
  4604. comment on table USER_TAB_GRANTS_RECD is
  4605. 'Grants on objects for which the user is the grantee'
  4606. /
  4607. comment on column USER_TAB_GRANTS_RECD.OWNER is
  4608. 'Owner of the object'
  4609. /
  4610. comment on column USER_TAB_GRANTS_RECD.TABLE_NAME is
  4611. 'Name of the object'
  4612. /
  4613. comment on column USER_TAB_GRANTS_RECD.GRANTOR is
  4614. 'Name of the user who performed the grant'
  4615. /
  4616. comment on column USER_TAB_GRANTS_RECD.SELECT_PRIV is
  4617. 'Permission to SELECT from the object?'
  4618. /
  4619. comment on column USER_TAB_GRANTS_RECD.INSERT_PRIV is
  4620. 'Permission to INSERT into the object?'
  4621. /
  4622. comment on column USER_TAB_GRANTS_RECD.DELETE_PRIV is
  4623. 'Permission to DELETE from the object?'
  4624. /
  4625. comment on column USER_TAB_GRANTS_RECD.UPDATE_PRIV is
  4626. 'Permission to UPDATE the object?'
  4627. /
  4628. comment on column USER_TAB_GRANTS_RECD.REFERENCES_PRIV is
  4629. 'Permission to make REFERENCES to the object?'
  4630. /
  4631. comment on column USER_TAB_GRANTS_RECD.ALTER_PRIV is
  4632. 'Permission to ALTER the object?'
  4633. /
  4634. comment on column USER_TAB_GRANTS_RECD.INDEX_PRIV is
  4635. 'Permission to create/drop an INDEX on the object?'
  4636. /
  4637. comment on column USER_TAB_GRANTS_RECD.CREATED is
  4638. 'Timestamp for the grant'
  4639. /
  4640. drop public synonym USER_TAB_GRANTS_RECD
  4641. /
  4642. create public synonym USER_TAB_GRANTS_RECD for USER_TAB_GRANTS_RECD
  4643. /
  4644. grant select on USER_TAB_GRANTS_RECD to PUBLIC
  4645. /
  4646. drop view ALL_TAB_GRANTS_RECD
  4647. /
  4648. create view ALL_TAB_GRANTS_RECD
  4649.       (GRANTEE, OWNER, TABLE_NAME, GRANTOR,
  4650.        SELECT_PRIV, INSERT_PRIV, DELETE_PRIV, 
  4651.        UPDATE_PRIV, REFERENCES_PRIV, ALTER_PRIV, INDEX_PRIV,
  4652.        CREATED)
  4653. as
  4654. select ue.name, u.name, o.name, ur.name,
  4655.        decode(ta.select$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4656.        decode(ta.insert$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4657.        decode(ta.delete$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4658.        decode(ta.update$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4659.        decode(ta.references$, 0, 'N', 1, 'S', 2, 'A', 3, 'G', '?'),
  4660.        decode(ta.alter$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4661.        decode(ta.index$, 0, 'N', 2, 'Y', 3, 'G', '?'),
  4662.        ta.time
  4663. from sys.tabauth$ ta, sys.obj$ o, sys.user$ u, sys.user$ ur, sys.user$ ue
  4664. where ta.obj# = o.obj#
  4665.   and ta.grantor# = ur.user#
  4666.   and ta.grantee# = ue.user#
  4667.   and u.user# = o.owner#
  4668.   and ta.grantee# in (uid, 1)
  4669. /
  4670. comment on table ALL_TAB_GRANTS_RECD is
  4671. 'Grants on objects for which the user or PUBLIC is the grantee'
  4672. /
  4673. comment on column ALL_TAB_GRANTS_RECD.GRANTEE is
  4674. 'Name of the user to whom access was granted'
  4675. /
  4676. comment on column ALL_TAB_GRANTS_RECD.OWNER is
  4677. 'Owner of the object'
  4678. /
  4679. comment on column ALL_TAB_GRANTS_RECD.TABLE_NAME is
  4680. 'Name of the object'
  4681. /
  4682. comment on column ALL_TAB_GRANTS_RECD.GRANTOR is
  4683. 'Name of the user who performed the grant'
  4684. /
  4685. comment on column ALL_TAB_GRANTS_RECD.SELECT_PRIV is
  4686. 'Permission to SELECT from the object?'
  4687. /
  4688. comment on column ALL_TAB_GRANTS_RECD.INSERT_PRIV is
  4689. 'Permission to INSERT into the object?'
  4690. /
  4691. comment on column ALL_TAB_GRANTS_RECD.DELETE_PRIV is
  4692. 'Permission to DELETE from the object?'
  4693. /
  4694. comment on column ALL_TAB_GRANTS_RECD.UPDATE_PRIV is
  4695. 'Permission to UPDATE the object?'
  4696. /
  4697. comment on column ALL_TAB_GRANTS_RECD.REFERENCES_PRIV is
  4698. 'Permission to make REFERENCES to the object?'
  4699. /
  4700. comment on column ALL_TAB_GRANTS_RECD.ALTER_PRIV is
  4701. 'Permission to ALTER the object?'
  4702. /
  4703. comment on column ALL_TAB_GRANTS_RECD.INDEX_PRIV is
  4704. 'Permission to create/drop an INDEX on the object?'
  4705. /
  4706. comment on column ALL_TAB_GRANTS_RECD.CREATED is
  4707. 'Timestamp for the grant'
  4708. /
  4709. drop public synonym ALL_TAB_GRANTS_RECD
  4710. /
  4711. create public synonym ALL_TAB_GRANTS_RECD for ALL_TAB_GRANTS_RECD
  4712. /
  4713. grant select on ALL_TAB_GRANTS_RECD to PUBLIC
  4714. /
  4715. remark
  4716. remark  FAMILY "TS_QUOTAS"
  4717. remark  Tablespace quotas for users.
  4718. remark  This family has no ALL member.
  4719. remark
  4720. drop view USER_TS_QUOTAS
  4721. /
  4722. create view USER_TS_QUOTAS
  4723.     (TABLESPACE_NAME, BYTES, MAX_BYTES, BLOCKS, MAX_BLOCKS)
  4724. as
  4725. select ts.name, q.blocks * ts.blocksize,
  4726.        q.maxblocks * ts.blocksize,
  4727.        q.blocks, q.maxblocks
  4728. from sys.tsq$ q, sys.ts$ ts
  4729. where q.ts# = ts.ts#
  4730.   and q.user# = uid
  4731. /
  4732. comment on table USER_TS_QUOTAS is
  4733. 'Tablespace quotas for the user'
  4734. /
  4735. comment on column USER_TS_QUOTAS.TABLESPACE_NAME is
  4736. 'Tablespace name'
  4737. /
  4738. comment on column USER_TS_QUOTAS.BLOCKS is
  4739. 'Number of ORACLE blocks charged to the user'
  4740. /
  4741. comment on column USER_TS_QUOTAS.MAX_BLOCKS is
  4742. 'User''s quota in ORACLE blocks.  NULL if no limit'
  4743. /
  4744. comment on column USER_TS_QUOTAS.BYTES is
  4745. 'Number of bytes charged to the user'
  4746. /
  4747. comment on column USER_TS_QUOTAS.MAX_BYTES is
  4748. 'User''s quota in bytes.  NULL if no limit'
  4749. /
  4750. drop public synonym USER_TS_QUOTAS
  4751. /
  4752. create public synonym USER_TS_QUOTAS for USER_TS_QUOTAS
  4753. /
  4754. grant select on USER_TS_QUOTAS to PUBLIC
  4755. /
  4756. drop view DBA_TS_QUOTAS
  4757. /
  4758. create view DBA_TS_QUOTAS
  4759.     (TABLESPACE_NAME, USERNAME, BYTES, MAX_BYTES, BLOCKS, MAX_BLOCKS)
  4760. as
  4761. select ts.name, u.name, 
  4762.        q.blocks * ts.blocksize, q.maxblocks * ts.blocksize,
  4763.        q.blocks, q.maxblocks
  4764. from sys.tsq$ q, sys.ts$ ts, sys.user$ u
  4765. where q.ts# = ts.ts#
  4766.   and q.user# = u.user#
  4767. /
  4768. comment on table DBA_TS_QUOTAS is
  4769. 'Tablespace quotas for all users'
  4770. /
  4771. comment on column DBA_TS_QUOTAS.TABLESPACE_NAME is
  4772. 'Tablespace name'
  4773. /
  4774. comment on column DBA_TS_QUOTAS.USERNAME is
  4775. 'User with resource rights on the tablespace'
  4776. /
  4777. comment on column DBA_TS_QUOTAS.BLOCKS is
  4778. 'Number of ORACLE blocks charged to the user'
  4779. /
  4780. comment on column DBA_TS_QUOTAS.MAX_BLOCKS is
  4781. 'User''s quota in ORACLE blocks.  NULL if no limit'
  4782. /
  4783. comment on column DBA_TS_QUOTAS.BYTES is
  4784. 'Number of bytes charged to the user'
  4785. /
  4786. comment on column DBA_TS_QUOTAS.MAX_BYTES is
  4787. 'User''s quota in bytes.  NULL if no limit'
  4788. /
  4789. remark
  4790. remark  FAMILY "USERS"
  4791. remark  Users enrolled in the database.
  4792. remark
  4793. drop view USER_USERS
  4794. /
  4795. create view USER_USERS
  4796.     (USERNAME, USER_ID,
  4797.      CONNECT_PRIV, RESOURCE_PRIV, DBA_PRIV,
  4798.      DEFAULT_TABLESPACE, TEMPORARY_TABLESPACE, CREATED, EXPIRES)
  4799. as
  4800. select u.name, u.user#,
  4801.        u.connect$, u.resource$, u.dba$,
  4802.        dts.name, tts.name, u.ctime, u.ptime
  4803. from sys.user$ u, sys.ts$ dts, sys.ts$ tts
  4804. where u.datats# = dts.ts#
  4805.   and u.tempts# = tts.ts#
  4806.   and u.user# = uid
  4807. /
  4808. comment on table USER_USERS is
  4809. 'Information about the current user'
  4810. /
  4811. comment on column USER_USERS.USERNAME is
  4812. 'Name of the user'
  4813. /
  4814. comment on column USER_USERS.USER_ID is
  4815. 'ID number of the user'
  4816. /
  4817. comment on column USER_USERS.CONNECT_PRIV is
  4818. 'Does user have CONNECT privilege?'
  4819. /
  4820. comment on column USER_USERS.RESOURCE_PRIV is
  4821. 'Does user have RESOURCE privilege?'
  4822. /
  4823. comment on column USER_USERS.DBA_PRIV is
  4824. 'Does user have DBA Privilege?'
  4825. /
  4826. comment on column USER_USERS.DEFAULT_TABLESPACE is
  4827. 'Default tablespace for data'
  4828. /
  4829. comment on column USER_USERS.TEMPORARY_TABLESPACE is
  4830. 'Default tablespace for temporary tables'
  4831. /
  4832. comment on column USER_USERS.CREATED is
  4833. 'User creation date'
  4834. /
  4835. comment on column USER_USERS.EXPIRES is
  4836. 'Password expiration date'
  4837. /
  4838. drop public synonym USER_USERS
  4839. /
  4840. create public synonym USER_USERS for USER_USERS
  4841. /
  4842. drop public synonym MYPRIVS
  4843. /
  4844. create public synonym MYPRIVS for USER_USERS
  4845. /
  4846. grant select on USER_USERS to PUBLIC
  4847. /
  4848. drop view ALL_USERS
  4849. /
  4850. create view ALL_USERS
  4851.     (USERNAME, USER_ID,
  4852.      /*   CONNECT_PRIV, RESOURCE_PRIV, DBA_PRIV,
  4853.      DEFAULT_TABLESPACE, TEMPORARY_TABLESPACE, */  CREATED)
  4854. as
  4855. select u.name, u.user#,
  4856.        /* u.connect$, u.resource$, u.dba$, 
  4857.        dts.name, tts.name, */   u.ctime
  4858. from sys.user$ u, sys.ts$ dts, sys.ts$ tts
  4859. where u.datats# = dts.ts#
  4860.   and u.tempts# = tts.ts#
  4861. /
  4862. comment on table ALL_USERS is
  4863. 'Information about all users of the database'
  4864. /
  4865. comment on column ALL_USERS.USERNAME is
  4866. 'Name of the user'
  4867. /
  4868. comment on column ALL_USERS.USER_ID is
  4869. 'ID number of the user'
  4870. /
  4871. remark comment on column ALL_USERS.CONNECT_PRIV is
  4872. remark 'Does the user have CONNECT privilege?'
  4873. remark /
  4874. remark comment on column ALL_USERS.RESOURCE_PRIV is
  4875. remark 'Does the user have RESOURCE privilege?'
  4876. remark /
  4877. remark comment on column ALL_USERS.DBA_PRIV is
  4878. remark 'Does the user have DBA privilege?'
  4879. remark /
  4880. remark comment on column ALL_USERS.DEFAULT_TABLESPACE is
  4881. remark 'Default tablespace for data'
  4882. remark /
  4883. remark comment on column ALL_USERS.TEMPORARY_TABLESPACE is
  4884. remark 'Default tablespace for temporary tables'
  4885. remark /
  4886. comment on column ALL_USERS.CREATED is
  4887. 'User creation date'
  4888. /
  4889. drop public synonym ALL_USERS
  4890. /
  4891. create public synonym ALL_USERS for ALL_USERS
  4892. /
  4893. grant select on ALL_USERS to PUBLIC
  4894. /
  4895. drop view DBA_USERS
  4896. /
  4897. create view DBA_USERS
  4898.     (USERNAME, USER_ID, PASSWORD,
  4899.      CONNECT_PRIV, RESOURCE_PRIV, DBA_PRIV,
  4900.      DEFAULT_TABLESPACE, TEMPORARY_TABLESPACE, CREATED, EXPIRES)
  4901. as
  4902. select u.name, u.user#, u.password,
  4903.        u.connect$, u.resource$, u.dba$,
  4904.        dts.name, tts.name, u.ctime, u.ptime
  4905. from sys.user$ u, sys.ts$ dts, sys.ts$ tts
  4906. where u.datats# = dts.ts#
  4907.   and u.tempts# = tts.ts#
  4908. /
  4909. comment on table DBA_USERS is
  4910. 'Information about all users of the database'
  4911. /
  4912. comment on column DBA_USERS.USERNAME is
  4913. 'Name of the user'
  4914. /
  4915. comment on column DBA_USERS.USER_ID is
  4916. 'ID number of the user'
  4917. /
  4918. comment on column DBA_USERS.PASSWORD is
  4919. 'Encrypted password'
  4920. /
  4921. comment on column DBA_USERS.CONNECT_PRIV is
  4922. 'Does the user have CONNECT privilege?'
  4923. /
  4924. comment on column DBA_USERS.RESOURCE_PRIV is
  4925. 'Does the user have RESOURCE privilege?'
  4926. /
  4927. comment on column DBA_USERS.DBA_PRIV is
  4928. 'Does the user have DBA privilege?'
  4929. /
  4930. comment on column DBA_USERS.DEFAULT_TABLESPACE is
  4931. 'Default tablespace for data'
  4932. /
  4933. comment on column DBA_USERS.TEMPORARY_TABLESPACE is
  4934. 'Default tablespace for temporary tables'
  4935. /
  4936. comment on column DBA_USERS.CREATED is
  4937. 'User creation date'
  4938. /
  4939. comment on column DBA_USERS.EXPIRES is
  4940. 'Password expiration date'
  4941. /
  4942. remark
  4943. remark  FAMILY "VIEWS"
  4944. remark  All relevant information about views, except columns.
  4945. remark
  4946. drop view USER_VIEWS
  4947. /
  4948. create view USER_VIEWS
  4949.     (VIEW_NAME, TEXT_LENGTH, TEXT)
  4950. as
  4951. select o.name, v.textlength, v.text
  4952. from sys.obj$ o, sys.view$ v
  4953. where o.obj# = v.obj#
  4954.   and o.owner# = uid
  4955. /
  4956. comment on table USER_VIEWS is
  4957. 'Text of views owned by the user'
  4958. /
  4959. comment on column USER_VIEWS.VIEW_NAME is
  4960. 'Name of the view'
  4961. /
  4962. comment on column USER_VIEWS.TEXT_LENGTH is
  4963. 'Length of the view text'
  4964. /
  4965. comment on column USER_VIEWS.TEXT is
  4966. 'View text'
  4967. /
  4968. drop public synonym USER_VIEWS
  4969. /
  4970. create public synonym USER_VIEWS for USER_VIEWS
  4971. /
  4972. grant select on USER_VIEWS to PUBLIC
  4973. /
  4974. drop view ALL_VIEWS
  4975. /
  4976. create view ALL_VIEWS
  4977.     (OWNER, VIEW_NAME, TEXT_LENGTH, TEXT)
  4978. as
  4979. select u.name, o.name, v.textlength, v.text
  4980. from sys.obj$ o, sys.view$ v, sys.user$ u
  4981. where o.obj# = v.obj#
  4982.   and o.owner# = u.user#
  4983.   and (o.owner# = uid
  4984.        or o.obj# in
  4985.             (select ta.obj#
  4986.              from sys.tabauth$ ta
  4987.              where ta.grantee# in (uid, 1))
  4988.       )
  4989. /
  4990. comment on table ALL_VIEWS is
  4991. 'Text of views accessible to the user'
  4992. /
  4993. comment on column ALL_VIEWS.OWNER is
  4994. 'Owner of the view'
  4995. /
  4996. comment on column ALL_VIEWS.VIEW_NAME is
  4997. 'Name of the view'
  4998. /
  4999. comment on column ALL_VIEWS.TEXT_LENGTH is
  5000. 'Length of the view text'
  5001. /
  5002. comment on column ALL_VIEWS.TEXT is
  5003. 'View text'
  5004. /
  5005. drop public synonym ALL_VIEWS
  5006. /
  5007. create public synonym ALL_VIEWS for ALL_VIEWS
  5008. /
  5009. grant select on ALL_VIEWS to PUBLIC
  5010. /
  5011. drop view DBA_VIEWS
  5012. /
  5013. create view DBA_VIEWS
  5014.     (OWNER, VIEW_NAME, TEXT_LENGTH, TEXT)
  5015. as
  5016. select u.name, o.name, v.textlength, v.text
  5017. from sys.obj$ o, sys.view$ v, sys.user$ u
  5018. where o.obj# = v.obj#
  5019.   and o.owner# = u.user#
  5020. /
  5021. comment on table DBA_VIEWS is
  5022. 'Text of all views in the database'
  5023. /
  5024. comment on column DBA_VIEWS.OWNER is
  5025. 'Owner of the view'
  5026. /
  5027. comment on column DBA_VIEWS.VIEW_NAME is
  5028. 'Name of the view'
  5029. /
  5030. comment on column DBA_VIEWS.TEXT_LENGTH is
  5031. 'Length of the view text'
  5032. /
  5033. comment on column DBA_VIEWS.TEXT is
  5034. 'View text'
  5035. /
  5036. remark
  5037. remark  FAMILY "CONSTRAINTS"
  5038. remark
  5039. drop view USER_CONSTRAINTS
  5040. /
  5041. create view USER_CONSTRAINTS (OWNER, CONSTRAINT_NAME, CONSTRAINT_TYPE,
  5042.                               TABLE_NAME, SEARCH_CONDITION, R_OWNER,
  5043.                               R_CONSTRAINT_NAME)
  5044. as
  5045. select ou.name, oc.name,
  5046.        decode(c.type, 1, 'C', 2, 'P', 3, 'U', 4, 'R', 5, 'V', 6, 'RL', 7, 'RS',
  5047.               '?'),
  5048.        o.name, c.condition, ru.name, rc.name
  5049. from sys.con$ oc, sys.con$ rc, sys.user$ ou, sys.user$ ru,
  5050.      sys.obj$ o, sys.cdef$ c
  5051. where oc.owner# = ou.user#
  5052.   and oc.con# = c.con#
  5053.   and c.obj# = o.obj#
  5054.   and c.rcon# = rc.con#(+)
  5055.   and rc.owner# = ru.user#(+)
  5056.   and o.owner# = uid
  5057. /
  5058. comment on table USER_CONSTRAINTS is
  5059. 'Constraint definitions on accessible tables'
  5060. /
  5061. comment on column USER_CONSTRAINTS.OWNER is
  5062. 'Owner of the table'
  5063. /
  5064. comment on column USER_CONSTRAINTS.CONSTRAINT_NAME is
  5065. 'Name associated with constraint definition'
  5066. /
  5067. comment on column USER_CONSTRAINTS.CONSTRAINT_TYPE is
  5068. 'Type of constraint definition'
  5069. /
  5070. comment on column USER_CONSTRAINTS.TABLE_NAME is
  5071. 'Name associated with table with constraint definition'
  5072. /
  5073. comment on column USER_CONSTRAINTS.SEARCH_CONDITION is
  5074. 'Text of search condition for table check'
  5075. /
  5076. comment on column USER_CONSTRAINTS.R_OWNER is
  5077. 'Owner of table used in referential constraint'
  5078. /
  5079. comment on column USER_CONSTRAINTS.R_CONSTRAINT_NAME is
  5080. 'Name of unique constraint definition for referenced table'
  5081. /
  5082. grant select on USER_CONSTRAINTS to public
  5083. /
  5084. drop public synonym USER_CONSTRAINTS
  5085. /
  5086. create public synonym USER_CONSTRAINTS for USER_CONSTRAINTS
  5087. /
  5088. drop view ALL_CONSTRAINTS
  5089. /
  5090. create view ALL_CONSTRAINTS (OWNER, CONSTRAINT_NAME, CONSTRAINT_TYPE,
  5091.                              TABLE_NAME, SEARCH_CONDITION, R_OWNER,
  5092.                              R_CONSTRAINT_NAME)
  5093. as
  5094. select ou.name, oc.name,
  5095.        decode(c.type, 1, 'C', 2, 'P', 3, 'U', 4, 'R', 5, 'V', 6, 'RL', 7, 'RS',
  5096.               '?'),
  5097.        o.name, c.condition, ru.name, rc.name
  5098. from sys.con$ oc, sys.con$ rc, sys.user$ ou, sys.user$ ru,
  5099.      sys.obj$ o, sys.cdef$ c
  5100. where oc.owner# = ou.user#
  5101.   and oc.con# = c.con#
  5102.   and c.obj# = o.obj#
  5103.   and c.rcon# = rc.con#(+)
  5104.   and rc.owner# = ru.user#(+)
  5105.   and (o.owner# = uid
  5106.        or o.obj# in (select obj#
  5107.                      from sys.tabauth$
  5108.                      where grantee# in (1,uid)
  5109.                     )
  5110.       )
  5111. /
  5112. comment on table ALL_CONSTRAINTS is
  5113. 'Constraint definitions on accessible tables'
  5114. /
  5115. comment on column ALL_CONSTRAINTS.OWNER is
  5116. 'Owner of the table'
  5117. /
  5118. comment on column ALL_CONSTRAINTS.CONSTRAINT_NAME is
  5119. 'Name associated with constraint definition'
  5120. /
  5121. comment on column ALL_CONSTRAINTS.CONSTRAINT_TYPE is
  5122. 'Type of constraint definition'
  5123. /
  5124. comment on column ALL_CONSTRAINTS.TABLE_NAME is
  5125. 'Name associated with table with constraint definition'
  5126. /
  5127. comment on column ALL_CONSTRAINTS.SEARCH_CONDITION is
  5128. 'Text of search condition for table check'
  5129. /
  5130. comment on column ALL_CONSTRAINTS.R_OWNER is
  5131. 'Owner of table used in referential constraint'
  5132. /
  5133. comment on column ALL_CONSTRAINTS.R_CONSTRAINT_NAME is
  5134. 'Name of unique constraint definition for referenced table'
  5135. /
  5136. grant select on ALL_CONSTRAINTS to public
  5137. /
  5138. drop public synonym ALL_CONSTRAINTS
  5139. /
  5140. create public synonym ALL_CONSTRAINTS for ALL_CONSTRAINTS
  5141. /
  5142. drop view DBA_CONSTRAINTS
  5143. /
  5144. create view DBA_CONSTRAINTS (OWNER, CONSTRAINT_NAME, CONSTRAINT_TYPE,
  5145.                              TABLE_NAME, SEARCH_CONDITION, R_OWNER,
  5146.                              R_CONSTRAINT_NAME)
  5147. as
  5148. select ou.name, oc.name,
  5149.        decode(c.type, 1, 'C', 2, 'P', 3, 'U', 4, 'R', 5, 'V', 6, 'RL', 7, 'RS',
  5150.               '?'),
  5151.        o.name, c.condition, ru.name, rc.name
  5152. from sys.con$ oc, sys.con$ rc, sys.user$ ou, sys.user$ ru,
  5153.      sys.obj$ o, sys.cdef$ c
  5154. where oc.owner# = ou.user#
  5155.   and oc.con# = c.con#
  5156.   and c.obj# = o.obj#
  5157.   and c.rcon# = rc.con#(+)
  5158.   and rc.owner# = ru.user#(+)
  5159. /
  5160. comment on table DBA_CONSTRAINTS is
  5161. 'Constraint definitions on accessible tables'
  5162. /
  5163. comment on column DBA_CONSTRAINTS.OWNER is
  5164. 'Owner of the table'
  5165. /
  5166. comment on column DBA_CONSTRAINTS.CONSTRAINT_NAME is
  5167. 'Name associated with constraint definition'
  5168. /
  5169. comment on column DBA_CONSTRAINTS.CONSTRAINT_TYPE is
  5170. 'Type of constraint definition'
  5171. /
  5172. comment on column DBA_CONSTRAINTS.TABLE_NAME is
  5173. 'Name associated with table with constraint definition'
  5174. /
  5175. comment on column DBA_CONSTRAINTS.SEARCH_CONDITION is
  5176. 'Text of search condition for table check'
  5177. /
  5178. comment on column DBA_CONSTRAINTS.R_OWNER is
  5179. 'Owner of table used in referential constraint'
  5180. /
  5181. comment on column DBA_CONSTRAINTS.R_CONSTRAINT_NAME is
  5182. 'Name of unique constraint definition for referenced table'
  5183. /
  5184. drop public synonym DBA_CONSTRAINTS
  5185. /
  5186. create public synonym DBA_CONSTRAINTS for DBA_CONSTRAINTS
  5187. /
  5188. remark
  5189. remark  FAMILY "CONS_COLUMNS"
  5190. remark
  5191. drop view USER_CONS_COLUMNS
  5192. /
  5193. create view USER_CONS_COLUMNS (OWNER, CONSTRAINT_NAME, TABLE_NAME, COLUMN_NAME,
  5194.                                POSITION)
  5195. as
  5196. select u.name, c.name, o.name, col.name, cc.pos#
  5197. from sys.user$ u, sys.con$ c, sys.col$ col, sys.ccol$ cc, sys.cdef$ cd,
  5198.      sys.obj$ o
  5199. where c.owner# = u.user#
  5200.   and c.con# = cd.con#
  5201.   and cd.con# = cc.con#
  5202.   and cc.obj# = col.obj#
  5203.   and cc.col# = col.col#
  5204.   and cc.obj# = o.obj#
  5205.   and c.owner# = uid
  5206. /
  5207. comment on table USER_CONS_COLUMNS is
  5208. 'Information about accessible columns in constraint definitions'
  5209. /
  5210. comment on column USER_CONS_COLUMNS.OWNER is
  5211. 'Owner of the constraint definition'
  5212. /
  5213. comment on column USER_CONS_COLUMNS.CONSTRAINT_NAME is
  5214. 'Name associated with the constraint definition'
  5215. /
  5216. comment on column USER_CONS_COLUMNS.TABLE_NAME is
  5217. 'Name associated with table with constraint definition'
  5218. /
  5219. comment on column USER_CONS_COLUMNS.COLUMN_NAME is
  5220. 'Name associated with column specified in the constraint definition'
  5221. /
  5222. comment on column USER_CONS_COLUMNS.POSITION is
  5223. 'Original position of column in definition'
  5224. /
  5225. grant select on USER_CONS_COLUMNS to public
  5226. /
  5227. drop public synonym USER_CONS_COLUMNS
  5228. /
  5229. create public synonym USER_CONS_COLUMNS for USER_CONS_COLUMNS
  5230. /
  5231. drop view ALL_CONS_COLUMNS
  5232. /
  5233. create view ALL_CONS_COLUMNS (OWNER, CONSTRAINT_NAME, TABLE_NAME, COLUMN_NAME,
  5234.                               POSITION)
  5235. as
  5236. select u.name, c.name, o.name, col.name, cc.pos#
  5237. from sys.user$ u, sys.con$ c, sys.col$ col, sys.ccol$ cc, sys.cdef$ cd,
  5238.      sys.obj$ o
  5239. where c.owner# = u.user#
  5240.   and c.con# = cd.con#
  5241.   and cd.con# = cc.con#
  5242.   and cc.obj# = col.obj#
  5243.   and cc.col# = col.col#
  5244.   and cc.obj# = o.obj#
  5245.   and (c.owner# = uid
  5246.        or cd.obj# in (select obj#
  5247.                       from sys.tabauth$
  5248.                       where grantee# in (1,uid)
  5249.                      )
  5250.       )
  5251. /
  5252. comment on table ALL_CONS_COLUMNS is
  5253. 'Information about accessible columns in constraint definitions'
  5254. /
  5255. comment on column ALL_CONS_COLUMNS.OWNER is
  5256. 'Owner of the constraint definition'
  5257. /
  5258. comment on column ALL_CONS_COLUMNS.CONSTRAINT_NAME is
  5259. 'Name associated with the constraint definition'
  5260. /
  5261. comment on column ALL_CONS_COLUMNS.TABLE_NAME is
  5262. 'Name associated with table with constraint definition'
  5263. /
  5264. comment on column ALL_CONS_COLUMNS.COLUMN_NAME is
  5265. 'Name associated with column specified in the constraint definition'
  5266. /
  5267. comment on column ALL_CONS_COLUMNS.POSITION is
  5268. 'Original position of column in definition'
  5269. /
  5270. grant select on ALL_CONS_COLUMNS to public
  5271. /
  5272. drop public synonym ALL_CONS_COLUMNS
  5273. /
  5274. create public synonym ALL_CONS_COLUMNS for ALL_CONS_COLUMNS
  5275. /
  5276. drop view DBA_CONS_COLUMNS
  5277. /
  5278. create view DBA_CONS_COLUMNS (OWNER, CONSTRAINT_NAME, TABLE_NAME, COLUMN_NAME,
  5279.                               POSITION)
  5280. as
  5281. select u.name, c.name, o.name, col.name, cc.pos#
  5282. from sys.user$ u, sys.con$ c, sys.col$ col, sys.ccol$ cc, sys.cdef$ cd,
  5283.      sys.obj$ o
  5284. where c.owner# = u.user#
  5285.   and c.con# = cd.con#
  5286.   and cd.con# = cc.con#
  5287.   and cc.obj# = col.obj#
  5288.   and cc.col# = col.col#
  5289.   and cc.obj# = o.obj#
  5290. /
  5291. comment on table DBA_CONS_COLUMNS is
  5292. 'Information about accessible columns in constraint definitions'
  5293. /
  5294. comment on column DBA_CONS_COLUMNS.OWNER is
  5295. 'Owner of the constraint definition'
  5296. /
  5297. comment on column DBA_CONS_COLUMNS.CONSTRAINT_NAME is
  5298. 'Name associated with the constraint definition'
  5299. /
  5300. comment on column DBA_CONS_COLUMNS.TABLE_NAME is
  5301. 'Name associated with table with constraint definition'
  5302. /
  5303. comment on column DBA_CONS_COLUMNS.COLUMN_NAME is
  5304. 'Name associated with column specified in the constraint definition'
  5305. /
  5306. comment on column DBA_CONS_COLUMNS.POSITION is
  5307. 'Original position of column in definition'
  5308. /
  5309. drop public synonym DBA_CONS_COLUMNS
  5310. /
  5311. create public synonym DBA_CONS_COLUMNS for DBA_CONS_COLUMNS
  5312. /
  5313. remark
  5314. remark  FAMILY "CONSTRAINT VIEWS" FOR ANSI
  5315. remark
  5316. drop view CONSTRAINT_DEFS
  5317. /
  5318. create view CONSTRAINT_DEFS (OWNER, CONSTRAINT_NAME, CONSTRAINT_TYPE,
  5319.                              TABLE_NAME, SEARCH_CONDITION, R_OWNER,
  5320.                              R_CONSTRAINT_NAME)
  5321. as
  5322. select ou.name, oc.name,
  5323.        decode(c.type, 1, 'C', 2, 'P', 3, 'U', 4, 'R', 5, 'V', 6, 'RL', 7, 'RS',
  5324.               '?'),
  5325.        o.name, c.condition, ru.name, rc.name
  5326. from sys.con$ oc, sys.con$ rc, sys.user$ ou, sys.user$ ru,
  5327.      sys.obj$ o, sys.cdef$ c
  5328. where oc.owner# = ou.user#
  5329.   and oc.con# = c.con#
  5330.   and c.obj# = o.obj#
  5331.   and c.rcon# = rc.con#(+)
  5332.   and rc.owner# = ru.user#(+)
  5333.   and (o.owner# = uid
  5334.        or o.obj# in (select obj#
  5335.                      from sys.tabauth$
  5336.                      where grantee# in (1,uid)
  5337.                     )
  5338.       )
  5339. /
  5340. comment on table CONSTRAINT_DEFS is
  5341. 'Constraint Definitions on accessible tables'
  5342. /
  5343. comment on column CONSTRAINT_DEFS.OWNER is
  5344. 'Owner of the table'
  5345. /
  5346. comment on column CONSTRAINT_DEFS.CONSTRAINT_NAME is
  5347. 'Name associated with constraint definition'
  5348. /
  5349. comment on column CONSTRAINT_DEFS.CONSTRAINT_TYPE is
  5350. 'Type of constraint definition'
  5351. /
  5352. comment on column CONSTRAINT_DEFS.TABLE_NAME is
  5353. 'Name associated with table with constraint definition'
  5354. /
  5355. comment on column CONSTRAINT_DEFS.SEARCH_CONDITION is
  5356. 'Text of search condition for table check'
  5357. /
  5358. comment on column CONSTRAINT_DEFS.R_OWNER is
  5359. 'Owner of table used in referential constraint'
  5360. /
  5361. comment on column CONSTRAINT_DEFS.R_CONSTRAINT_NAME is
  5362. 'Name of unique constraint definition for referenced table'
  5363. /
  5364. grant select on CONSTRAINT_DEFS to public
  5365. /
  5366. drop public synonym CONSTRAINT_DEFS
  5367. /
  5368. create public synonym CONSTRAINT_DEFS for CONSTRAINT_DEFS
  5369. /
  5370. drop view CONSTRAINT_COLUMNS
  5371. /
  5372. create view CONSTRAINT_COLUMNS (OWNER, CONSTRAINT_NAME, COLUMN_NAME,
  5373.                                 POSITION)
  5374. as
  5375. select u.name, c.name, col.name, cc.pos#
  5376. from sys.user$ u, sys.con$ c, sys.col$ col, sys.ccol$ cc, sys.cdef$ cd
  5377. where c.owner# = u.user#
  5378.   and c.con# = cd.con#
  5379.   and cd.type in (2,3,4)
  5380.   and cd.con# = cc.con#
  5381.   and cc.obj# = col.obj#
  5382.   and cc.col# = col.col#
  5383.   and (c.owner# = uid
  5384.        or cd.obj# in (select obj#
  5385.               from sys.tabauth$
  5386.               where grantee# in (1,uid)
  5387.              )
  5388.       )
  5389. /
  5390. comment on table CONSTRAINT_COLUMNS is
  5391. 'Information about accessible columns in constraint definitions'
  5392. /
  5393. comment on column CONSTRAINT_COLUMNS.OWNER is
  5394. 'Owner of the constraint definition'
  5395. /
  5396. comment on column CONSTRAINT_COLUMNS.CONSTRAINT_NAME is
  5397. 'Name associated with the constraint definition'
  5398. /
  5399. comment on column CONSTRAINT_COLUMNS.COLUMN_NAME is
  5400. 'Name associated with column specified in the constraint definition'
  5401. /
  5402. comment on column CONSTRAINT_COLUMNS.POSITION is
  5403. 'Original position of column in definition'
  5404. /
  5405. grant select on CONSTRAINT_COLUMNS to public
  5406. /
  5407. drop public synonym CONSTRAINT_COLUMNS
  5408. /
  5409. create public synonym CONSTRAINT_COLUMNS for CONSTRAINT_COLUMNS
  5410. /
  5411. remark
  5412. remark    FAMILY "FIXED (VIRTUAL) VIEWS"
  5413. remark               
  5414. drop view v_$process;
  5415. create view v_$process as select * from v$process;
  5416. drop public synonym v$process;
  5417. create public synonym v$process for v_$process;
  5418.  
  5419. drop view v_$bgprocess;
  5420. create view v_$bgprocess as select * from v$bgprocess;
  5421. drop public synonym v$bgprocess;
  5422. create public synonym v$bgprocess for v_$bgprocess;
  5423.  
  5424. drop view v_$session;
  5425. create view v_$session as select * from v$session;
  5426. drop public synonym v$session;
  5427. create public synonym v$session for v_$session;
  5428.  
  5429. drop view v_$transaction;
  5430. create view v_$transaction as select * from v$transaction;
  5431. drop public synonym v$transaction;
  5432. create public synonym v$transaction for v_$transaction;
  5433.  
  5434. drop view v_$latch;
  5435. create view v_$latch as select * from v$latch;
  5436. drop public synonym v$latch;
  5437. create public synonym v$latch for v_$latch;
  5438.  
  5439. drop view v_$latchname;
  5440. create view v_$latchname as select * from v$latchname;
  5441. drop public synonym v$latchname;
  5442. create public synonym v$latchname for v_$latchname;
  5443.  
  5444. drop view v_$latchholder;
  5445. create view v_$latchholder as select * from v$latchholder;
  5446. drop public synonym v$latchholder;
  5447. create public synonym v$latchholder for v_$latchholder;
  5448.  
  5449. drop view v_$resource;
  5450. create view v_$resource as select * from v$resource;
  5451. drop public synonym v$resource;
  5452. create public synonym v$resource for v_$resource;
  5453.  
  5454. drop view v_$_lock;
  5455. create view v_$_lock as select * from v$_lock;
  5456. drop public synonym v$_lock;
  5457. create public synonym v$_lock for v_$_lock;
  5458.  
  5459. drop view v_$lock;
  5460. create view v_$lock as select * from v$lock;
  5461. drop public synonym v$lock;
  5462. create public synonym v$lock for v_$lock;
  5463.  
  5464. drop view v_$sesstat;
  5465. create view v_$sesstat as select * from v$sesstat;
  5466. drop public synonym v$sesstat;
  5467. create public synonym v$sesstat for v_$sesstat;
  5468.  
  5469. drop view v_$sysstat;
  5470. create view v_$sysstat as select * from v$sysstat;
  5471. drop public synonym v$sysstat;
  5472. create public synonym v$sysstat for v_$sysstat;
  5473.  
  5474. drop view v_$statname;
  5475. create view v_$statname as select * from v$statname;
  5476. drop public synonym v$statname;
  5477. create public synonym v$statname for v_$statname;
  5478.  
  5479. drop view v_$access;
  5480. create view v_$access as select * from v$access;
  5481. drop public synonym v$access;
  5482. create public synonym v$access for v_$access;
  5483.  
  5484. drop view v_$dbfile;
  5485. create view v_$dbfile as select * from v$dbfile;
  5486. drop public synonym v$dbfile;
  5487. create public synonym v$dbfile for v_$dbfile;
  5488.  
  5489. drop view v_$filestat;
  5490. create view v_$filestat as select * from v$filestat;
  5491. drop public synonym v$filestat;
  5492. create public synonym v$filestat for v_$filestat;
  5493.  
  5494. drop view v_$logfile;
  5495. create view v_$logfile as select * from v$logfile;
  5496. drop public synonym v$logfile;
  5497. create public synonym v$logfile for v_$logfile;
  5498.  
  5499. drop view v_$rollname;
  5500. create view v_$rollname as select * from v$rollname;
  5501. drop public synonym v$rollname;
  5502. create public synonym v$rollname for v_$rollname;
  5503.  
  5504. drop view v_$rollstat;
  5505. create view v_$rollstat as select * from v$rollstat;
  5506. drop public synonym v$rollstat;
  5507. create public synonym v$rollstat for v_$rollstat;
  5508.  
  5509. drop view v_$sga;
  5510. create view v_$sga as select * from v$sga;
  5511. drop public synonym v$sga;
  5512. create public synonym v$sga for v_$sga;
  5513.  
  5514. drop view v_$parameter;
  5515. create view v_$parameter as select * from v$parameter;
  5516. drop public synonym v$parameter;
  5517. create public synonym v$parameter for v_$parameter;
  5518.  
  5519. drop view v_$rowcache;
  5520. create view v_$rowcache as select * from v$rowcache;
  5521. drop public synonym v$rowcache;
  5522. create public synonym v$rowcache for v_$rowcache;
  5523.  
  5524. rem 
  5525. rem V5 views required for other Oracle products
  5526. rem
  5527.  
  5528. drop view syscatalog_;
  5529. create view syscatalog_ (tname, creator, creatorid, tabletype)
  5530.   as
  5531.   select o.name, u.name, o.owner#,
  5532.          decode(o.type, 2, 'TABLE', 4, 'VIEW', 6, 'SEQUENCE','?')
  5533.   from    sys.user$ u, sys.obj$ o
  5534.   where u.user# = o.owner#
  5535.     and    o.type in (2, 4, 6)
  5536.     and ( o.owner# = uid
  5537.         or o.obj# in
  5538.            (select tau.obj#
  5539.         from   sys.tabauth$ tau
  5540.         where  tau.grantee# in (uid, 1)
  5541.             )
  5542.     )
  5543. /
  5544. drop view syscatalog;
  5545. create view syscatalog (tname, creator, tabletype) as
  5546.   select tname, creator, tabletype
  5547.   from syscatalog_
  5548. /
  5549. grant select on syscatalog to public;
  5550. create synonym system.syscatalog for syscatalog;
  5551. rem
  5552. rem The catalog view returns almost all tables accessible to the user
  5553. rem except tables in SYS and SYSTEM ("dictionary tables").
  5554. rem 
  5555. drop view catalog;
  5556. create view catalog (tname, creator, tabletype) as
  5557.   select tname, creator, tabletype
  5558.   from    syscatalog_
  5559.   where creatorid not in (0,2)
  5560. /
  5561. grant select on catalog to public;
  5562. create synonym system.catalog for catalog;
  5563.  
  5564. drop view tab;
  5565. create view tab (tname, tabtype, clusterid) as
  5566.    select o.name,
  5567.       decode(o.type, 2, 'TABLE', 3, 'CLUSTER', 
  5568.              4, 'VIEW', 5, 'SYNONYM'), t.tab#
  5569.   from  sys.tab$ t, sys.obj$ o
  5570.   where o.owner# = uid and o.type >=2 and o.type <=5
  5571.      and o.obj# = t.obj# (+)
  5572. /
  5573. grant select on tab to public;
  5574. create synonym system.tab for tab;
  5575. drop view col;
  5576. create view col (tname, colno, cname, coltype, width, scale, precision, nulls,
  5577.                  defaultval) as
  5578.   select t.name, c.col#, c.name, 
  5579.      decode(c.type#, 1, 'CHAR',
  5580.                          2, decode(c.scale, null,
  5581.                                    decode(c.precision, null, 'NUMBER', 'FLOAT'),
  5582.                                   'NUMBER'),
  5583.                          8, 'LONG', 9, 'VARCHAR',
  5584.                          12, 'DATE', 23, 'RAW', 24, 'LONG RAW',
  5585.                          69, 'ROWID', 'UNDEFINED'),
  5586.          c.length, c.scale, c.precision,
  5587.      decode(c.null$, 0, 'NULL', 'NOT NULL'), c.default$
  5588.    from  sys.col$ c, sys.obj$ t
  5589.    where t.obj# = c.obj#
  5590.    and     t.type in (2, 3, 4)
  5591.    and     t.owner# = uid
  5592. /
  5593. grant select on col to public;
  5594. create synonym system.col for col;
  5595. drop view syssegobj;
  5596. create view syssegobj (obj#, file#, block#, type, pctfree$, pctused$) as
  5597.   select obj#, file#, block#, 'TABLE', pctfree$, pctused$ from sys.tab$
  5598.   union
  5599.   select obj#, file#, block#, 'CLUSTER', pctfree$, pctused$ from sys.clu$
  5600.   union 
  5601.   select obj#, file#, block#, 'INDEX', to_number(null), to_number(null)
  5602.          from sys.ind$
  5603. /
  5604. grant select on syssegobj to public;
  5605. drop view tabquotas;
  5606. create view tabquotas (tname, type, objno, nextext, maxext, pinc,
  5607.                pfree, pused) as
  5608.   select t.name, so.type, t.obj#, s.extsize, s.maxexts, s.extpct, so.pctfree$,
  5609.      so.pctused$
  5610.   from  sys.seg$ s, sys.obj$ t, syssegobj so
  5611.   where t.owner# = uid
  5612.     and t.obj# = so.obj#
  5613.     and so.file# = s.file# 
  5614.     and so.block# = s.block#
  5615. /
  5616. grant select on tabquotas to public;
  5617. create synonym system.tabquotas for tabquotas;
  5618.  
  5619. drop view sysfiles;
  5620. create view sysfiles (tsname, fname, blocks) as
  5621.   select ts.name, dbf.name, f.blocks
  5622.   from  sys.ts$ ts, sys.file$ f, sys.v$dbfile dbf
  5623.   where ts.ts# = f.ts#(+) and dbf.file# = f.file# and f.status$ = 2
  5624. /
  5625. grant select on sysfiles to public;
  5626. create synonym system.sysfiles for sysfiles;
  5627. drop view synonyms;
  5628. create view synonyms (sname, syntype, creator, tname, database, tabtype) as
  5629.   select s.name, 
  5630.      decode (s.owner#,1,'PUBLIC','PRIVATE'), t.owner, t.name, 'LOCAL', 
  5631.      decode(ot.type, 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER', 4, 'VIEW',
  5632.              5, 'SYNONYM', 6, 'SEQUENCE', 'UNDEFINED')
  5633.   from  sys.obj$ s, sys.obj$ ot, sys.syn$ t, sys.user$ u
  5634.   where s.obj# = t.obj# 
  5635.     and s.type = 5
  5636.     and ot.name = t.name
  5637.     and t.owner = u.name
  5638.     and ot.owner# = u.user#
  5639.     and s.owner# in (1,uid)
  5640.     and t.node is null
  5641. union
  5642.   select s.name, decode(s.owner#, 1, 'PUBLIC', 'PRIVATE'),
  5643.      t.owner, t.name, t.node, 'REMOTE'
  5644.   from  sys.obj$ s, sys.syn$ t
  5645.   where s.obj# = t.obj#
  5646.     and s.type = 5
  5647.     and s.owner# in (1, uid)
  5648.     and t.node is not null
  5649. /  
  5650. grant select on synonyms to public;
  5651. drop view publicsyn;
  5652. create view publicsyn (sname, creator, tname, database, tabtype) as
  5653.   select sname, creator, tname, database, tabtype
  5654.   from  synonyms
  5655.   where syntype = 'PUBLIC'
  5656. /
  5657. grant select on publicsyn to public;
  5658. create synonym system.publicsyn for publicsyn;
  5659.