Blogs
Running Oracle on 10g on Windows Server 2003 x64 Editions: Unlimited Scalability and Performance
Submitted by Anu Chawla on Wed, 2006-05-24 23:45
Oracle has been available on Windows Server since Windows NT shipped in 1994. In that time there have been many changes to Oracle as features have been added and improved. One of the most significant improvement to Oracle on Windows has just been introduced (this was a year ago they supported 64 bit AMD/EM64T) without much fanfare or publicity. This is the introduction of Oracle 10g on Microsoft Windows Server x64.
- Anu Chawla's blog
- Login to post comments
- Read more
PL/SQL Loops and the Performance Problem they May Cause
Submitted by Kevin Meade on Wed, 2006-05-17 23:37
PL/SQL is an excellent language for Oracle. Integrated with the database, highly useful extensions to SQL, extremely powerful when exploiting Oracle Objects, and in spite of all this, it is still way easy to learn. But like any procedural programming language, one can get lazy with it, tending to accept the first solution arrived at. Looping constructs in particular seem to be used as crutches rather than necessary components of a solution. Bad looping causing performance issues is a problem that liters the PL/SQL landscape. But it is easy to spot and fix.
Moving to the Scheduler - Part 1
Submitted by Natalka Roshak on Mon, 2006-05-01 23:23
In 10gR1, Oracle introduced the Scheduler, a new way to schedule jobs to run from within Oracle. The old DBMS_JOB mechanism is still there, but the Scheduler has several advantages over its predecessor. This article will take a quick look at those advantages and discuss transitioning from DBMS_JOB/ DBA_JOBS to the Scheduler. My next article will take a more in-depth look at some of the Scheduler's features.
Common errors seen when using OUTER-JOIN
Submitted by Kevin Meade on Tue, 2006-04-25 18:00
OUTER-JOIN is a very handy feature of SQL. But its value at solving certain classes of SQL query problems aside, it is also one of the most error prone Oracle SQL extensions we can put to use. Even advanced developers can make these mistakes. So let us discuss the error prone nature of this feature, and how to fix it.
Database Design Guidelines and Rules of Thumb
Submitted by Thomas B. Cox on Sat, 2006-04-15 13:44
This article discusses the various types of primary keys and list the advantages and disadvantages they provide.
- Thomas B. Cox's blog
- Login to post comments
- Read more
What's blocking my lock?
Submitted by Natalka Roshak on Sat, 2006-04-01 18:00
If you've ever gotten a phone call from an annoyed user whose transaction just won't go through, or from a developer who can't understand why her application sessions are blocking each other, you know how useful it can be to identify not just whose lock is doing the blocking, but what object is locked. Even better, you can identify the exact row that a session is waiting to lock.
External Tables
Submitted by Natalka Roshak on Sun, 2006-03-05 18:00
External Tables let you query data in a flat file as though the file were an Oracle table. In 9i, only read operations were permitted; in 10g, you can also write out data to an external table, although you can't write to an existing table.
Engineering Better PL/SQL
Submitted by Bert Scalzo on Tue, 2006-02-28 07:27
PL/SQL is a great language. It's relatively simple to learn, is well integrated with the Oracle database, and can often be the most efficient way to perform complex or large scale database operations. In fact PL/SQL is so useful, it's difficult to believe that its origin is SQL*Forms -- and that PL/SQL was once was an optional cost add-on to the database. Working with Oracle over the past few decades has come a long way, and PL/SQL had evolved into a mature, robust and highly functional database language.
It's time to harden and patch
Submitted by Natalka Roshak on Sun, 2006-02-12 18:00
There have been two high-profile Oracle security flaws in the last few months. The first, which everyone reading this article has probably heard of, is the Voyager worm. The second, which is slightly less well-known, is a very severe security hole that lets anyone with a valid logon to an Oracle database -- including an unprivileged account with nothing but CONNECT privs -- execute arbitrary code as SYS. In this article, I'll look at the two security flaws and outline the steps you need to take to protect your databases from them.
Top-n query tuning in huge OLTP applications
Submitted by Marcin Miller on Wed, 2006-02-01 18:00
Top-n Query is one of the more advanced SQL problems. How does one retrieve N first (or least) rows from a record set? For example, how does one find the top five highest-paid employees in a given department?

