Following error is reported whenever I select from a specific table in my database. It is a 10g database, i am accessing using 10g client and pl/dev version is 6.0.4.906
error reported is "Access violation at address 60508AF4 in module 'oracommon10.dll'. read Of address 0261DCBE", the program freezes and I have to use taskman to kill the program.
The table is as follows ...
Any ideas why I am experiencing a hang when selecting from the table? This hang appears in the command window as well.
Raj
error reported is "Access violation at address 60508AF4 in module 'oracommon10.dll'. read Of address 0261DCBE", the program freezes and I have to use taskman to kill the program.
The table is as follows ...
Code:
SQL> desc activity_status_ref
Name Type Nullable Default Comments
---------------------- -------------- -------- ------- ----------------------------------------------------
STATUS_ID NUMBER(20) id
STATUS_CODE VARCHAR2(20) Y code used everywhere
SHORT_DESC VARCHAR2(100) Y Short description
EMAIL_SUBJ VARCHAR2(200) Y email subject
EMAIL_BODY VARCHAR2(2000) Y email body
EMAIL_REMINDER VARCHAR2(1) Y 'N' If 'Y' then a reminder will be attached to the email
EMAIL_NOTIFY VARCHAR2(1) Y 'N' If 'Y' then email is sent, else no email action
EMAIL_REMINDER_DESC VARCHAR2(2000) Y Body of the reminder (text only)
EMAIL_REMINDER_SUMMARY VARCHAR2(200) Y summary of the reminder (text only, no newlines)
Raj