Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising

What is performance tuning?

'Performance tuning' is the term used to improve the performance of a query..that is, quickening the query execution time...a query that involves a large no of db tables may take around 20-30 min to execute for ex... In such case, the developer shud fine...

Read more

Advertising

DECODE and CASE.

Differ between DECODE and CASE. DECODE and CASE statements are very similar, but CASE is extended version of DECODE. DECODE does not allow Decision making statements in its place. select decode(totalsal=12000,’high’,10000,’medium’) as decode_tesr from...

Read more

autonomous transaction in oracle

Explain autonomous transaction. An autonomous transaction is an independent transaction of the main or parent transaction. It is not nested if it is started by another transaction. There are several situations to use autonomous transactions like event...

Read more

Advertising

Commit, Rollback and Savepoint in oracle

Explain Commit, Rollback and Savepoint. For a COMMIT statement, the following is true: Other users can see the data changes made by the transaction. The locks acquired by the transaction are released. The work done by the transaction becomes permanent....

Read more

%TYPE and %ROWTYPE in oracle

%TYPE and %ROWTYPE %TYPE is used to declare a variable that is of the same type as a specified table’s column. Emp_number emp.empno%type; %ROWTYPE is used to declare a record(variable that represents the entire row of a table). Emp_record emp%rowtype...

Read more

Advertising
<< < 10 20 30 31 32 33 34 35 36 37 > >>