•  »
  • tagged plsql

1-10 of 20 Hubssort by Hot Best Latest

How to convert between DBMS_SQL and Native Dynamic SQL in Oracle 11g70

How to convert between DBMS_SQL and Native Dynamic SQL in Oracle 11g

This Article is intended for plsql programmer, who may not be aware of the new features of Oracle 11g.One of those new features is to switch between dynamic SQL and DBMS_SQL. You may asking why to switch to DBMS_SQL while native dynamic SQL(NDS) is...

0 comments    plsql dbms-sql to-cursor-number
sql pl/sql USE AND NEED OF PACKAGES WITH PRIVATE FUNCTIONS63

sql pl/sql USE AND NEED OF PACKAGES WITH PRIVATE FUNCTIONS

SOMETIMES WE NEED TO DEFINE FUNCTIONS ACCESSIBLE TO US ONLY AND FOR THAT PROCEDURE WITHIN THE PACKAGE ONLY. PACKAGES WITH PRIVATE FUNCTIONS ARE USED FOR THE SAME TO PROVIDE INCREASED SECURITY.

0 comments    life how to technology
FINDING SALGRADE THROUGH PROCEDURE WHICH INTURNS CALLS FUNCTION USING PL/SQL60

FINDING SALGRADE THROUGH PROCEDURE WHICH INTURNS CALLS FUNCTION USING PL/SQL

THIS PROGRAM GIVES IDEAS HOW TO LINK TWO OR MORE TABLES EFFCIENTLY. ALSO EXPLAINS USE OF EXCEPTIONS. HERE WE ARE FIRST WRITING A FUNCTION WHICH RETURNS A VALUE. THE VALUE IS PROCESSED IN A PROCEDURE. THE PROCEDURE IS CALLED BY A BLOCK.

0 comments    advice how to tips
BEST EXAMPLE OF PACKAGES WITH PROCEDURES AND PRIVATE FUNCTIONS SELECT IN59

BEST EXAMPLE OF PACKAGES WITH PROCEDURES AND PRIVATE FUNCTIONS SELECT IN

THE BEST PART OF PACKAGES WITH PROCEDURES, FUNCTIONS CAN BE DELIEVERED WHEN THEY ARE PROVIDED WITHOUT ANY PARAMETERS.

0 comments    happiness best joy
Embedding function in a procedure61

Embedding function in a procedure

this explains how to embed function in a procedure. function can return only 1 value.procedures can return many values.

0 comments    process program procedure
use of packages in pl/sql56

use of packages in pl/sql

A PACKAGE is a PL/SQL construct that allows related objects to be stored together.

1 comment    design body performance
VIEWS IN PL/SQL59

VIEWS IN PL/SQL

A view is an object that contains no data of its own.Views are easy to use and implement as they are not tables. View definition is stored in data dictionary. Hence the changes are automatically reflected in the views.

0 comments    data create tables
How to Optimize Database Code56

How to Optimize Database Code

I believe that you are not among the people who think money is for free. The reason for saying this is because you are probably aware that financial costs are much higher if your source code is already...

0 comments    sql optimize database
Practice PL/SQL Examples - Part 178

Practice PL/SQL Examples - Part 1

DECLARE PROCEDURE print_number( n1 NUMBER) IS tot NUMBER := n1 ; BEGIN FOR i IN 1 .. 10 LOOP dbms_output.put_line(tot); tot := tot + 1; ...

6 comments    tips easy learn
Oracle Exceptions - User Defined and Oracle Defined 44

Oracle Exceptions - User Defined and Oracle Defined

http://forums.oraclepassport.com 1. What are exceptions in Oracle? Exceptions are the ways in which Oracle could handle runtime errors in a PL/SQL block. Exceptions are always useful to debug the code as...

user oracle exceptions
Please wait working