I'm trying to run a very simple Update statement against an Oracle8i database on Sun Solaris using SQL*Plus Release 8.1.6.0.0 on Windows 2000. The SQL statement is:
Update table_a
set column_a = (select sequence_name.nextval from dual)
where column_a is null;
I keep getting the ORA-03113: end-of-file on communication channel error message. Why is this command not working?
Thanks,
Update table_a
set column_a = (select sequence_name.nextval from dual)
where column_a is null;
I keep getting the ORA-03113: end-of-file on communication channel error message. Why is this command not working?
Thanks,