One other way is to use the DBMS_LOCK package. For each connection, you use ALLOCATE_UNIQUE procedure.
In my application, it's work well for control if a user is connected or not.
I use one oracle user for many user in my application.
I have the same problem.
After more test, it's appear that this problem don't appear on windows 2000 sp1.
I have detected this problem on windows98.
This problem occurs more frequently on low ressource on workstation, for example with big query with order by multi columns descending.
Why, i...
I have already tested BLOB and CLOB but the result is the same.
The idea is to convert HEXA in VARCHAR2.
But i don't know how to process and why HEXTORAW don't work.
I have text in a BLOB field and i want to do a select statment.
When i use DBMS_LOB.SUBSTR the result is in hexadecimal.
Also SELECT * FROM TEST WHERE DBMS_LOB.SUBSTR(BLOBFIELD) LIKE 'Ligne%' don't work.
But SELECT * FROM TEST WHERE DBMS_LOB.SUBSTR
(BLOBFIELD) LIKE RAWTOHEX('Ligne') | | '%' work...