home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 19.ddi / EXPVEW.SQL < prev    next >
Encoding:
Text File  |  1990-09-19  |  21.1 KB  |  547 lines

  1. Rem Copyright (c) 1987 by Oracle Corporation
  2. Rem NAME
  3. Rem    EXPVEW.SQL - IMPORT/EXPORT VIEWS
  4. Rem  FUNCTION
  5. Rem  NOTES
  6. Rem    Must be run when connected to SYS.
  7. Rem  MODIFIED
  8. Rem   Gupta      08/13/90 - exursg doesn't need owner field
  9. Rem   Gupta      05/23/90 - bug 29884
  10. Rem   Gupta      03/11/90 - synonym view doesn't need to do an outer join
  11. Rem   Hong       09/26/89 - add exurep for replication
  12. Rem   Hong       10/31/88 - don't export quotas of 0
  13. Rem   Hong       09/21/88 - allow null precision/scale
  14. Rem   Hong       09/10/88 - fix outer joins
  15. Rem   Hong       08/10/88 - get default/temp tablespace in exuusr
  16. Rem   Hong       07/01/88 - get obj id in some views
  17. Rem   Hong       06/10/88 - remove userid != 0 from views
  18. Rem   Hong       04/28/88 - comment$ moved to com$
  19. Rem   Hong       03/24/88 - add audit field to exuseq
  20. Rem   Hong       03/07/88 - deal with initrans, maxtrans
  21. Rem                         add views for constraints, sequence #
  22. Rem   Hong       02/01/88 - add exuico and exuicou
  23. Rem                         temporary commented out col$.default$
  24. Rem   Hong       02/01/88 - fix exufil to use v$dbfile directly
  25. Rem   Hong       12/12/87 - fix exutbs
  26. Rem   Hong       12/07/87 - handle min extents 
  27. Rem
  28.  
  29. set echo on;
  30.  
  31. rem all tables
  32. drop view exutab;
  33. CREATE VIEW exutab (objid,name, owner, ownerid, tablespace, fileno, blockno,
  34.             audit$, comment$, clusterflag, mtime, modified,
  35.                     pctfree$, pctused$, initrans, maxtrans) AS
  36.        SELECT o$.obj#,o$.name, u$.name, o$.owner#, ts$.name, t$.file#, 
  37.           t$.block#, t$.audit$, c$.comment$, NVL(t$.clu#, 0), o$.mtime,
  38.           t$.modified, t$.pctfree$, t$.pctused$, t$.initrans, t$.maxtrans
  39.        FROM sys.tab$ t$, sys.obj$ o$, sys.ts$ ts$, sys.user$ u$, sys.com$ c$
  40.        WHERE  t$.obj# = o$.obj# and t$.ts# = ts$.ts# and 
  41.               u$.user# = o$.owner# and o$.obj# = c$.obj#(+) 
  42.           and c$.col#(+) is null
  43. /
  44. rem tables for incremental export: modified, altered or new
  45. drop view exutabi;
  46. CREATE VIEW exutabi AS 
  47.        SELECT t.* FROM exutab t,incexp i, incvid v
  48.        WHERE t.name  = i.name(+) AND t.ownerid = i.owner#(+) AND
  49.              NVL(i.type,2) = 2 AND  
  50.              (t.modified = 1 OR t.mtime > i.itime OR 
  51.               NVL(i.expid,9999) > v.expid)
  52. /         
  53. rem tables for cumulative export: modified, last export was inc, altered or new
  54. drop view exutabc;
  55. CREATE VIEW exutabc AS 
  56.        SELECT t.* FROM exutab t,incexp i, incvid v
  57.        WHERE  t.name  = i.name(+) AND t.ownerid = i.owner#(+) AND 
  58.              NVL(i.type,2) = 2 AND 
  59.               (t.modified = 1 OR i.itime > NVL(i.ctime,
  60.                                              TO_DATE('01-JAN-01','DD-MON-YY'))
  61.                OR t.mtime > i.itime OR NVL(i.expid,9999) > v.expid)
  62. /
  63. rem current user's tables 
  64. drop view exutabu;
  65. CREATE VIEW exutabu AS
  66.        SELECT * FROM exutab WHERE ownerid = uid
  67. /
  68. grant select on exutabu to public;
  69.  
  70. rem all columns 
  71. drop view exucol;
  72. CREATE VIEW exucol (tobjid, towner, townerid, tname, name, length, precision, 
  73.             scale, type, isnull, conname, colid, comment$, default$, 
  74.                 dfltlen) AS
  75.        SELECT o$.obj#, u$.name, o$.owner#, o$.name, c$.name, c$.length, 
  76.               c$.precision, c$.scale, c$.type#, c$.null$, 
  77.               DECODE(SUBSTR(con$.name,1,5), 'SYS_C', '', NVL(con$.name, '')),
  78.               c$.col#, com$.comment$, c$.default$, NVL(c$.deflength, 0)
  79.        FROM sys.col$ c$, sys.obj$ o$, sys.user$ u$, sys.cdef$ cd$, 
  80.         sys.con$ con$, sys.com$ com$
  81.        WHERE c$.obj# = o$.obj# and o$.owner# = u$.user# and 
  82.           c$.null$ = cd$.con#(+) and c$.obj# = cd$.obj#(+) and 
  83.              cd$.con# = con$.con#(+) and 
  84.          c$.obj# = com$.obj#(+) and c$.col# = com$.col#(+)
  85. /
  86. drop view exucolu;
  87. CREATE VIEW exucolu AS                   /* current user's columns */
  88.        SELECT * from exucol WHERE townerid = uid
  89. /
  90. grant select on exucolu to public;
  91.  
  92. rem all columns for index
  93. drop view exuico;
  94. CREATE VIEW exuico (tobjid, towner, townerid, tname, name, length, precision,
  95.             scale, type, isnull, conname, colid, comment$, default$, 
  96.             dfltlen) AS
  97.        SELECT o$.obj#, u$.name, o$.owner#, o$.name, c$.name, 0, 0, 0, 0, 0, '',
  98.               i$.pos#, NULL, NULL, 0
  99.        FROM sys.col$ c$, sys.icol$ i$, sys.obj$ o$, sys.user$ u$
  100.        WHERE c$.obj# = i$.bo# and c$.col# = i$.col# and 
  101.          i$.obj# = o$.obj# and o$.owner# = u$.user#
  102. /
  103. drop view exuicou;
  104. CREATE VIEW exuicou AS                   /* current user's columns */
  105.        SELECT * from exuico WHERE townerid = uid
  106. /
  107. grant select on exuicou to public;
  108.  
  109. rem all users
  110. drop view exuusr;
  111. CREATE VIEW exuusr (name, userid, passwd, privs, datats, tempts) AS 
  112.        SELECT u.name, u.user#, u.password, 
  113.           DECODE(u.connect$, 1, 'Y', 'N')||DECODE(u.dba$, 1, 'Y', 'N')||
  114.           DECODE(u.resource$, 1, 'Y', 'N'), ts1.name, ts2.name
  115.        FROM sys.user$ u, sys.ts$ ts1, sys.ts$ ts2
  116.        WHERE u.datats# = ts1.ts# and u.tempts# = ts2.ts#
  117. /
  118. drop view exuusru;
  119. CREATE VIEW exuusru AS                         /* current user */
  120.        SELECT * FROM exuusr WHERE userid = UID
  121. /
  122. grant select on exuusru to public;
  123.  
  124. rem all grants
  125. drop view exugrn;
  126. CREATE VIEW exugrn (objid, grantor, grantorid, grantee, privs,
  127.                     creatorid, time) AS
  128.        SELECT t$.obj#, ur$.name, t$.grantor#, ue$.name, 
  129.           DECODE(t$.alter$, 0, 'N', 2, 'Y', 'G') ||
  130.           DECODE(t$.delete$, 0, 'N', 2,  'Y', 'G') ||
  131.           DECODE(t$.index$, 0, 'N', 2, 'Y', 'G') ||
  132.           DECODE(t$.insert$, 0, 'N', 2, 'Y', 'G') ||
  133.           DECODE(t$.select$, 0, 'N', 2, 'Y', 'G') ||
  134.           DECODE(t$.update$, 0, 'N', 1, 'R', 2, 'Y', 'G'),
  135.           o$.owner#, t$.time
  136.        FROM sys.tabauth$ t$, sys.obj$ o$, sys.user$ ur$,
  137.         sys.user$ ue$
  138.        WHERE o$.obj# = t$.obj# AND
  139.              t$.grantor# = ur$.user# AND t$.grantee# = ue$.user#
  140. /
  141. rem first level grants
  142. drop view exugrnu;
  143. CREATE VIEW exugrnu AS
  144.        SELECT * FROM exugrn WHERE grantorid = UID AND creatorid = UID
  145. /
  146. grant select on exugrnu to public;
  147.  
  148. rem all column grants
  149. drop view exucgr;
  150. CREATE VIEW exucgr (objid, grantor, grantorid, grantee, creatorid, cname, 
  151.                 time, wgo) AS
  152.        SELECT c$.obj#, ur$.name, c$.grantor#, ue$.name, o$.owner#, c$.name,
  153.           c$.time, DECODE(c$.update$, 3, 1, 0)
  154.        FROM sys.colauth$ c$, sys.obj$ o$, sys.user$ ur$, sys.user$ ue$
  155.        WHERE c$.grantor# = ur$.user# AND c$.grantee# = ue$.user# AND
  156.              c$.obj# = o$.obj#
  157. /
  158. rem first level grants
  159. drop view exucgru;
  160. CREATE VIEW exucgru AS
  161.        SELECT * FROM exucgr WHERE grantorid = UID AND creatorid = UID
  162. /
  163. grant select on exucgru to public;
  164.  
  165. rem all indexes
  166. drop view exuind;
  167. CREATE VIEW exuind (iobjid, iname, iowner, iownerid, ispace, ifileno, iblockno,
  168.             btname, btobjid, btowner, btownerid, unique$,
  169.             cluster$, pctfree$, initrans, maxtrans)  AS
  170.        SELECT i$.obj#, i$.name, ui$.name, i$.owner#, ts$.name, ind$.file#,
  171.           ind$.block#, t$.name, t$.obj#, ut$.name, t$.owner#,
  172.               ind$.unique$, DECODE(t$.type, 3, 1, 0), ind$.pctfree$, 
  173.           ind$.initrans, ind$.maxtrans
  174.        FROM  sys.obj$ t$, sys.obj$ i$, sys.ind$ ind$,
  175.          sys.user$ ui$, sys.user$ ut$, sys.ts$ ts$
  176.        WHERE ind$.bo# = t$.obj# AND ind$.obj# = i$.obj# AND
  177.          ts$.ts# = ind$.ts# AND i$.owner# = ui$.user# AND
  178.              t$.owner# = ut$.user#
  179. /
  180. rem current user indexes
  181. drop view exuindu;
  182. CREATE VIEW exuindu AS
  183.        SELECT * FROM exuind WHERE iownerid = UID and btownerid = UID
  184. /
  185. grant select on exuindu to public;
  186.  
  187. rem all views 
  188. drop view exuvew;
  189. CREATE VIEW exuvew (vobjid,vname, vlen, vtext, vowner, vownerid,
  190.             vtime, vaudit, vcomment, vcname) AS
  191.        SELECT o$.obj#, o$.name, v$.textlength, v$.text, u$.name, o$.owner#, 
  192.             TO_CHAR(o$.ctime, 'YYMMDDHH24MISS'), v$.audit$, com$.comment$,
  193.               DECODE(SUBSTR(c$.name,1,5), 'SYS_C', '', NVL(c$.name, ''))
  194.        FROM sys.obj$ o$, sys.view$ v$, sys.user$ u$, sys.cdef$ cd$,
  195.             sys.con$ c$, sys.com$ com$
  196.        WHERE o$.obj# = v$.obj# AND o$.owner# = u$.user# AND
  197.          o$.obj# = cd$.obj#(+) AND cd$.con# = c$.con#(+) AND 
  198.              o$.obj# = com$.obj#(+) AND com$.col#(+) is null
  199. /
  200. rem views for incremental export: new or last export not valid
  201. rem cannot use union as in exutabi because of long field
  202. drop view exuvewi;
  203. CREATE VIEW exuvewi AS 
  204.        SELECT vw.* FROM exuvew vw, incexp i, incvid v
  205.        WHERE i.name(+) = vw.vname AND i.owner#(+) = vw.vownerid
  206.              AND v.expid < NVL(i.expid, 9999) AND NVL(i.type, 4) = 4
  207. /         
  208. rem views for cumulative export: new, last export was inc or not valid
  209. drop view exuvewc;
  210. CREATE VIEW exuvewc AS 
  211.        SELECT vw.* FROM exuvew vw, incexp i, incvid v
  212.        WHERE vw.vname = i.name(+) AND vw.vownerid = i.owner#(+) AND 
  213.              NVL(i.type,4) = 4 AND
  214.              (NVL(i.ctime,TO_DATE('01-JAN-00','DD-MON-YY')) < i.itime OR 
  215.               v.expid < NVL(i.expid, 9999))
  216. /
  217. rem current user's view
  218. drop view exuvewu;
  219. CREATE VIEW exuvewu AS
  220.        SELECT *    FROM exuvew WHERE vownerid = UID
  221. /
  222. grant select on exuvewu to public;
  223.  
  224. rem all synonyms
  225. drop view exusyn;
  226. CREATE VIEW exusyn (synnam, syntab, tabown, tabnode,
  227.                 public$, synown, synownid, syntime) AS
  228.        SELECT o$.name, s$.name, s$.owner, s$.node,
  229.             DECODE(o$.owner#, 1, 1, 0),
  230.              uo$.name, o$.owner#, TO_CHAR(o$.ctime, 'YYMMDDHH24MISS')
  231.        FROM sys.obj$ o$, sys.syn$ s$, sys.user$ uo$
  232.        WHERE s$.obj# = o$.obj# AND o$.owner# = uo$.user#
  233. /
  234. rem synonyms for incremental export: new or last export not valid
  235. drop view exusyni;
  236. CREATE VIEW exusyni AS 
  237.        SELECT s.* FROM exusyn s, incexp i, incvid v
  238.        WHERE s.synnam = i.name(+) AND s.synownid = i.owner#(+) AND 
  239.              NVL(i.type,5) = 5 AND NVL(i.expid,9999) > v.expid
  240. /         
  241. rem synonyms for cumulative export: new, last export was inc or not valid
  242. drop view exusync;
  243. CREATE VIEW exusync AS 
  244.        SELECT s.* FROM exusyn s, incexp i, incvid v
  245.        WHERE  s.synnam  = i.name(+) AND s.synownid = i.owner#(+) AND 
  246.               NVL(i.type,5) = 5 AND
  247.           (NVL(i.ctime,TO_DATE('01-JAN-00','DD-MON-YY')) < i.itime OR 
  248.                NVL(i.expid,9999) > v.expid)
  249. /
  250. rem user's synnonyms
  251. drop view exusynu;
  252. CREATE VIEW exusynu AS
  253.        SELECT * FROM exusyn WHERE synownid = UID
  254. /
  255. grant select on exusynu to public;
  256.  
  257. rem clustered tables' columns
  258. drop view exucco;
  259. CREATE VIEW exucco(tname, towner, townerid, cluster$, tcolnam, seq) AS
  260.        SELECT t$.name, u$.name, t$.owner#, c$.name, tc$.name, cc$.col#
  261.        FROM sys.obj$ t$, sys.tab$ tab$, sys.obj$ c$,
  262.         sys.col$ tc$, sys.col$ cc$, sys.user$ u$
  263.        WHERE t$.type = 2 AND t$.obj# = tab$.obj# AND
  264.            tab$.clu# = cc$.obj# AND tab$.obj# = tc$.obj# AND 
  265.              tab$.clu# = c$.obj# AND 
  266.              cc$.segcol# = tc$.segcol# AND t$.owner# = u$.user#
  267. /
  268. rem current user's clustered tables' columns
  269. drop view exuccou;
  270. CREATE VIEW exuccou AS
  271.        SELECT * FROM exucco WHERE townerid = UID
  272. /
  273. grant select on exuccou to public;
  274.  
  275. rem all clusters
  276. drop view exuclu;
  277. CREATE VIEW exuclu (objid, owner, ownerid, name, tblspace, size$, fileno,
  278.                 blockno, mtime, pctfree$, pctused$, initrans, maxtrans) AS
  279.        SELECT o$.obj#, u$.name, o$.owner#, o$.name, ts$.name, 
  280.           NVL(c$.size$, -1), c$.file#, c$.block#, o$.mtime, c$.pctfree$, 
  281.               c$.pctused$, c$.initrans, c$.maxtrans
  282.        FROM sys.obj$ o$, sys.clu$ c$, sys.ts$ ts$, sys.user$ u$
  283.        WHERE o$.obj# = c$.obj# AND c$.ts# = ts$.ts# AND o$.owner# = u$.user#
  284. /
  285. rem clusters for incremental export: new or last export invalid
  286. rem altered cluster is not exported because this would require exporting all
  287. rem tables in it.
  288. drop view exuclui;
  289. CREATE VIEW exuclui AS 
  290.        SELECT c.* FROM exuclu c,incexp i, incvid v
  291.        WHERE c.name  = i.name(+) AND c.ownerid = i.owner#(+) AND
  292.          NVL(i.expid,9999) > v.expid
  293. /         
  294. rem clusters for cumulative export: last export was inc or new
  295. rem altered cluster is not exported because this would require exporting all
  296. rem tables in it.
  297. drop view exucluc;
  298. CREATE VIEW exucluc AS 
  299.        SELECT c.* FROM exuclu c,incexp i, incvid v
  300.        WHERE c.name = i.name(+) AND c.ownerid = i.owner#(+) AND 
  301.              NVL(i.type,3) = 3 AND
  302.           (i.itime > NVL(i.ctime,TO_DATE('01-JAN-00','DD-MON-YY'))
  303.              OR NVL(i.expid,9999) > v.expid)
  304. /
  305. rem current user's clusters
  306. drop view exucluu;
  307. CREATE VIEW exucluu AS
  308.        SELECT * FROM exuclu WHERE ownerid = UID
  309. /
  310. grant select on exucluu to public;
  311.  
  312. rem all storage parameters
  313. drop view exusto;
  314. CREATE VIEW exusto (ownerid, fileno, blockno, iniext, sext, minext,
  315.                     maxext, pctinc, blocks) AS
  316.        SELECT user#, file#, block#, iniexts, extsize, minexts, maxexts, 
  317.               extpct, blocks
  318.        FROM sys.seg$
  319.  
  320. rem storage parameters for current user's segments
  321. drop view exustou;
  322. CREATE VIEW exustou AS
  323.        SELECT * FROM exusto WHERE ownerid = UID
  324. /
  325. grant select on exustou to public;
  326.  
  327. rem all tablespaces
  328. drop view exutbs;
  329. CREATE VIEW exutbs (id, owner, name, isonline, iniext, sext, pctinc,
  330.             minext, maxext) AS
  331.        SELECT ts$.ts#, 'SYSTEM', ts$.name, 
  332.           DECODE(ts$.online$, 1, 'ONLINE', 'OFFLINE'), ts$.dflinit,
  333.              ts$.dflincr, ts$.dflextpct, ts$.dflminext, ts$.dflmaxext
  334.        FROM sys.ts$ ts$ 
  335.        WHERE ts$.online$ in (1, 2) and ts$.ts# != 0
  336. /
  337.  
  338. rem tablespace quotas
  339. drop view exutsq;
  340. CREATE VIEW exutsq(tsname, tsid, uname, maxblocks) AS
  341.        SELECT t$.name, q$.ts#, u$.name, q$.maxblocks
  342.        FROM  sys.ts$ t$, sys.tsq$ q$, sys.user$ u$
  343.        WHERE  q$.user# = u$.user# AND q$.ts# = t$.ts# AND q$.maxblocks != 0
  344. /
  345.  
  346. rem block size
  347. drop view exubsz;
  348. CREATE VIEW exubsz(blocksize) AS
  349.        SELECT ts$.blocksize
  350.        FROM   sys.ts$ ts$
  351. /
  352. grant select on exubsz to public;
  353.  
  354. rem all files
  355. drop view exufil;
  356. CREATE VIEW exufil(fname, fsize, tsid) AS
  357.        SELECT v$.name, f$.blocks, f$.ts#
  358.        FROM   sys.file$ f$, sys.v$dbfile v$
  359.        WHERE  f$.file# = v$.file#
  360. /
  361.  
  362. rem all database links
  363. drop view exulnk;
  364. CREATE VIEW exulnk (owner, ownerid, name, user$, passwd, host, public$) AS
  365.        SELECT DECODE(l$.owner#, 1, 'SYSTEM', u$.name), l$.owner#, l$.name, 
  366.               l$.userid, l$.password, l$.host, DECODE(l$.owner#, 1, 1, 0)
  367.        FROM sys.user$ u$, sys.link$ l$
  368.        WHERE u$.user# = l$.owner#
  369. /
  370. drop view exulnku;
  371. CREATE VIEW exulnku AS                /* current user's database links */
  372.        SELECT * FROM exulnk WHERE ownerid = UID
  373. /
  374. grant select on exulnku to public;
  375.  
  376. rem all rollback segments
  377. drop view exursg;
  378. CREATE VIEW exursg (name, space$, fileno , blockno, minext, public$) AS 
  379.        SELECT r$.name, ts$.name, r$.file#, r$.block#, s$.minexts,
  380.              DECODE(r$.user#, 1, 1, 0)
  381.        FROM sys.ts$ ts$, sys.undo$ r$, sys.seg$ s$
  382.        WHERE r$.status$ != 1 AND r$.file# = s$.file# AND r$.block# = s$.block#
  383.              AND s$.ts# = ts$.ts#
  384. /
  385.  
  386. rem info on deleted object
  387. drop view exudel;
  388. CREATE VIEW exudel (owner, name, type, type#) AS
  389.        SELECT u$.name, i$.name, DECODE(i$.type, 2, 'TABLE', 3, 
  390.               'CLUSTER', 4, 'VIEW', 5, 'SYNONYM'), i$.type
  391.        FROM sys.incexp i$, sys.user$ u$
  392.        WHERE i$.owner# = u$.user# AND
  393.              (i$.owner#, i$.name, i$.type) 
  394.              NOT IN (SELECT o$.owner#, o$.name, o$.type 
  395.              FROM   sys.obj$ o$
  396.             )
  397. /
  398.  
  399. rem info on sequence number
  400. drop view exuseq;
  401. CREATE VIEW exuseq (owner, ownerid, name, objid, curval, minval, maxval, 
  402.             incr, cache, cycle, order$, audt) AS
  403.        SELECT u.name, u.user#, o.name, o.obj#, s.highwater, s.minvalue, 
  404.           s.maxvalue, s.increment$, s.cache, s.cycle, s.order$, s.audit$
  405.        FROM sys.obj$ o, sys.user$ u, sys.seq$ s
  406.        WHERE o.obj# = s.obj# AND o.owner# = u.user#
  407. /
  408. drop view exusequ;
  409. CREATE VIEW exusequ AS 
  410.        SELECT * FROM sys.exuseq WHERE UID = ownerid
  411. /
  412. grant select on sys.exusequ to public;
  413.  
  414. rem contraints on table
  415. drop view exucon;
  416. CREATE VIEW exucon (objid, owner, ownerid, tname, type, cname, cno, condition,
  417.                     condlength) AS
  418.        SELECT o.obj#, u.name, c.owner#, o.name, cd.type, 
  419.           DECODE(SUBSTR(c.name,1,5), 'SYS_C', '', NVL(c.name, '')),
  420.               c.con#, cd.condition, cd.condlength
  421.        FROM sys.obj$ o, sys.user$ u, sys.con$ c, sys.cdef$ cd
  422.        WHERE u.user# = c.owner# AND o.obj# = cd.obj# AND cd.con# = c.con#
  423. /
  424. drop view exuconu;
  425. CREATE VIEW exuconu AS 
  426.        SELECT * FROM sys.exucon WHERE UID = ownerid
  427. /
  428. grant select on sys.exuconu to public;
  429.  
  430. rem referential constraints
  431. drop view exuref;
  432. CREATE VIEW exuref (objid, owner, ownerid, tname, rowner, rtname, cname, cno,
  433.                 rcno) AS
  434.        SELECT o.obj#, u.name, c.owner#, o.name, ru.name, ro.name, 
  435.               DECODE(SUBSTR(c.name, 1, 5), 'SYS_C', '', NVL(c.name, '')),
  436.           c.con#, cd.rcon#
  437.        FROM sys.user$ u, sys.user$ ru, sys.obj$ o, sys.obj$ ro, 
  438.             sys.con$ c, sys.cdef$ cd
  439.        WHERE u.user# = c.owner# AND o.obj# = cd.obj# AND ro.obj# = cd.robj# AND
  440.              cd.con# = c.con# AND cd.type = 4 AND ru.user# = ro.owner#
  441. /
  442. drop view exurefu;
  443. CREATE VIEW exurefu AS SELECT * FROM sys.exuref WHERE UID = ownerid
  444. /
  445. grant select on sys.exurefu to public;
  446. rem referential constraints for incremental and cumulative export
  447. rem for tables just exported, i.expid will be greater than v.expid
  448. rem as v.expid is incremented only at the end of the incremental export
  449. rem but i.expid is incremented when the table is exported.
  450. rem USED ONLY WHEN REOCRD = YES
  451. drop view exurefic;
  452. CREATE VIEW exurefic AS
  453.        SELECT * FROM sys.exuref 
  454.        WHERE (ownerid, tname) in 
  455.              (SELECT i.owner#, i.name 
  456.               FROM sys.incexp i, sys.incvid v
  457.               WHERE i.expid > v.expid AND i.type = 2)
  458. /
  459. rem referentail constraints for incremental export
  460. rem exutabi will return the correct table name because RECORD = NO
  461. drop view exurefi;
  462. CREATE VIEW exurefi AS
  463.        SELECT * FROM sys.exuref
  464.        WHERE (ownerid, tname) in (SELECT ownerid, name FROM sys.exutabi)
  465. /
  466. rem referentail constraints for cumulative export, assuming
  467. rem exutabc will return the correct table name because RECORD = NO
  468. drop view exurefc;
  469. CREATE VIEW exurefc AS
  470.        SELECT * FROM sys.exuref
  471.        WHERE (ownerid, tname) in (SELECT ownerid, name FROM sys.exutabc)
  472. /
  473.  
  474. rem contraint column list
  475. drop view exuccl;
  476. CREATE VIEW exuccl (ownerid, cno, colname, colno) AS
  477.        SELECT o.owner#, cc.con#, c.name, cc.pos#
  478.        FROM sys.obj$ o, sys.col$ c, sys.ccol$ cc
  479.        WHERE o.obj# = cc.obj# AND c.obj# = cc.obj# AND cc.col# = c.col#
  480. /
  481. drop view exucclu;
  482. CREATE VIEW exucclu AS
  483.        SELECT * FROM sys.exuccl WHERE UID = ownerid
  484. /
  485. grant select on sys.exucclu to public;
  486. drop view exucclo;
  487. CREATE VIEW exucclo (ownerid, cno, colname, colno) AS
  488.         SELECT a.ownerid, a.cno, a.colname, a.colno
  489.         FROM sys.exuccl a, sys.con$ b , sys.cdef$ c
  490.         WHERE b.owner#=UID
  491.         AND   b.con# = c.con#
  492.         AND   c.rcon# = a.cno
  493. /
  494. grant select on sys.exucclo to public;
  495.  
  496. rem replication constraints
  497. drop view exurep;
  498. CREATE VIEW exurep (objid, owner, ownerid, tname, rowner, rtname, cname, 
  499.             sowner, sname, scname, cno, rcno) AS
  500.        SELECT o.obj#, u.name, u.user#, o.name, ru.name, ro.name, 
  501.               DECODE(SUBSTR(rc.name, 1, 5), 'SYS_C', '', NVL(rc.name, '')),
  502.           su.name, so.name,
  503.               DECODE(SUBSTR(sc.name, 1, 5), 'SYS_C', '', NVL(sc.name, '')),
  504.               rc.con#, rcd.rcon#
  505.        FROM sys.user$ u, sys.user$ ru, sys.user$ su, sys.obj$ o, sys.obj$ ro, 
  506.             sys.obj$ so, sys.con$ sc, sys.con$ rc, sys.cdef$ scd, sys.cdef$ rcd
  507.        WHERE u.user# = rc.owner# AND o.obj# = rcd.obj# AND 
  508.              ro.obj# = rcd.robj# AND rcd.con# = rc.con# AND 
  509.              rcd.type = 6 AND ru.user# = ro.owner# AND
  510.              u.user# = sc.owner# AND o.obj# = scd.obj# AND 
  511.          so.obj# = scd.robj# AND scd.con# = sc.con# AND 
  512.              scd.type = 7 AND su.user# = so.owner#
  513. /
  514. drop view exurepu;
  515. CREATE VIEW exurepu AS SELECT * FROM sys.exurep WHERE UID = ownerid
  516. /
  517. grant select on sys.exurepu to public;
  518.  
  519. rem replication constraints for incremental and cumulative export
  520. rem for tables just exported, i.expid will be greater than v.expid
  521. rem as v.expid is incremented only at the end of the incremental export
  522. rem but i.expid is incremented when the table is exported.
  523. rem USED ONLY WHEN REOCRD = YES
  524. drop view exurepic;
  525. CREATE VIEW exurepic AS
  526.        SELECT * FROM sys.exurep
  527.        WHERE (ownerid, tname) in 
  528.              (SELECT i.owner#, i.name 
  529.               FROM sys.incexp i, sys.incvid v
  530.               WHERE i.expid > v.expid AND i.type = 2)
  531. /
  532. rem replication constraints for incremental export
  533. rem exutabi will return the correct table name because RECORD = NO
  534. drop view exurepi;
  535. CREATE VIEW exurepi AS
  536.        SELECT * FROM sys.exurep
  537.        WHERE (ownerid, tname) in (SELECT ownerid, name FROM sys.exutabi)
  538. /
  539. rem replication constraints for cumulative export, assuming
  540. rem exutabc will return the correct table name because RECORD = NO
  541. drop view exurepc;
  542. CREATE VIEW exurepc AS
  543.        SELECT * FROM sys.exurep
  544.        WHERE (ownerid, tname) in (SELECT ownerid, name FROM sys.exutabc)
  545. /
  546.