Published on Wed, 16 Jul 2008 07:37:07 -0400 Read: 8809 times
Converting Rows to Columns in Oracle. There are couple of ways you can do it.
Filed in: Oracle Difficulty Level: Intermediate
Published on Tue, 15 Jul 2008 08:05:14 -0400 Read: 5359 times
Oracle Database Growth Report by Month and Year
Filed in: Oracle Difficulty Level: Beginner
Published on Wed, 28 May 2008 06:36:40 -0400 Read: 8107 times
Give amount as parameter
Example
SQL> SELECT F_AMOUNT_TO_WORDS(155221.25) FROM DUAL; F_AMOUNT_TO_WORDS(155221.25)
-------------------------------------------------------------------------------
One lakh fifty-five thousand two hundred twenty-one rupees and twenty-five paise only
Filed in: Oracle Difficulty Level: Beginner
Published on Sun, 10 Jun 2007 15:28:37 -0400 Read: 1846 times
SQL program given below generates a simple sales report for a year with date, page number displayed at top of report. The SQL program given should be saved in a file named as sample.sql extension and when this file is executed it generates report.
Filed in: Oracle Difficulty Level: Published on Wed, 20 Dec 2006 08:32:29 -0500 Read: 4256 times
Check the important areas of an Oracle instance. Save it as .sql and executed as sys.
Filed in: Oracle Difficulty Level: Published on Wed, 20 Dec 2006 08:30:49 -0500 Read: 2476 times
Oracle Database Cold backup sql script to generate .sh file in Unix
Filed in: Oracle Difficulty Level: Published on Mon, 11 Dec 2006 01:17:25 -0500 Read: 3036 times
This query just returns experience of employees in the format "yy years mm months dd days".
Filed in: Oracle Difficulty Level: Published on Thu, 09 Nov 2006 07:22:45 -0500 Read: 7242 times
This oracle query returns Calendar for the current year. This Oracle SQL query returns Calendar for the current year.
Filed in: Oracle Difficulty Level: Published on Mon, 06 Nov 2006 03:30:53 -0500 Read: 4054 times
This PL/SQL Package allows partition management operation on an Oracle Table.
It provides various features such as:
1)Creating
Filed in: Oracle Difficulty Level: Published on Mon, 06 Nov 2006 01:39:47 -0500 Read: 5952 times
One of the oldest and simplest encrypting technique is the "Caesar cipher". This involves shifting each of the letters in a message by a set number of places along the alphabet (cycling back the beginning of the alphabet if necessary). For example, if we wanted a shift of 5 places then A becomes
Filed in: Oracle Difficulty Level: