Kde…

Archive for the ‘HowTo’ Category

PL/SQL

This is a collection of basic information about Using Oracle PL/SQL. The best way to learn PL/SQL is to either read the Oracle Documentation or buy(and read) books on the subject. ‘Practise’ has not stopped making a man perfect.

Basic Structure of PL/SQL
PL/SQL stands for “Procedural Language extension to the SQL”. SQL is the most common and most popular way of querying of relational databases. It extends SQL by adding constructs found in procedural languages, resulting in a structural language that is more powerful than SQL. The basic unit in PL/SQL is a block. All PL/SQL programs are made up of blocks, which can be nested within each other. Each block performs a logical action in he program.

The following are a few defining characteristics of the language.

  • Structured, Readable
  • High Performance, Highly Integrated
  • Embeded (Inside Oracle Environment.)
  • Accessible, Standard, and Portable (for oracle development)
  • One that I really like is “It’s Easy”

A PL/SQL block of code has the following features:

DECLARE

/* Declarative section: variables, types, and local subprograms. */

BEGIN

/* Executable section: procedural and SQL statements go here. */
/* This is the only section of the block that is required. */

EXCEPTION

/* Exception handling section: error handling statements go here. */

END;

TO BE CONTINUED…

Informatica

Here are my suggestions for someone who wants to start using and learning about Informatica Products.

Join http://my.informatica.com

Here, you will find all the documentation you need on all Informatica products. They also have a section called Knowledge Base where they log recommended solutions. You can browse through these solutions to find out how Informatica goes on about solving client’s problems.

Join http://tech.groups.yahoo.com/group/informaticadevelopment/

This group is recommended by Informatica as one of the primary sources of reference and help on Informatica. This is a yahoo group where many people work together to provide most logical and ideal solutions to the questions posted. I have also found it very helpful to read through previous messages to learn about different ways of solving an issue or probem. 

Other than that, just start reading the manuals and start playing with the tools.

You are currently browsing the archives for the HowTo category.