Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
when we create table in sql or in sql * plus where the data will be stored and how this data can be retrived from that storage.
Posted

1 solution

There are lots of logical structures that are present when you see Database Architecture like tableSpaces, Schema etc.

But physically it will of course be stored in file system. The filename is defined when you actually create the database. It is a dbf file

SQL
CREATE DATABASE mynewdb
DATAFILE '/u01/oracle/oradata/mynewdb/system01.dbf' SIZE 325M REUSE
...



:)
Read the database architecture from here :
http://www.docs.hp.com/en/T1428-90056/ch15s04.html[^]

:rose:
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900