Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising
Advertising

Explain Plan: Execution Paths and Hints

Explain Plan: Execution Paths and Hints USE_MERGE - two inputs are seperately sorted and merged. No sort is required if the table has indexes. waits until both the sorts are performed. Good when NO INDEXES are in the tables. When both are almost equal...

Read more

SQL Tuning Tips

SQL Tuning Tips Avoid un-necessary sorts - use union all, use compute stats while creating index. Hint when needed. Avoid Cartesian products Avoid full table scans on large tables Avoid joining too many tables Use SQL standards and conventions to reduce...

Read more

Advertising

Database Tuning Tips

Database Tuning Tips Do as little as possible - Focus on simplyfing the processes instead of achiving a theoretical design perfection. Avoid multiple IO to the database - bundle queries to a procedure and call thay in ur app. again in procedures reduce...

Read more

Top Ten Mistakes Found in Oracle Systems

Top Ten Mistakes Found in Oracle Systems 1. Bad Connection Management 2. Bad Use of Cursors and the Shared Pool 3. Bad SQL 4. Use of Nonstandard Initialization Parameters 5. Getting Database I/O Wrong 6. Redo Log Setup Problems 7. Serialization of data...

Read more

exceptions in collctions in oracle

COLLECTION_IS_NULL you try to operate on an atomically null collection. NO_DATA_FOUND a subscript designates an element that was deleted, or a nonexistent element of an associative array. SUBSCRIPT_BEYOND_COUNT a subscript exceeds the number of elements...

Read more

RAISE_APPLICATION_ERROR in oracle

RAISE_APPLICATION_ERROR? The RAISE_APPLICATION_ERROR is a procedure defined by Oracle that allows the developer to raise an exception and associate an error number and message with the procedure other than just Oracle errors. Raising an Application Error...

Read more

Advertising

FOR UPDATE in Oracle

What is the purpose of FOR UPDATE? Selecting in FOR UPDATE mode locks the result set of rows in update mode, which means that row cannot be updated or deleted until a commit or rollback is issued which will release the row(s). If you plan on updating...

Read more

CHAR datatype in oracle

CHAR datatype Char contain alphanumeric data. Length of Char datatype is between 1 and 255 characters. If you don't specify a length, a char column stores a single character by default. Char datatypes stores data in the Fixed-Length Format. Be aware,...

Read more

<< < 1 2 3 4 5 6 7 8 9 10 20 30 > >>