Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] ORA-00942: table or view does not exist

It means the database you are accessing does not have a sequence table defined. By default these settings you are applying are for table based sequencing. Are you attempting to use some other form of sequencing? Why are you using native EclipseLink metadata APIs?
--Gordon

dmitryerkin wrote:
Hi
I am trying to use the sequence:

		descriptor.setSequenceNumberFieldName("OEBS_VIEW.ID");
		descriptor.setSequenceNumberName("OEBS_SEQ");

But I am catching this error:

ORA-00942: table or view does not exist
Error Code: 942
Call: UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?
	bind => [50, OEBS_SEQ]
Query: DataModifyQuery()


What does it mean?


Regards,
Dmitry


Back to the top