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 happens on checkpoint? : sql server DBA
Explain materialized views and how they are used.
Can you redefine a table online?
What are the different types of indexes available in sql server? : sql server DBA
how can you schedule a job in database?
You create a private database link and upon
connection, fails with: ORA-2085: connects to
Oracle client is not able to connect to Oracle server although tnsnames.ora file has valid enteries. Oracle error message is “ cannot resolve net service name”. Mention any three reasons.
how does an oracle clusterware manage crs resources?
What is a system database and what is a user database? : sql server DBA
What authentication modes does sql server support? : sql server DBA
. 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?
Does transparent data encryption provide encryption when transmitting data across network? : sql server DBA
internal architecture
What do the 9i dbms_standard.sql_txt() and dbms_standard.sql_text() procedures do?
suppose you want to audit specific activities on sensitive data. How can you achieve that?