iSelfSchooling.com - Copyright © 1999-2007 iSelfSchooling.com  References  Job Openings  |  Secure Login
    Home  | Search more...  |  FREE Online VIDEO Oracle Training  |  Gift Store  |  Bookstore

   Unlimited access!   

    Oracle  Syntax  | Suggestions Your Contribution  |  FREE Legal Forms

 

Email2aFriend Homepage us! |  Bookmark   -  Copyright & User Agreement

Products/Services

 Vision/Mission

 Community Sharing

 Services

  Products

 Biography

 Contact Us

 FAQ

 Current News

 Website Traffic

 Bookstore

 FREE Training

 SQL

 PL/SQL

 Forms 

 Reports

 Other TOOLS

 Fundamentals

 Performance

 OEM

 Application Server

 Grid Control

 Articles

 Prepare for OCP

Oracle SYNTAX

 Oracle Functions

 Oracle Syntax

 Oracle 10g Syntax

  PL/SQL Syntax

UNIX and more...

 UNIX for DBAs

 LINUX for DBAs

 DB using PHP

  A+ Certification

 Basics of JAVA  

 Tips of  SEO

Finance/Jobs

 Financial Aid

 Skilled

 Oracle

 Jobs

  Magazine

More Training

 Q & Answers

 SQL-PL/SQL

 DBA

 Developer

 Important Notes

 Case Studies

 9i New Features

 10g New Features

 10g Qs/As

 Grid Control

 OracleAS # I

 OracleAS # II

  LDAP and OID

  HTTP Server

 Instructor-Led

  Virtual Hosts

 Community Sharing

More to know...

Acknowledgement**

 FREE Legal Forms

 Who is who

 Market Place

 University Directory

 Advisory Articles

 Links...

 

 

SQL-PL/SQL

Manuscripts for Hands-On Oracle Installation

Hands-On 01-Introduction 1(Important notes to remember)

Learn about the important notes to remember when you do Oracle installation. The Oracle database and Developer are very easy to install.  The only difficulty that you may face is:  How to establish connectivity between the Oracle developer tools and the Oracle database on the same machine such as windows98.  - Manuscript


Hands-On 02-Basic Introduction

Understanding of the basic definition of elements, fields, and items, columns, records, and rows, tables, datatypes, primary keys and foreign keys. - Manuscript


Hands-On 03-Installation and connectivity (TEXT)

Learn how to establish a connection from Developer to Oracle Database Personal Edition. - Manuscript


Hands-On 04-Installation and connectivity

The Oracle database and Developer are very easy to install.  The only difficulty that you may face is:  How to establish connectivity between the Oracle developer tools and the Oracle database on the same machine such as windows98.  Learn how to make this connectivity. - Manuscript


Hands-On 05-De-installation-Remove Oracle (TEXT)

How to remove all Oracle products, Oracle services, and Oracle registry entries from your computer. - Manuscript


Hands-On 06-Create "iself" user

Learn how to run the script to create a user named "iself" with password "schooling" and all its tables. - Manuscript


 

Manuscripts for Hands-On SQL

Hands-On 01(SQL)

Learn how to select data from Oracle - Manuscript


Hands-On 02(SQL)

Learn how to select data from Oracle using advanced data selection in Oracle - Manuscript


Hands-On 03(SQL)

Learn how to create, drop, and maintain Oracle Database objects  - Manuscript


Hands-On 04(SQL)

Learn more how to create, drop, and maintain other Database Objects in Oracle - Manuscript


Hands-On 05(PL/SQL)

Learn how to use command line editor which it is native to SQL*PLUS. - Manuscript


Hands-On 06(PL/SQL)

Learn how Oracle makes provisions for you to utilize your favorite text editor to edit the statement created in "afiedt.buf," the file into which SQL*PLUS stores the most recently executed SQL statement. - Manuscript


Manuscripts for Hands-On PL/SQL I

