Physical structure [message #344239] |
Fri, 29 August 2008 03:12 |
ORAGENASHOK
Messages: 240 Registered: June 2006 Location: Chennai
|
Senior Member |
|
|
At the time of installation which file name is for data,control,redo log files.
Its helpful to mention the name of the file.
|
|
|
|
|
Re: Physical structure [message #344761 is a reply to message #344295] |
Mon, 01 September 2008 03:59 |
ORAGENASHOK
Messages: 240 Registered: June 2006 Location: Chennai
|
Senior Member |
|
|
If i have not created the database and i suppose to work on that on that suituation how can i know this files. There may have different name, is there is any particular extension to identify these files.
simply i want to see that files.
[Updated on: Mon, 01 September 2008 04:01] Report message to a moderator
|
|
|
|
|
|
Re: Physical structure [message #345372 is a reply to message #344239] |
Wed, 03 September 2008 04:42 |
rooneyd
Messages: 9 Registered: September 2008
|
Junior Member |
|
|
Hi,
For data files
select file_name from dba_data_files;
for control files
select name from v$controlfile;
for redo logs
select member from v$logfile;
Thanks
|
|
|