OracleBrains.Com header image 5

Entries Tagged as 'Oracle Administration'

Using UTL_FILE after Oracle 9i Release 2

December 25th, 2006 · 1 Comment

Before Oracle 9i Release 2, if we want to use the UTL_FILE package then we need to initialize UTL_FILE_DIR initialization [...]

[Read more →]

Tags: Oracle Administration · Oracle Database

Understanding Oracle Release Number Format - 3

December 23rd, 2006 · No Comments

I collected some feedback about my earlier blog.
First Blog Link
Understanding Oracle Release Number Format
Second Blog Link
Understanding Oracle Release Number Format - 2
Comment From  [...]

[Read more →]

Tags: Oracle Administration · Oracle Database

Understanding TNS Listener

December 20th, 2006 · 5 Comments

I was going through some papers about TNS Listener, so I though why not share what I know and what [...]

[Read more →]

Tags: Oracle Administration · Oracle Database

Using the ANYDATA object

December 17th, 2006 · 1 Comment

First introduce in Oracle 9i, ANYDATA is a “self describing data instance type” which means it not only holds the [...]

[Read more →]

Tags: Oracle Administration · Oracle Database · SQL and PL/SQL

Differences Between Normal Views and Materialized Views

December 15th, 2006 · 4 Comments

This post is in response to Metalized view by MAhmad
Views
A view is a logical entity. It is a SQL statement [...]

[Read more →]

Tags: Oracle Administration · Oracle Database · SQL and PL/SQL

Metalized view

December 15th, 2006 · 2 Comments

What is Metalized view ? What are the differences between normal view and metalized view?

Bookmark this post

[...]

[Read more →]

Tags: Oracle Administration · Oracle Database · SQL and PL/SQL

Maximum Length of various Datatypes

December 15th, 2006 · 1 Comment

When doing research for Internal Datatypes in Oracle I though of sharing and publising following information with the guys who [...]

[Read more →]

Tags: Oracle Administration · Oracle Database · SQL and PL/SQL

Internal Datatypes in Oracle

December 14th, 2006 · No Comments

One more important term which really stuck me while writting “Understanding Internal DATE Storage” post, was “Internal Datatype”. Although the [...]

[Read more →]

Tags: Oracle Administration · Oracle Database · SQL and PL/SQL

Using Dump Function

December 13th, 2006 · 2 Comments

I was little bit curious about DUMP function after writting Understanding Internal DATE Storage. So I did little bit reserach [...]

[Read more →]

Tags: Oracle Administration · Oracle Database · SQL and PL/SQL

Understanding Function Based Indexes

December 10th, 2006 · 3 Comments

First have a look at following query:
SELECT e_name, age, address
FROM employees
WHERE UPPER(e_name) = ‘RAJENDER SINGH’;
Now, One of the important instruction [...]

[Read more →]

Tags: Interesting Coding Showcase · Oracle Administration · Oracle Database