11g的匿名阻止

时间:2013-03-09 06:20:49

标签: oracle stored-procedures plsql dynamic-sql

我需要帮助。

我正在尝试创建一个pl / sql匿名块,当我运行它时,它显示已完成,但它不运行代码。它应该给我一个错误,说现在的对象已经使用了名称。有人可以帮我这个。 我实际上是创建过程,但只是尝试将此代码作为示例。

DECLARE 

    V_REF_TBL                       VARCHAR2(100);
    V_SQL                           LONG;

begin
    V_REF_TBL :='My_TABLE';
    v_SQL :='truncate table '||V_REF_TBL ;
    EXECUTE IMMEDIATE V_SQL;

    EXECUTE IMMEDIATE 'CREATE TABLE '|| V_REF_TBL ||' parallel 9 nologging pctfree 0 as 
    select * from dual';  
End;

1 个答案:

答案 0 :(得分:0)

可能你正在寻找这个:

  <<my_block>>
  Declare
    table_name varchar2(30);
    counter    number;
  Begin
    table_name := 'my_table';

    select count(*)
    into   counter
    from   user_tables
    where  table_name = Upper(Trim(my_block.table_name)) and
           dropped = 'NO';

    if counter = 0
    then
      execute immediate 'create table '||table_name||' as ... etc';
    else
      execute immediate 'truncate table '||table_name;
      execute immediate 'insert into '||table_name' select ... etc';
    end if;
  end my_block;