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 |
What is the difference between a TEMPORARY tablespace and a PERMANENT tablespace?
What are statistics, under what circumstances they go out of date, how do you update them?
what are the types of connection load-balancing?
Compare and contrast TRUNCATE and DELETE for a table.
What are the ways tablespaces can be managed and how do they differ?
Give two examples of how you might determine the structure of the table DEPT.
How would you go about verifying the network name that the local_listener is currently using?
Does transparent data encryption provide encryption when transmitting data across network? : sql server DBA
Name three advisory statistics you can collect.
How would you extract DDL of a table without using a GUI tool?
suppose you want to audit specific activities on sensitive data. How can you achieve that?
Give two examples of referential integrity constraints.
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)