.ora-code.com

Links
Home
Oracle DBA Forum
Frequent Oracle Errors
TNS:could not resolve the connect identifier specified
Backtrace message unwound by exceptions
invalid identifier
PL/SQL compilation error
internal error
missing expression
table or view does not exist
end-of-file on communication channel
TNS:listener unknown in connect descriptor
insufficient privileges
PL/SQL: numeric or value error string
TNS:protocol adapter error
ORACLE not available
target host or object does not exist
invalid number
unable to allocate string bytes of shared memory
resource busy and acquire with NOWAIT specified
error occurred at recursive SQL level string
ORACLE initialization or shutdown in progress
archiver error. Connect internal only, until freed
snapshot too old
unable to extend temp segment by string in tablespace
Credential retrieval failed
missing or invalid option
invalid username/password; logon denied
unable to create INITIAL extent for segment
out of process memory when trying to allocate string bytes
shared memory realm does not exist
cannot insert NULL
TNS:unable to connect to destination
remote database not found'>ora-02019
exception encountered: core dump
inconsistent datatypes
no data found
TNS:operation timed out
PL/SQL: could not find program
existing state of packages has been discarded
maximum number of processes exceeded
error signaled in parallel query server
ORACLE instance terminated. Disconnection forced
TNS:packet writer failure
see ORA-12699
missing right parenthesis
name is already used by an existing object
cannot identify/lock data file
invalid file operation
quoted string not properly terminated
find file_id or block_id from data block address

find file_id or block_id from data block address

2005-12-26       - By Prem
Reply:     1     2     3     4     5     6  

Hi Tanel , Thanks a lot for your reply.

I started this thread to investigate the following error in our v7.3.4
PROD database alert log.
ORA-00600 (See ORA-00600.ora-code.com): internal error code, arguments: [12700], [537037017], [5],
[], [], [], [], []

Metalink doc says that the second argument is the data block address.
We don't have
the packages you said on our PROD database. And

SELECT SEGMENT_NAME, SEGMENT_TYPE, OWNER FROM SYS.DBA_EXTENTS WHERE
537037017 BETWEEN BLOCK_ID AND BLOCK_ID + BLOCKS - 1;

This did not give me any result. My doubt is whether we can put the data block
address ( 537037017) in the above query !!!  Is that right ?

I also tried the following in another database which has got the
packages you said :
(is it okay to execute the below on any database which has got those packages
or is it to be done on the problem database only)

sys.dbms_utility.data_block_address_block(537037017) = 166105
sys.dbms_utility.data_block_address_file(537037017) = 128

With the above results , on the PROD database i tried :

SELECT SEGMENT_NAME, SEGMENT_TYPE, OWNER FROM SYS.DBA_EXTENTS WHERE
FILE_ID = 128 AND 166105 BETWEEN BLOCK_ID AND
BLOCK_ID + BLOCKS - 1;

which gave me no results.

Is there any other way i can find out the file_id / object# from the
above ORA-600 (See ORA-600.ora-code.com) error.
The trace file too did not give me any pointer about the file# or object# .

This being the case, how do i find which is the object in problem ?
Can you help me on this ?

Thanks and Regards,
Prem J.

Tanel Wrote :
>>Hi,

>>In newer versions, there are two functions under
dbms_utility.data_block_address_block
>>and data_block_address_file.dbms_utility.make_data_block_address
works the other way >too. If 7.3.4 doesn't have those functions, you
could just use a newer db version for
>>doing the calculations.

>>Tanel.
--
http://www.freelists.org/webpage/oracle-l