Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Oracle Lite vs Oracle Server
First let me say that I am new at Oracle I am more familiar with
SqlServer.
I am in the process of moving a Interet ASP application from Oracle to Oracle Lite (for development purposes, the application will ultimately reside in Oracle Server). Anyway, I was able to create and pupluate the tables with little problem. The question comes when I try certain commands.
CREATE OR REPLACE TRIGGER tblSchedule_lSchedule before insert on
tblSchedule for each row
begin
select tblSchedule.lSchedule.nextval
into :new.lSchedule
from dual;
end;
See anything that would cause Oracle Lite to give an error?
2. I use Alter Session within my code to set the dat format for the session that the DB will expect. Is this not supported in Oracle Lite?
Thanks,
Patrick Nance
www.ColonialTech.com
Received on Tue Mar 23 1999 - 11:11:54 CST
![]() |
![]() |