Explain the concept of the DUAL table.
Answers were Sorted based on User's Feedback
Answer / sweta
Dual is like a dummy table which contains 1 column and 1 row
in this.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / dave
The dual table is a dummy table with one row and one column. Functions that do not require any table data can be evaluated by SELECTing from the dual table. For example,
SELECT SYSDATE FROM DUAL
returns the system time and date. The DUAL table is needed to get around the fact that the SELECT command in Oracle requires a FROM clause. For example, "SELECT SYSDATE" would fail because no tables were specified.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / vijay
Dual is like a dummy table which consists of one row and one column
select sysdate from dual;
| Is This Answer Correct ? | 0 Yes | 0 No |
Typically, where is the conventional directory structure chosen for Oracle binaries to reside?
Where do you find the default index fill factor and how to change it? : sql server DBA
How can you gather statistics on a table?
how can you generate profile of pl/sql applications to identify performance bottlenecks?
Explain the use of setting GLOBAL_NAMES equal to TRUE.
What questions might be they ask in managerial round in capgemini.
What are the steps you will take, if you are tasked with securing an SQL Server?
What types of replication are supported in sql server? : sql server DBA
What is database replicaion? What are the different types of replication you can set up in SQL Server?
What is the difference between Datapump & export/import?
why Datapump is faster than traditional export and import
How would you edit your CRONTAB to schedule the running of /test/test.sh to run every other day at 2PM?
Oracle (3259)
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)