1.In which language Oracle has been developed?Oracle has been developed using C Language. 2.Difference between varchar and varchar2 data types?Varchar can store upto 2000 bytes and varchar2 can store upto 4000 bytes. Varchar will occupy space for NULL values and Varchar2 will not occupy any space. Both are differed with respect to space. 3.What is RAW datatype?RAW datatype is used to store values in binary data format. The maximum size for a raw in a table in 32767 bytes. 4.What is the use of NVL function?The NVL function is used to replace NULL values with another or given value. Example is – 5.Whether any commands are used for Months calculation? If so, What are they?In Oracle, months_between function is used to find number of months between the given dates. Example is – 6.What are nested tables?Nested table is a data type in Oracle which is used to support columns containing multi valued attributes. It also hold entire sub table. 7.What is COALESCE function?COALESCE function is used to return the value which is set to be not null in the list. If all values in the list are null, then the coalesce function will return NULL. 8.What is BLOB datatype?A BLOB data type is a varying length binary string which is used to store two gigabytes memory. Length should be specified in Bytes for BLOB. 9.How do we represent comments in Oracle?Comments in Oracle can be represented in two ways –
10.What is DML?Data Manipulation Language (DML) is used to access and manipulate data in the existing objects. DML statements are insert, select, update and delete and it won’t implicitly commit the current transaction. 11.What is the difference between TRANSLATE and REPLACE?Translate is used for character by character substitution and Replace is used substitute a single character with a word. 12.How do we display rows from the table without duplicates?Duplicate rows can be removed by using the keyword DISTINCT in the select statement. 13.What is the usage of Merge Statement?Merge statement is used to select rows from one or more data source for updating and insertion into a table or a view. It is used to combine multiple operations. 14.What is NULL value in oracle?NULL value represents missing or unknown data. This is used as a place holder or represented it in as default entry to indicate that there is no actual data present. 15.What is USING Clause and give example?The USING clause is used to specify with the column to test for equality when two tables are joined. 16.What is key preserved table?A table is set to be key preserved table if every key of the table can also be the key of the result of the join. It guarantees to return only one copy of each row from the base table. 17.What is WITH CHECK OPTION?The WITH CHECK option clause specifies check level to be done in DML statements. It is used to prevent changes to a view that would produce results that are not included in the sub query. 18.What is the use of Aggregate functions in Oracle?Aggregate function is a function where values of multiple rows or records are joined together to get a single value output. Common aggregate functions are – • Average
• Count • Sum 19.What do you mean by GROUP BY Clause?A GROUP BY clause can be used in select statement where it will collect data across multiple records and group the results by one or more columns. 20.What is a sub query and what are the different types of subqueries?Sub Query is also called as Nested Query or Inner Query which is used to get data from multiple tables. A sub query is added in the where clause of the main query.
|