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

PL/SQL Parameterized Cursor

PL/SQL Parameterized Cursor PL/SQL Parameterized cursor pass the parameters into a cursor and use them in to query. PL/SQL Parameterized cursor define only datatype of parameter and not need to define it's length. Default values is assigned to the Cursor...

Read more

Advertising

PL/SQL Functions

PL/SQL Functions PL/SQL functions block create using CREATE FUNCTION statement. The major difference between PL/SQL function or procedure, function return always value where as procedure may or may not return value. When you create a function or procedure,...

Read more

PL/SQL Explicit Cursor

PL/SQL Explicit Cursor Explicit Cursor which are construct/manage by user itself call explicit cursor. User itself to declare the cursor, open cursor to reserve the memory and populate data, fetch the records from the active data set one at a time, apply...

Read more

PL/SQL Cursors For Loop

PL/SQL Cursors For Loop ----------------------------------- PL/SQL cursor FOR loop has one great advantage of loop continued until row not found. In sometime you require to use explicit cursor with FOR loop instead of use OPEN, FETCH, and CLOSE statement....

Read more

Advertising

plsql triggers

Trigger Triggering SQL statement : SQL DML (INSERT, UPDATE and DELETE) statement that execute and implicitly called trigger to execute. Trigger Action : When the triggering SQL statement is execute, trigger automatically call and PL/SQL trigger block...

Read more

PL/SQL RAISE_APPLICATION_ERROR

PL/SQL RAISE_APPLICATION_ERROR In PL/SQL RAISE_APPLICATION_ERROR function use to assign exception name and exception error code. Define RAISE_APPLICATION_ERROR function syntax, raise_application_error(error_number, error_message); Example Code raise_app_error.sql...

Read more

PL/SQL pragma EXCEPTION_INIT

PL/SQL pragma EXCEPTION_INIT pragma EXCEPTION_INIT : Pragma is a keyword directive to execute proceed at compile time. pragma EXCEPTION_INIT function take this two argument, exception_name error_number You can define pragrma EXCEPTION_INIT in DECLARE...

Read more

PL/SQL TCL COMMANDS

PL/SQL Transaction You can use the COMMIT, ROLLBACK, SAVEPOINT, and SET TRANSACTION command to control the transaction. COMMIT : COMMIT command to make changes permanent save to a database during the current transaction. ROLLBACK : ROLLBACK command execute...

Read more

Advertising

LOB types in PLsql

LOB data types used to store large objects such as image, video, graphics, text or audio. Maximum size is up to 4 Gigabytes. Following are the LOB data types in PL/SQL: BFILE BFILE data type is used to store large binary objects into Operating System...

Read more

SQL Server Interview Questions and Answers

Question: What is NO COUNT used for? Answer: It’s used to check whether the sql statement executed successfully or not. When no count is on than this message will not return and while it off then sql server returns the message. Question: What is SET ANSI...

Read more

<< < 10 11 12 13 14 15 16 17 18 19 20 30 > >>