Unfortunately, it definately is not locked by another user. If you have Oracle 9i database (must be UTF8) create the following table:
CREATE TABLE MYTEST (MYTESTID NUMBER(10),
MYINFO VARCHAR2(35),
MYNUM NUMBER(10));
INSERT INTO MYTEST VALUES (1,'DATA',8);
COMMIT;
Once you have done this...