pl/sql動態執行sql語句時報錯:ORA-00911: 無效字元 ORA-06512: 在 line 14

shuangoracle發表於2010-08-27

今天測試的時候遇到兩個錯誤提醒,寫下來給自己提個醒:
--建測試表
create table test_table(tablename varchar2(50),selectsql clob);
insert into test_table values('dual','select sysdate from dual;');
commit;

--pl/sql
SQL> declare
2 cursor c is select selectsql from test_table;
3 cur c%rowtype;
4 v_selectsql varchar2(30000);
5 v_date date;
6 begin
7 open c;
8 fetch c into cur;
9 if c%notfound then
10 return;
11 end if;
12 v_selectsql := cur.selectsql;
13 execute immediate v_selectsql into v_date;
14 dbms_output.put_line(v_date);
15 close c;
16 end;
17 /

ORA-00911: 無效字元
ORA-06512: 在 line 14

--修改測試表test_table中selectsql欄位,將最後的 ‘;’ 去掉,再執行:
SQL> /

27-8月 -10

PL/SQL procedure successfully completed

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24496749/viewspace-1037464/,如需轉載,請註明出處,否則將追究法律責任。

相關文章