Give two examples of how you might determine the structure
of the table DEPT.
Answers were Sorted based on User's Feedback
Answer / amrutharao d
1. SQL>Desc Dept
2. SQL>Select Table_name,Column_name,Data_type,nullable from
user_tab_columns wheRE table_name = 'DEPT'
3. SQL>set long 99999
SQL>select dbms_metadata.get_ddl('TABLE','DEPT') from
dual;
Is This Answer Correct ? | 8 Yes | 1 No |
What is the cache hit ratio, what impact does it have on performance of an Oracle database and what is involved in tuning it?
Where would you look for errors from the database engine?
How many memory layers are in the shared pool?
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
What authentication modes does sql server support? : sql server DBA
hi, suppose i created one table after few days i did some insert,update how can i know when will i did ddl or dml operation is undergone on that table
Describe what redo logs are.
What does coalescing a tablespace do?
What's the benefit of "dbms_stats" over "analyze"?
Query processing is slow(eg select query)how will u solve that
What is RAID and what are different types of RAID configurations?
Give the stages of instance startup to a usable state where normal users may access it.