Problem With Adpter

hi,
i am facing the following problem .Can any one help me out

[ART.116.3038] Adapter Runtime (Notification): Error in Notification Callback:enableCallback notification assessment:svcInsertStudent.
[ADA.1.316] Cannot execute the SQL statement “CREATE SEQUENCE WMSbbygder ORDER”. "
(42000/955) ORA-00955: name is already used by an existing object
"
ORA-00955: name is already used by an existing object

Hello,

It looks like you are trying to enable an adapter notification in oracle, that will build a DB trigger, but the last time you disabled the DB trigger, it did not remove the oracle objects correctly. I am guessing, you should have put more info about what you are doing.

You may need to run the following sql:
drop SEQUENCE WMSbbygder;

after that, you may need to do these additional commands, but try to re-enable your notification first:

drop table WMBbbygder;
drop trigger WMTbbygder;

thank you
Roger