[cvsnt] Re: Repository auditing with Oracle

Paulo Soares psoares at consiste.pt
Wed Jan 11 14:31:27 GMT 2006


 

> > SELECT ID_SEQUENCE.CURRVAL FROM DUAL
> 
> and now, it occurs to me that you might also be able to use 
> this last SELECT
> in conjuction with a trigger that did the actual update.

As long as you are the only writer using the sequence. If you are you
may as well generate the number internally in the cvsnt server. A better
way is to call

SELECT ID_SEQUENCE.NEXTVAL FROM DUAL

and use the returned value for all the insertions. It would also work
with multiple writers.

Paulo



More information about the cvsnt mailing list