Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: stored procedures?

Re: stored procedures?

From: Hans Forbrich <forbrich_at_yahoo.net>
Date: Wed, 21 Jul 2004 23:39:59 GMT
Message-ID: <j9DLc.107346$eO.93572@edtnps89>


Mike wrote:

> I have used oracle's pl/sql in the past for stored procedures. I
> was asked yesterday to explain what stored procedures are and I
> wondered are there other languages that are supported for stored
> procedures in oracle as they are in postgres? Meaning postgres
> supports it's internal procedural language, and java, and perl,
> and tcl. I know oracle supports its own internal procedural
> language and I think also java. Does it also support something
> like cobol?
>
> Mike

Stored procedures are libraries of business logic and utilities that are stored in the database environment which can be triggered in response to one or more events:

_Oracle can store PL/SQL and Java._ These can in turn call out of the database to .DLLs and .SOs (Shared Objects) using the included EXTPROC capability.

Oracle inherently supports external events such as:

Some examples of Oracle's supplied Stored Procedures are:

For more, look at "Supplied Java Packages Reference" and "Supplied PL/SQL Packages and Types Reference" at http://docs.oracle.com (go to database version of choice, View Library, List Books)

HTH
/Hans Received on Wed Jul 21 2004 - 18:39:59 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US