Roeland
Member³
Hi,
When I create a trigger with the wizard and I try to install it, my connection is dropped. This happen on an Oracle 9.2.0.1.0
The trigger is as simple as
When I copy/paste everything in an SQL window the trigger is created without a problem.
On a Oracle 10 I do the same but then without a problem.
Client version is 9.2 (OCI)
PL/SQL Dev version 7.0.3.1123
When I create a trigger with the wizard and I try to install it, my connection is dropped. This happen on an Oracle 9.2.0.1.0
The trigger is as simple as
Code:
create or replace trigger Table_Test_Tr
before insert on Table_Test
for each row
declare
-- local variables here
begin
Null;
end Table_Test_Tr;
On a Oracle 10 I do the same but then without a problem.
Client version is 9.2 (OCI)
PL/SQL Dev version 7.0.3.1123