What query tells you how much space a tablespace named
"test" is taking up, and how much space is remaining?
Answer / jaleel
TO CHECK TAKINGUP SPACE
SQL> select sum(bytes)/1024/1024 "TABLESPACESIZE:MB"
from dba_segments where tablespace_name='TEST';
TO CHECK FREE SPACE
SQL> select sum(bytes)/1024/1024 "TABLESPACESIZE:MB"
from dba_free_space where tablespace_name='TEST';
Is This Answer Correct ? | 3 Yes | 0 No |
Due to some maintenance being done, the sql server on a failover cluster needs to be brought down. How do you bring the sql server down? : sql server DBA
what are the performance views in an oracle rac environment?
I have A,B,C servers.i want to 3 servers jobs move to D server(target server)..how? note: i said that take the backup of msdb and restore to the target server..he said while restoring jobs replaced. what is the solution
Give two examples of referential integrity constraints.
How do you recover a datafile that has not been physically been backed up since its creation and has been deleted. Provide syntax example.
Can you take Image Backups using RMAN? . Can you use Backupsets created by RMAN with any other utility
What is dcl? : sql server DBA
What is the importance of a recovery model? : sql server DBA
What spfile/init.ora file parameter exists to force the CBO to make the execution path of a given statement use an index, even if the index scan may appear to be calculated as more costly?
which background process invoke at the time of upgradation tell me???
Give the reasoning behind using an index.
What are the different types of upgrades that can be performed in sql server? : sql server DBA