Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the oracle db stored in windows

Where are all the tables stored in oracle in windows?

I mean in which folder in windows.

like image 729
Nirmik Avatar asked Sep 14 '25 09:09

Nirmik


1 Answers

select * from dba_data_files; -- The database files (this is where the tables live)
select * from v$logfile; -- The online redo logs
select * from v$controlfiles; -- The controlfiles
like image 61
Rob van Laarhoven Avatar answered Sep 17 '25 02:09

Rob van Laarhoven