+ Post New Thread
Page 1 of 2
1 2 LastLast
Threads 1 to 20 of 40

Forums: SQL PL/SQL

Articles on SQL PL/SQL terms, code, procedures, packages etc.

  1. Pivoting (Row to Column Conversion) Techniques (SQL)

    As all you know, relational tables are, well, tabular—that is, they are presented in a column-value pair. Consider the case of a table named EMP . ...

    Posted By rajavu
    case, decode, job, manager, oracle, order, pivoting, sql, sys, transpose, version
    • Replies: 4
    • Views: 14,808
    02-03-2010 12:00 PM Go to last post
  2. Exclamation Insert Statements in SQL

    INSERT is the one of the most widely used DML Statements in Oracle (or in any Database). There are different ways of inserting into One table in...

    Posted By rajavu
    database, dml, hat, insert, job, manager, oracle, order, source, sql
    • Replies: 1
    • Views: 4,858
    01-31-2010 02:55 PM Go to last post
  3. DELETE statements in SQL

    DELETE is another widely used DML in SQL . It is used to delete the records with some values specified in the query. Hope this article will be useful...

    Posted By rajavu
    based, clause, delete, deleted, dml, min, query, sales, sql, start
    • Replies: 4
    • Views: 3,084
    01-31-2010 02:40 PM Go to last post
  4. MERGE : DML Magic in SQL

    MERGE statements was introduced in Oracle 9i . This command was beneficial for the ETL (Extraction, Transformation, and Loading) part of any Business...

    Posted By rajavu
    club-oracle, delete, dml, insert, merge, oracle, pl/sql, sales, sql, update
    • Replies: 1
    • Views: 3,971
    01-29-2010 02:35 PM Go to last post
  5. Post ORA-02292 Error or ORA-02449 Error

    ORA-02292 Error or ORA-02449 Error Now, I see many people facing the ORA-02292 error and frantically look for help, when it's really such a simple...

    Posted By tyro
    complete, create, data, delete, deleted, hat, insert, issue, ora, tables
    • Replies: 1
    • Views: 3,057
    01-10-2010 04:40 PM Go to last post
  6. Post Some More Predefined Exceptions in Oracle

    Summary of Predefined PL/SQL Exceptions An internal exception is raised automatically if your PL/SQL program violates an Oracle rule or exceeds a...

    Posted By salmankhalid
    • Replies: 3
    • Views: 351
    01-10-2010 04:39 PM Go to last post
  7. Exclamation CASE AND DECODE : Two powerfull constructs of SQL

    CASE and DECODE are the two widely used constructs in the SQL . And both have the functionality of an IF-THEN-ELSE statement to return some specified...

    Posted By rajavu
    case, column, decode, feb, job, manager, oracle, pl/sql, query, sql, test
    • Replies: 3
    • Views: 18,606
    01-10-2010 04:38 PM Go to last post
  8. SQL*Plus Introduction

    SQL Plus is the de facto tool to manipulate sql code for the Oracle Database. SQL Plus was initially known as UFI for User Friendly Interface which...

    Posted By tyro
    answer, forms, linux, oracle, password, pl/sql, sql, sql plus, sys, user, version
    • Replies: 2
    • Views: 921
    01-10-2010 04:38 PM Go to last post
  9. How to exclude locked rows when selecting from a table

    Many a times we face a situation wherein a particular row or rows from a table are locked by some application/users and it causes our queries to not...

    Posted By tyro
    application, basic, find, hat, highlight, pl/sql, queries, query, sql, update, users
    • Replies: 7
    • Views: 1,296
    01-10-2010 04:37 PM Go to last post
    • Replies: -
    • Views: -
    01-08-2010 05:41 PM Go to last post
  10. Nested Tables and Varrays (From MetaLink)

    Nested Tables and Varrays -------------------------------------------------------------------------------- Modified 28-MAY-2009 Type...

    Posted By comm_elect
    200, 2009, admin, issues, metalink, published, red, status, tables, type
    • Replies: 2
    • Views: 169
    12-24-2009 06:04 AM Go to last post
  11. Sql tuning

    USE EXISTS IN PLACE OF DISTINCT visit for more information "allmyneed.blogspot . com" The DISTINCT combination of deptno and dname columns have...

    Posted By sabyasachi
    based, case, clause, hat, highlight, memory, query, sql, subquery, tables, tuning
    • Replies: 1
    • Views: 304
    10-12-2009 05:48 AM Go to last post
  12. How to convert decimal to hexadecimal

    Convert decimal to hexadecimal There are several ways to convert decimal number to hexadecimals. Like using function, using complex sql...

    Posted By Arju
    convert, decimal, hat, hexadecimal, note, number, simple, sql, statements, to_char
    • Replies: 2
    • Views: 6,026
    06-16-2009 08:24 AM Go to last post
  13. Oracle Date Functions

    Oracle Date Functions I wanted to compile a list of all possible DATE functions in oracle. I am listing a few common ones to begin with, and I...

    Posted By tyro
    client, date, find, free, hat, highlight, oracle, query, server, sql, sql plus
    • Replies: 1
    • Views: 5,877
    06-04-2009 07:00 PM Go to last post
  14. SQL Commands Basics

    SQL Commands Basics This document contains absolute SQL Basics for the beginners (like me!). SQL stands for Structured Query Language. SQL is a...

    Posted By orafan
    alias, delete, dml, insert, oracle, order, sql, sql basics, sys, update, user
    • Replies: 1
    • Views: 1,207
    03-20-2009 07:56 PM Go to last post
  15. Exclamation User defined exception

    PL/SQL allows developers to define their own exceptions.User can define the error/exception programically based on the business rule. This is usually...

    Posted By rajavu
    application, based, business, error, exceptions, pl/sql, predefined, sql, steps, user
    • Replies: 4
    • Views: 4,594
    01-20-2009 04:43 PM Go to last post
  16. Post Predefined exceptions in PL/SQL

    Predefined exceptions in PL/SQL Predefined exceptions in PL/SQL are declared globally in a package called STANDARD, defining the PL/SQL...

    Posted By tyro
    data, dent, free, giving, list, oracle, package, pl/sql, predefined, sql, table, write
    • Replies: 2
    • Views: 4,429
    12-05-2008 07:02 AM Go to last post
  17. Exclamation JOINS in SQL ( with ANSI support )

    JOINS are used in SQL to combine rows fom Multiple table to reqtrieve the required information.There are basically two types of joins Equi joins and...

    Posted By rajavu
    club-oracle, forums, job, manager, oracle, required, sql, support, table, tables
    • Replies: 0
    • Views: 2,150
    11-27-2008 12:56 PM Go to last post
  18. Update Statements in SQL

    UPDATE is another widely used DML in SQL . It is used to update the records with some values specified in the query. There are different scenarios...

    Posted By rajavu
    based, clause, dml, max, method, query, sales, sql, start, update
    • Replies: 0
    • Views: 4,449
    11-14-2008 12:42 PM Go to last post
  19. Post PL/SQL Package Example

    PL/SQL Package Example The following package demonstrates all the features required in a proposed web-based database solution. The purpose of...

    Posted By tyro
    application, create, database, features, pl/sql, project, required, sql, update, web
    • Replies: 2
    • Views: 5,814
    11-10-2008 12:36 PM Go to last post

Forum Information and Options

Moderators of this Forum
Users Browsing this Forum

There are currently 1 users browsing this forum. (0 members & 1 guests)

Thread Display Options

Use this control to limit the display of threads to those newer than the specified time frame.

Allows you to choose the data by which the thread list will be sorted.

Order threads in...

Note: when sorting by date, 'descending order' will show the newest results first.

Icon Legend

Contains unread posts
Contains unread posts
Contains no unread posts
Contains no unread posts
More than 15 replies or 150 views
Hot thread with unread posts
More than 15 replies or 150 views
Hot thread with no unread posts
Closed Thread
Thread is closed
Thread Contains a Message Written By You
You have posted in this thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts