what is procedure in sql?
Answers were Sorted based on User's Feedback
PL/SQL procedures behave very much like procedures in other
programming language. Here is an example of a PL/SQL
procedure addtuple1 that, given an integer i, inserts the
tuple (i, 'xxx') into the following example relation:
CREATE TABLE T2 (
a INTEGER,
b CHAR(10)
);
CREATE PROCEDURE addtuple1(i IN NUMBER) AS
BEGIN
INSERT INTO T2 VALUES(i, 'xxx');
END addtuple1;
.
run;
A procedure is introduced by the keywords CREATE PROCEDURE
followed by the procedure name and its parameters. An
option is to follow CREATE by OR REPLACE. The advantage of
doing so is that should you have already made the
definition, you will not get an error. On the other hand,
should the previous definition be a different procedure of
the same name, you will not be warned, and the old
procedure will be lost.
There can be any number of parameters, each followed by a
mode and a type. The possible modes are IN (read-only), OUT
(write-only), and INOUT (read and write). Note: Unlike the
type specifier in a PL/SQL variable declaration, the type
specifier in a parameter declaration must be unconstrained.
For example, CHAR(10) and VARCHAR(20) are illegal; CHAR or
VARCHAR should be used instead. The actual length of a
parameter depends on the corresponding argument that is
passed in when the procedure is invoked.
Following the arguments is the keyword AS (IS is a
synonym). Then comes the body, which is essentially a
PL/SQL block. We have repeated the name of the procedure
after the END, but this is optional. However, the DECLARE
section should not start with the keyword DECLARE. Rather,
following AS we have:
... AS
<local_var_declarations>
BEGIN
<procedure_body>
END;
.
run;
The run at the end runs the statement that creates the
procedure; it does not execute the procedure. To execute
the procedure, use another PL/SQL statement, in which the
procedure is invoked as an executable statement. For
example:
BEGIN addtuple1(99); END;
.
run;
The following procedure also inserts a tuple into T2, but
it takes both components as arguments:
CREATE PROCEDURE addtuple2(
x T2.a%TYPE,
y T2.b%TYPE)
AS
BEGIN
INSERT INTO T2(a, b)
VALUES(x, y);
END addtuple2;
.
run;
Now, to add a tuple (10, 'abc') to T2:
BEGIN
addtuple2(10, 'abc');
END;
.
run;
The following illustrates the use of an OUT parameter:
CREATE TABLE T3 (
a INTEGER,
b INTEGER
);
CREATE PROCEDURE addtuple3(a NUMBER, b OUT NUMBER)
AS
BEGIN
b := 4;
INSERT INTO T3 VALUES(a, b);
END;
.
run;
DECLARE
v NUMBER;
BEGIN
addtuple3(10, v);
END;
.
run;
Note that assigning values to parameters declared as OUT or
INOUT causes the corresponding input arguments to be
written. Because of this, the input argument for an OUT or
INOUT parameter should be something with an "lvalue", such
as a variable like v in the example above. A constant or a
literal argument should not be passed in for an OUT/INOUT
parameter.
We can also write functions instead of procedures. In a
function declaration, we follow the parameter list by
RETURN and the type of the return value:
CREATE FUNCTION <func_name>(<param_list>) RETURN
<return_type> AS ...
In the body of the function definition, "RETURN
<expression>;" exits from the function and returns the
value of <expression>.
To find out what procedures and functions you have created,
use the following SQL query:
select object_type, object_name
from user_objects
where object_type = 'PROCEDURE'
or object_type = 'FUNCTION';
To drop a stored procedure/function:
drop procedure <procedure_name>;
drop function <function_name>;
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / sudarshan
Procedure is a collection of simple DML statements used to
perform certain meaningful operation stored in the database
and used whenever and wherever required.
| Is This Answer Correct ? | 1 Yes | 0 No |
How do you debug a procedure in sql server?
i have account table which consists of account name,card no and card no consists 16 digits now i want to retrieve the data if card no starts from 4 then it should print visa and if it starts from 5 then it should print master so plse help me to write simple query with out store procs .
What does ss stand for sexually?
How do you persist objects, permissions in tempdb
What are the advantages of using cte?
Comment,Datatypes are unlimited
Explain the purpose of indexes?
What is the language structure to add a record to a table?
how can you attach more than 20 ldf files in sql server
What does it mean to have quoted_identifier on? What are the implications of having it off?
Department ----------- salary Deptname 1000 A 3000 A 2000 B 3000 B 4000 C 5000 C select the deptname where salary >=5000 result should be: Deptname --------- C please post only executed query in SQL server 2005 Asked By: Md. Niyaz
Give main differences between "Truncate" and "Delete".
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)