Latest Answer : Alter table < Table_Name> move tablespace ; Alter index rebuild tablespace ; ...
Latest Answer : depends upon the storage parameters. ...
Latest Answer : It Sotres the Oracle Data Dictionery ...
Latest Answer : by correctly fixing optimal size ...
Latest Answer : By Dba_segments and DBA_extents and dba_free_space views. ...
Latest Answer : by specifying the storage clause while creating table. ...
Latest Answer : Calculate the total header size.Calulate the available data space per data block.Calulcate the combined column length by the avarge row.Calultate total average row size.Calculate avarge number of rows that can fit in data block.Calulate the number of ...
Data segment are the physical areas within a database block in which the data associated with tables and clusters are stored.
Database buffers are cache in the SGA used to hold the data blocks that are read from the data segments in the database such as tables, indexes and clusters DB_BLOCK_BUFFERS
Export the user Perform import using the command imp system/manager file=export.dmp indexfile=newrite.sql. This will create all definitions into newfile.sql. Drop
Latest Answer : If its the same database use:alter table the_table move tablespace other_tablespace; alter index the_index rebuild tablespace other_tablespace; ...