Tech Guy on June 22nd, 2009

This article contains tutorial about Oracle PL/SQL Loops and Conditional Statements. Following topics are discused here IF-THEN-ELSE Statement, Case Statement, GOTO Statement, Loop Statement, FOR Loop, CURSOR FOR Loop, While Loop, Repeat Until Loop and Exit Statement

Tags: , , ,

Tech Guy on June 22nd, 2009

In other languages, a null value is found using the = null syntax. However in PLSQL to check if a value is null, you must use the "IS NULL" syntax.
To check for equality on a null value, you must use "IS NULL".
For example,

IF Lvalue IS NULL then
.

END IF;

If Lvalue contains a null value, [...]

Tags: , , ,

Tech Guy on June 22nd, 2009

The syntax for declaring variables is:
variable_name datatype [CONSTANT] [NOT NULL] [:= | DEFAULT initial_value]

For example:
Declaring a variable:
LDescription varchar2(40);

Declaring a constant:
LTotal constant numeric(8,1) := 8363934.1;

Declaring a variable with an initial value (not a constant):
LType varchar2(10) := ‘Example’;

Tags: , , ,

Tech Guy on June 22nd, 2009

A literal is the same as a constant. We’ll cover three types of literals – text literals, integer literals, and number literals

Tags: , , ,

Tech Guy on June 18th, 2009

This article explains the steps that needs to followed while migrating ORACLE 10g Database from HP UNIX to LINUX platform. This article can also be used for migrating Oracle 10g Database across any platform with slight changes to the steps.

Tags: , , , , , ,

Tech Guy on June 18th, 2009

VI is a text editor in UNIX Environment with rich set of option and commands. This editor is used to do script programming and to view the flat files in UNIX. There are three modes available in VI editor as Input Mode, Execution Mode and Command Mode

Tags: , , , , ,

Tech Guy on June 17th, 2009

The find command lists all of the files within a directory and its subdirectories that match a set of conditions. This command is most commonly used to find all of the files that have a certain name

Tags: , , ,

Tech Guy on June 16th, 2009

This article contains information about some more UNIX commands which are used widely in UNIX Scriptiing.Following commands are explained here chgrp,cat,split, grep, jobs, kill, ps, finger, gzip, gunzip, touch, whereis, which, head, tail, sort, ln, whoami, groups, grplist, top, fg, bg, nice and set

Tags: , , , ,

Tech Guy on June 16th, 2009

This article contains reference documentation for some of the basic unix commands. Also it has short information about UNIX Kernal, UNIX Shell and UNIX Files and Processes.

Tags: , , , ,

Tech Guy on June 16th, 2009

DotNet Framework is a Programming model of the .NET environment for building, deploying, and running Web-based applications, smart client applications, and XML Web services

Tags: , , , , , , , ,