ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105 [message #474964] |
Fri, 10 September 2010 06:58 |
nehaverma
Messages: 80 Registered: January 2010 Location: JAIPUR
|
Member |
|
|
Hello
I got this error when I am executing a procedure
ORA-31603: object "VEHICLE_IDLE_TIME_DETAILS" of type TABLE not found in schema "TLC"
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
ORA-06512: at "SYS.DBMS_METADATA", line 3261
ORA-06512: at "SYS.DBMS_METADATA", line 4863
ORA-06512: at line 1
ORA-06512: at "DPC_SMART_ADMIN.CREATE_COMPANY_NEWEST", line 423
ORA-06512: at line 1
Please tell me what kind of error is this.And what action I should take against this error.
While I have this table(VEHICLE_IDLE_TIME_DETAILS
) on TLC schema. I checked through all_objects then what is the problem here.
Regards//
Neha
|
|
|
|
Re: ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105 [message #474981 is a reply to message #474964] |
Fri, 10 September 2010 10:31 |
|
Michel Cadot
Messages: 68729 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
The error is:
Quote:ORA-31603: object "VEHICLE_IDLE_TIME_DETAILS" of type TABLE not found in schema "TLC"
This means that either it does not exist, either the one that tries to refer it has not the privilege to do it.
Regards
Michel
|
|
|