Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

default location of control trace file

RamApr 8 2009 — edited Apr 8 2009
hi all

when i want to issue :
SQL>alter database backup controlfile to trace;
command execute without error

but when i open "D:\oracle\product\10.2.0\admin\orcl\udump"
there is no any file related to trace control file ,inside this directry .

when i issue :
select c.value || '/' || instance || '_ora_' ||
ltrim(to_char(a.spid,'fm99999')) || '.trc'
from v$process a, v$session b, v$parameter c, v$thread c
where a.addr = b.paddr
and b.audsid = userenv('sessionid')
and c.name = 'user_dump_dest'
;

output of above query is :
D:\ORACLE\PRODUCT\10.2.0\ADMIN\ORCL\UDUMP/orcl_ora_2072.trc

but i dont find this file ..........
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 6 2009
Added on Apr 8 2009
7 comments
701 views