Monday, May 21, 2012 1:10

Posts Tagged ‘Oracle’

Oracle Package

Monday, December 29, 2008 13:35

A package is a group of procedures, functions, variables and SQL statements created as a single unit. It is used to store together related objects. A package has two parts, Package Specification or spec or package header and Package Body. Package Specification acts as an interface to the package. Declaration of ...

This was posted under category: Oracle  |  Read Full Story  |  0 Comments

PLSQL

Tuesday, December 23, 2008 13:10

Begin for i in 1..10 loop insert into TABLE_NAME () values () ; end loop; end; commit;

This was posted under category: Oracle  |  Read Full Story  |  0 Comments

Oracle Function Trim

Tuesday, December 16, 2008 23:18

In Oracle/PLSQL, the trim function removes all specified characters either from the beginning or the ending of a string. The syntax for the trim function is: trim( [ leading | trailing | both [ trim_character ] ] string1 ) leading - remove trim_string from the front of string1. trailing ...

This was posted under category: Oracle  |  Read Full Story  |  0 Comments