Data/Seed and Data/Test: Correction to apau.ctl to remove duplicates. Modules/compile.sql: Correction to 'report' query. Schema/ext...: Check whether external tables have been defined before attempting to drop them. Schema/v_...: Force creation of views that rely on PL/SQL code. Explicitly name the column returned by V_QUOTE_DETAILS.vw so that the comments can be applied. git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3452 248e525c-4dfb-0310-94bc-949c084e9493
13 lines
357 B
Plaintext
13 lines
357 B
Plaintext
BEGIN
|
|
FOR l_rec IN (SELECT 1
|
|
FROM user_tables
|
|
WHERE table_name = 'GTT_DIR_LIST') LOOP
|
|
EXECUTE IMMEDIATE 'DROP TABLE gtt_dir_list';
|
|
END LOOP;
|
|
END;
|
|
/
|
|
create GLOBAL temporary table gtt_dir_list
|
|
(filename varchar2(255) ,filelength NUMBER, filetype VARCHAR2(255), filemodified DATE)
|
|
on commit delete rows
|
|
/
|