+ Write Article

SQL PL/SQL Examples, Tutorials and Articles

Published by
Bulk Collect In Oracle PL/SQL
-----------------------------------------------------
Using Oracle BULK COLLECT technique enables the PL/SQL engine to collect many rows at once and place them in a collection of array.

A collection is an ordered group of elements, all of the ...
Read More Read More 3 Comments
Published by
Oracle 11g offers a new twist on triggers, the compound trigger, a trigger than can act both before and after an update, insert or delete has occurred. This makes possible the abilty in one trigger to perform processing similar to a stored procedure without having to write such a procedure to call ...
Read More Read More
Published by
SBH
Article Preview
1. Introduction

Oracle provides Export and Import utilities for the transfer of data from one database to another. It enables writing of data i.e. Export of one database into Operating system files in binary format. These OS files in binary format can only be traced by IMPORT utility ...
Read More Read More 1 Comment
Published by
SBH
Article Preview
1. Overview

The article describes the SQL injection attacks on applications. It demonstrates the code exploitation, ways of rectification and code designing recommendations.

2. Introduction

SQL injection refers to the attack on the applications which have ...
Read More Read More 3 Comments
Published by
SBH
1. Introduction

In the last article, we simulated the attack of simulation of SQL Injection in Oracle. In the current article, we shall see the remedies of SQL Injection, code recommendations, and guidelines to avoid malicious attack on applications.

2. Using invoker’s ...
Read More Read More
Published by
SBH
Article Preview
1. Overview

In the last article, we saw through the stages involved in a Database design. These stages were the categories where the effort involved can be modularised and cumulatively integrated at start of each stage.

Now there are other logical concepts required in logical ...
Read More Read More 1 Comment
Published by
SBH
Article Preview
1. Overview of Database Design basics

An application skeleton consists of Data and Process. Both are mutually dependent on each other. Even a slightest weakness in any of the two can end up in application defects. In the article, we shall discuss the Data side of an application. We shall ...
Read More Read More
Published by
SBH
Article Preview
1. Introduction

Nested Tables or PL/SQL tables are persistent form of collections, which are used to store arbitrary number of elements. Unlike the key-value pair, here each element is identified by a sequential number, which is maintained by Oracle server.


The ...
Read More Read More
Published by
SBH
Article Preview
1. Overview

A collection is a group of elements arranged in a defined order, where each one of them can be accessed through its index. The most common forms of collections are arrays, maps or lists. In current version of programming languages, almost all of them support the use of collections. ...
Read More Read More
Published by
SBH
1. Introduction

VARRAY is the third form of collection available in Oracle, which stands for “Variable sized Arrays”. It is ordered set of fixed number of homogeneous elements, which is available in both SQL and PL/SQL. They can be physically stored in database as schema objects. ...
Read More Read More

Page 1 of 8 1 2 3 4 5 6 7