如何在oracle sql脚本中创建一个过程并在脚本中使用它?

时间:2015-11-18 09:58:52

标签: sql oracle function procedure sql-scripts

我想为 oracle DB 创建一个脚本删除表格。如果表不存在,脚本将不会退出失败,只需打印文本:“不存在”。

脚本如下:

CheckBox

我想在一个脚本中删除很多表,而且我不想多次写这些行。

有没有办法将它写入过程或函数,它获取一个参数(表的名称),并在该脚本中调用此过程?

也许是这样的:

BEGIN
    EXECUTE IMMEDIATE 'DROP TABLE mytable';
    DBMS_Output.Put_Line(' table dropped');
EXCEPTION WHEN OTHERS THEN
    IF SQLCODE = -942 THEN
        DBMS_Output.Put_Line(' table not exists');
    ELSE
        DBMS_Output.Put_Line(' Unknown exception while dropping table');
        RAISE;
    END IF;
END;

或者也许是一个获取未定义大小列表的过程(如java: String ... table names ):

drop_table_procedure('mytableA');
drop_table_procedure('mytableB');

请举几个例子。 谢谢!

3 个答案:

答案 0 :(得分:10)

是的,您可以在匿名PL / SQL块中声明“临时”过程:

DECLARE 

  PROCEDURE drop_if_exists(p_tablename VARCHAR)
  IS
  BEGIN
      EXECUTE IMMEDIATE 'DROP TABLE '||p_tablename;
      DBMS_Output.Put_Line(' table dropped');
  EXCEPTION WHEN OTHERS THEN
      IF SQLCODE = -942 THEN
          DBMS_Output.Put_Line(' table not exists');
      ELSE
          DBMS_Output.Put_Line(' Unknown exception while dropping table');
          RAISE;
      END IF;
  END;

BEGIN
  drop_if_exists('TABLE_1');
  drop_if_exists('TABLE_2');
END;
/

答案 1 :(得分:1)

execute immediate

需要添加数据库对象的名称。 这是脚本

create table t1 (col1 int);
create table t2 (col1 int);

create procedure drop_my_table(av_name varchar2)
as
begin
    EXECUTE IMMEDIATE 'DROP TABLE '||av_name;
    DBMS_Output.Put_Line(' table dropped');
EXCEPTION WHEN OTHERS THEN
    IF SQLCODE = -942 THEN
        DBMS_Output.Put_Line(' table not exists');
    ELSE
        DBMS_Output.Put_Line(' Unknown exception while dropping table');
        RAISE;
    END IF;

end drop_my_table;

declare
  type array_t is varray(2) of varchar2(30);
  atbls array_t := array_t('t1', 't2');
begin
  for i in 1..atbls.count loop
       drop_my_table(atbls(i));
   end loop; 
end;

答案 2 :(得分:1)

您也可以使用以下

create or replace PROCEDURE drop_if_exists(p_tablename in VARCHAR)
      IS
    v_var1 number;
    begin 
    select 1 into v_var1 from user_tables where table_name=upper(p_tablename);
    if v_var1=1
    then 
    EXECUTE IMMEDIATE 'DROP TABLE '||p_tablename;
    DBMS_Output.Put_Line(' table dropped');
    else
    DBMS_Output.Put_Line(' table not exist');
    end if;
    exception 
    when others then
     DBMS_Output.Put_Line(' Unknown exception while dropping table');
            RAISE;
    end;

通话程序

    begin 
    drop_if_exists('emp');
    end;
    /