📄 0_temptable_drop.sql
字号:
/*************************************************************************
* The contents of this file are subject to the Compiere License. You may
* obtain a copy of the License at http://www.compiere.org/license.html
* Software is on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
* express or implied. See the License for details. Code: Compiere ERP+CPM
* Copyright (C) 1999-2001 Jorg Janke, ComPiere, Inc. All Rights Reserved.
*************************************************************************
* $Id: 0_TempTable_Drop.sql,v 1.9 2003/05/04 06:46:07 jjanke Exp $
***
* Title: Drop Temporary Tables
* Description:
* Drop (Temporary) Tables for report views
************************************************************************/
DECLARE
CURSOR CUR_Views IS
SELECT View_Name
FROM USER_Views
WHERE NOT
(
View_Name LIKE '%_VT' -- Translation Views
OR View_Name LIKE 'AD_%' -- Dictionary Views
OR View_Name LIKE 'O_%' -- Export Views
OR View_Name LIKE 'GL_%' -- GL Views
OR View_Name LIKE 'R_%_V' -- Request Views
OR View_Name IN ('C_INVOICE_V','C_INVOICELINE_V', 'C_PAYMENT_V',
'C_INVOICE_CANDIDATE_V', 'M_INOUT_CANDIDATE_V')
)
ORDER BY 1;
v_Cmd VARCHAR2(2000);
BEGIN
FOR v IN CUR_Views LOOP
DBMS_OUTPUT.PUT('View ' || v.View_Name || ' - ');
BEGIN
v_Cmd := 'DROP TABLE ' || v.View_Name || '_';
EXECUTE IMMEDIATE v_Cmd;
EXCEPTION WHEN OTHERS THEN
DBMS_OUTPUT.PUT('Table not existing - ');
END;
--
v_Cmd := 'UPDATE AD_Table SET TableName=Name '
|| 'WHERE UPPER(TableName)=''' || v.View_Name || '_''';
EXECUTE IMMEDIATE v_Cmd;
DBMS_OUTPUT.PUT_LINE (SQL%ROWCOUNT);
END LOOP;
END;
/
COMMIT
/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -