我有一個直接從shell腳本調用SQL命令的問題。我的shell腳本包含以下命令: set x = `sqlplus -S $ISLK_ORACLE_UID` <<EOF
delete from rc where rcd_id = 1 ;
update rcd set standard = 'Test_DB7' where id = 1 ;
delete from rc where rcd
我想從現有表中創建插入語句。但是,我最終面臨着ORA-00900的問題。令人驚訝的是,當我使用execute immediate獨立執行結果時,它工作正常。 讓我們創建2個表: create table a (
name varchar2 (100),
age integer
);
insert into a values ('Tom', 1);
commit;
insert into