What are the attributes of SQL*PLUS ?

Answers were Sorted based on User's Feedback



What are the attributes of SQL*PLUS ?..

Answer / chandra shekhar

Dear Pushkar, SQL*PLUS commands are not used to manipulate the data in tables. Its DML commands in SQL are used to manipulate the date in the table like INSERT, UPDATE, DELETE, MERGE.

Table definition commands comes under DDL commands like CREATE, ALTER, DROP, TRUNCATE.

Some of the Attributes of SQL*PLUS commands are
1. It need not be terminated by semi colon
2. It can be abbreviated
Eg:- DESCRIBE can be written as DESC
APPEND can be written as a
RUN can be written as r

regards
j

Is This Answer Correct ?    11 Yes 0 No

What are the attributes of SQL*PLUS ?..

Answer / pushkar

1. /SQL*Plus commands are used to manipulate data in tables.
2. /SQL*Plus commands manipulate table definitions in the
database.

Is This Answer Correct ?    5 Yes 8 No

Post New Answer

More SQL PLSQL Interview Questions

what are the features and advantages of object-oriented programming? : Sql dba

0 Answers  


What are the types of functions in sql?

0 Answers  


What is a table?

0 Answers  


How does index help in query performance?

0 Answers  


How exception is different from error?

0 Answers  






Why stored procedures are faster than query?

0 Answers  


What is a file delimiter?

0 Answers  


ename empno deptno amar 1 10 akbar 2 20 anthonny 3 30 jonathan 4 40 write a procedure to dispaly the column values ina row separated by a deleimiter eg - input - select ename from emp '|' output - amar|akbar|anthony|jonathan input - select empno from emp '@' o/p - 1@2@3@4 input - select deptno from emp '/' o/p - 10/20/30/40 Pls answer this questn.

2 Answers  


what are all the different types of indexes? : Sql dba

0 Answers  


What is the difference between function and procedure in pl/sql?

0 Answers  


How does one use sql*loader to load images, sound clips and documents? : aql loader

0 Answers  


What is on delete restrict?

0 Answers  


Categories