2014年4月10日

ddl in PL/SQL

摘要: If you write DDL directly in PL/SQL. You will hit error. 1 DECLARE 2 str_sql varchar2(500); 3 begin 4 create table test (id number); 5 end; 6 / create table test (id number); *ERROR at line 4:ORA-06550: line 4, column 2:PLS-00103: Encountered the symbol "CREATE" when ... 阅读全文

posted @ 2014-04-10 12:07 kramer 阅读(224) 评论(0) 推荐(0) 编辑

导航