Give two examples of how you might determine the structure
of the table DEPT.
Answer Posted / 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 |
Post New Answer View All Answers
What types of replication are supported in sql server? : sql server DBA
How to start SQL Server in minimal configuration mode?
what do you understand by fine-grained auditing?
Why would you call update statistics? : sql server DBA
What are the differences in clustering in sql server 2005 and 2008 or 2008 r2? : sql server DBA
What are the new features in sql server 2005 when compared to sql server 2000? : sql server DBA
What happens on checkpoint? : sql server DBA
Provide an example of a shell script which logs into SQLPLUS as SYS, determines the current date, changes the date format to include minutes & seconds, issues a drop table command, displays the date again, and finally exits.
Define the SGA and: How you would configure SGA for a mid-sized OLTP environment? What is involved in tuning the SGA?
what is asm?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
i have 10gp file.now i need store in database..but database have only 7gb memory only..how do u store the file ?
. I have my backup RMAN script called "backup_rman.sh". I am on the target database. My catalog username/password is rman/rman. My catalog db is called rman. How would you run this shell script from the o/s such that it would run as a background process?
What are the commands you'd issue to show the explain plan for "select * from dual"?
what is the use of recording information about current session?