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

SQL Query – Order of execution

When you execute a SQL Query, it will be executed in the following sequence. FROM ON JOIN WHERE GROUP BY HAVING SELECT DISTINCT ORDER BY TOP     When a query is submitted to the database, it is executed in the following order: FROM clause WHERE clause...

Read more

Advertising

What is bulk collect?

What is bulk collect? This keyword ask the SQL engine to return all the rows in one or several collections before returning to the PL/SQL engine so, there is one single roundtrip for all the rows between SQL and PL/SQL engine. BULK COLLECT cannot be use...

Read more

Trigger Disadvantages

-->Not Compiled -->No SELECT Trigger Support -->Complete Trigger Failure -->Disabled Triggers -->No Version Control -->Update OF COLUMN -->No Support of SYS Table Triggers -->Mutating Triggers -->Hidden Behavior

Read more

Advertising

What are attributes of implict cursor?

What are attributes of cursor? · SQL%ROWCOUNT: Number of rows affected by most recent SQL statement. · SQL%FOUND: Boolean attribute that evaluates to TRUE if most recent SQL statement affects one or more rows. · SQL%NOTFOUND: Boolean attribute that evaluates...

Read more

How to debug the procedure or function?

How to debug the procedure or function? By using DBMS_OUTPUT & DBMS_DEBUG oracle supplied package. ALTER PROCEDURE procedurename DEBUG; OR ALTER PROCEDURE procedurename PLSQL_DEBUG=TRUE OR We can use autonomous_transaction procedure to create log & put...

Read more

Advertising

How to drop package body only?

DROP PACKAGE [BODY] The DROP PACKAGE statement removes a stored package from the database. Both the specification and the body are dropped. DROP PACKAGE BODY removes only the body of the package. Required privilege No privilege is required for the package...

Read more

<< < 1 2 3 4 5 6 7 8 9 10 20 30 40 > >>