|
Oracle Home |
|
Home > Oracle Database Administration (DBA) > Architecture > Oracle Physical Database Structure (Q & A) |
|
Oracle Database 10g Administration (DBA): Architecture |
|---|
Oracle Physical Database Structure (Q & A) |
|
1. How could I know the real size of a particular database (on the disks) ?
NOTE: However, the temporary space and log space could be not added. If we want we can add also the space for the archive logs.
2. How could I know in which file a particular table is stored ?
SELECT distinct f.FILE_NAME FROM dba_extents e, dba_data_files f WHERE f.file_id = e.file_id and e.OWNER = '<Schema_Name>' and e.SEGMENT_NAME = '<Table_Name>';
3. How could I know the real size of a particular table (on the disks) ?
SELECT round(SUM(BYTES)/1024/1024,2) "Table Size(M)" FROM DBA_EXTENTS WHERE OWNER = '<Schema_Name>' AND SEGMENT_NAME = '<Table_Name>';
4. Which are the Oracle Physical Database Structure Components ?
Mandatory: data files, redo log files, control files, parameter files Optional: archivelog files, password file
5. How could I know the real size of a particular schema (on the disks) ?
SELECT FROM DBA_SEGMENTSWHERE owner = '<Schema_Name>';
More information about this subject ( Oracle Physical Database Structure ) you can get from www.in-oracle.com
|
|
Home > Oracle Database Administration (DBA) > Architecture > Oracle Physical Database Structure (Q & A) |
|
Different Romanian Links/ Linkuri romanesti diferite |
Disclaimer: The views expressed on this web site are my own and do not reflect the views of Oracle Corporation. You may use the information from this site only at your risk. Copyright (c) 2009-2011 Paul Catalin Tomoiu. All rights reserved.