Hands-On 01(PL/SQL)

Learn how to use command line editor which it is native to SQL*PLUS. - Manuscript


Hands-On 02(PL/SQL)

Learn how Oracle makes provisions for you to utilize your favorite text editor to edit the statement created in "afiedt.buf," the file into which SQL*PLUS stores the most recently executed SQL statement. - Manuscript


Hands-On 03(PL/SQL)

Learn the basic fundamentals of PL/SQL block. - Manuscript


Hands-On 04(PL/SQL)-Explicit Cursor Handling

Learn how to declare a cursor to list the department name (dname), total number of employees (ttemp), total salary (ttsal), and average salary (avsal) for each department from the department table and employee table. - Manuscript


Hands-On 05(PL/SQL)-Controlling Process Flow

Learn how to modify the previous PL/SQL block to use the "FOR LOOP" statement vs simple "LOOP."  - Manuscript


Hands-On 06(PL/SQL)-Populating table using PL/SQL

Learn how to create a table with a primary key constraint and then populate the table. - Manuscript


Hands-On 07(PL/SQL)-Cursor Parameter

Learn how to use the “test_for_loop2” file from the previous Hands-On.  Then modify the PL/SQL block that the cursor only calculate the department statistics for a specific department.  For example the department number 10. - Manuscript


Hands-On 08(PL/SQL)-How to use EXECPTION

Learn how to modify the “test_for_loop3” file from previous Hands-On.  You need to add exception to the PL/SQL block.  - Manuscript


Manuscripts for Hands-On PL/SQL II (Program Units)

Hands-On 01 (PL/SQL)-Create PL/SQL Procedure

Learn how to create a table called "cust_stat."  This table keeps the customers last name (customer_lname), the traded date (trade_date), and the total stock market value (portfolio_value) for that traded date. - Manuscript


Hands-On 02 (PL/SQL)-Creating PL/SQL Stored Procedure

Learn how to write a PL/SQL stored procedure to add a record into the department table (dept).  You use three input parameters to pass the department's columns (Department number “deptno,” department name “dname,” and department location “loc”); and use one output parameter to check the status of the insert transaction. - Manuscript


Hands-On 03 (PL/SQL)-Creating PL/SQL Stored Procedure

Learn how to write a PL/SQL stored procedure to remove a record from the department table (dept).  You use one input parameter to pass the department number (deptno); and use one another output parameter to check the status of the delete transaction. - Manuscript


Hands-On 04 (PL/SQL)-Creating PL/SQL Function

Learn how to write a PL/SQL Function to concatenate the customer's last name and first name to be separated by a comma. For example (lastname, firstname). - Manuscript


Hands-On 05 (PL/SQL)-Creating PL/SQL Function using parameters

Learn how to write a PL/SQL Function to return the department name (dname).  You use one input parameter to pass the department number (deptno) and return its department name. - Manuscript


Hands-On 06 (PL/SQL)-Debugging a PL/SQL Stored Procedure

Learn how to debug a procedure that is supposed to calculate the factorial of a number. You should pause and playback the movie as much as it is needed. - Manuscript


Hands-On 07 (PL/SQL)-Granting Object Privileges

Learn how to create, copy, alter, and drop a table, view, synonym, and user. How to grant, revoke object and system privileges. - Manuscript


Hands-On 08 (PL/SQL)-Managing Objects Dependency

Learn how to view some of the Oracle directory views and experience the Oracle object dependencies (timestamp). - Manuscript


Hands-On 09 (PL/SQL)-Creating Package

Learn how to create a package by copy and pasting an existing PL/SQL stored procedures.  Then save it in the local library or the database server. - Manuscript


Hands-On 10 (PL/SQL)-Developing and using Database triggers

Learn how to create a table and name it "audit_dept"  (audit department table).  The table contains only one column (audit_line) and it should be big enough to fit 80 characters. - Manuscript


 

 
 
 
Google
 
Web web site