-
Tablespace Management
What are the ways tablespaces can be managed and how do they differ?
-
Is (DDL) Data Manipulation Language statements Autocommit?
No. Only the DDL(Data Definition Language )statements like create,alter,drop,truncate are auto commit.But the DML statements are should be saved by giving the commit statement after execute the query
-
-
-
-
-
-
Import MS-Access Tables
How to import tables from MS-Access to Oracle?
-
-
-
-
What is the difference between ROUND and TRUNC function in SQL? ">
What is the difference between ROUND and TRUNC function in SQL?
Both TRUC and ROUND are single value functions.
TRUNC:
TRUNC function truncates that is in other words cuts off to the digits specified.
The general syntax of TRUNC function is:
TRUNC(number, precision);
For instance:
Suppose the value of salary in employee table for ename= ’Exforsys’ is 55.666
Then
Select... -
What are the commands that come in the category of DML in SQL?
DML refers to Data Manipulation Statements. That is used for accessing and modifying values or data present in the database.
The commands that come in the category of DML in SQL
INSERT
SELECT
DELETE
UPDATE
INSERT:
This command is used to insert rows into the table.
SYNTAX:
INSERT INTO tablename... -
-
-
-
-
-
-
Oracle Basics Interview Questions
Ans