Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A good reference for Oracle PL/SQL

Tags:

sql

oracle

plsql

What are the best references for Oracle PL/SQL? I have an excellent knowlege of SQL-92 and of MS-SQL extensions, but now I'm working with Oracle and I'm struggling to find good references for the PL/SQL language.

I am looking for references for the following:

  • Variable
  • Loops
  • Cursor
  • Packages
  • Trigger
  • Stored Procedures
  • Temporary Tables

Thanks so much.

like image 366
David Waters Avatar asked Jan 11 '10 12:01

David Waters


People also ask

Is Oracle PL SQL good for Career?

PL SQL is an integrated and high-performance database language that can work well with other languages like C++, Java, and C#. However, if you want to write a code that is going to interact with Oracle database, there is no better language than PL SQL for this job.

Is Oracle PL SQL outdated?

The answer is that PL/SQL is not growing, but not going away either. Because it is used in the Oracle database, and the Oracle database is a fixture of enterprise systems world-wide, it will outlive you. High-performance batch processing has to happen close to the data, so PL/SQL will continue to rule in this area.

What is PL SQL PDF?

PL/SQL is a combination of SQL along with the procedural features of programming languages. It was developed by Oracle Corporation in the early 90's to enhance the capabilities of SQL. PL/SQL is one of three key programming languages embedded in the Oracle Database, along with SQL itself and Java.


1 Answers

As Klaus says the online documentation is pretty good. Start with the 2-Day Application Developer's Guide. If you're using 11gR2, you'll want to read the most recent version of the PL/SQL Language Reference. Newer Oracle releases have updated versions of the documents.

But if you want to buy a book, then Steven Feuerstein's Oracle PL/SQL Programming is the one.

like image 169
APC Avatar answered Sep 21 '22 13:09

APC