* Oracle Corporation - company overview
* Oracle Product Set
* Oracle Services
Managing an Oracle Site
Information for managers and team leaders on how to successfully manage an Oracle site:
* Oracle licensing
* Soft Issues - Managing Oracle Staff
* Roles and Responsibilities
* Securing the Environment
* Engaging Oracle Support
* Database Production Acceptance
* Tender questions for Application Vendors
Career Management
Information for Oracle professionals on how to successfully manage their careers.
* Getting a job
* Interview Questions
* Oracle Training
* Oracle Certification Program
* List of well known Oracle Personalities
Technical articles, tips and tricks
Technical product information:
Database
* SQL, PL/SQL and SQL*Plus
* Database versions: 9i, 10g, 11g
* Compatibility matrices and differences between editions
* Database Concepts and Architecture
* Database Administration
* Backup and Recovery
* Performance Tuning
* Replication
* Data Guard
* Install Guides
Development
* Oracle Developer Suite, including Forms, Reports, Discoverer, etc.
* Precompilers like Pro*C and Pro*Cobol
* Java, including SQLJ, JDBC, SQLJ, etc.
* PHP, Perl, Python, Tcl, Ruby on Rails, etc.
* Sample Code
Fusion Middleware (Application Server)
* Oracle Application Server
* Fusion Middleware
* Forms Server, Reports Server
* Enterprise Content Management, TopLink, Secure Enterprise Search
google search
Thursday, October 23, 2008
ooracle see
Posted by thirupal at 8:58 AM 0 comments
Labels: oracle
Oracle9i: New Features for Administrators
Passing Score:
38, 67%
Questions: 56
Test Type: Proctored
Format: Mulitple Choice
Time Allotted: N/A
Certifications: Oracle9i Database Administrator
Study Brief: Online format
Feedback: Oracle Certified Professional Forum
Topics To Know
By Michael Ritacco, Oraclenotes.com
For those of you who have taken an upgrade exam before, this exam will not be out of the norm. The testing format remained multiple choice and the caliber of the questions seem to be improving. This must be what Oracle is calling scenario-based questioning, as the questions more accurately reflect real-world situations one would encounter while installing, using, and configuring Oracle9i.
The exam questions did seem to be more in depth then found in the Oracle8i upgrade exam and did not favor certain new features over others. All objectives were covered with an equal number of questions, so without complete knowledge of each new feature you may find yourself taking this exam a second time.
I would highly recommend that you have "experience" with the new features in a live Oracle9i database, in addition to studying the material covered in the Study Brief.
It is also important to note that the Oracle Examination Score Report no longer shows the question distributions and section scores like previous exams. Oracle does provide a list of objectives that you should review and study for the questions that you missed.
Posted by thirupal at 8:56 AM 0 comments
Labels: oracle
Oracle notes
Oracle is a powerful, tunable, scalable and reliable industrial RDBMS. It provides some functionalities which are absent in simple freeware RDBMS like MySQL and PostgresSQL, such as: transactions support, concurrency and consistency, data integrity, partitioning, replication, cost-based and rule-based optimizers, parallel execution, redo logs, RAW devices and many other features. Although Oracle is a very functional database, the additional qualities like reliability impose some overhead. In fact, providing many advantages Oracle has some disadvantages. For example great tenability requires more experienced DBA, redo logs support provide great reliability against instance and media failures but requires more efficient disk system. I think you should select Oracle as a database for DataparkSearch if you want to search through hundreds of megabytes or several gigabytes of information, reliability is one of the primary concerns, need high availability of the database, and you are ready to pay higher sums for hardware and Oracle DBA to achieve better quality of service.
5.5.1.2. DataparkSearch+Oracle8 Installation Requirements
In order to install DataparkSearch with Oracle RDBMS support you must ensure the following requirements:
*
Oracle8 Server must be properly installed on any computer accessible from the site where DataparkSearch are to be installed. See the documentation provided with your Oracle server.
*
Oracle client software and libraries must be installed on the site where you plan to install DataparkSearch. I strongly recommend to install utilities also, it help you to test the client and server accessibility.
*
glibc 2.0 or glibc 2.1. Oracle 8.0.5.X libraries are built for glibc 2.0.
5.5.1.3. Currently supported/tested platforms
Oracle versions:
*
Oracle 8.0.5.X
Operation systems:
*
Linux RedHat 6.1 (2.2.X + glibc 2.0)
Oracle Server may be ran on any platform supporting tcp/ip connections. I see no difficulties to port DataparkSearch Oracle driver to any commercial and freeware unix systems, any contribution is appreciated.
5.5.2. Compilation, Installation and Configuration
5.5.2.1. Compilation
Oracle 8.0.5.X and Linux RedHat 6.1
./Configure --with-oracle8=oracle_home_dir
make
make install
If you have any troubles, try to put CC = i386-glibc20-linux-gcc in the src/Makefile, this is old version of gcc compiler for glibc 2.0.
5.5.2.2. Installation and Configuration
Check whether Oracle Server and Oracle Client work properly.
First, try DataparkSearch service is accessible
[oracle@ant oracle]$ tnsping DataparkSearch 3
TNS Ping Utility for Linux: Version 8.0.5.0.0 - Production on 29-FEB-00 09:46:12
(c) Copyright 1997 Oracle Corporation. All rights reserved.
Attempting to contact (ADDRESS=(PROTOCOL=TCP)(Host=ant.gpovz.ru)(Port=1521))
OK (10 msec)
OK (0 msec)
OK (10 msec)
Second, try to connect to Oracle Server with svrmgrl and check whether DataparkSearch tables were created
[oracle@ant oracle]$ svrmgrl command='connect scott/tiger@DataparkSearch'
Oracle Server Manager Release 3.0.5.0.0 - Production
(c) Copyright 1997, Oracle Corporation. All Rights Reserved.
Oracle8 Release 8.0.5.1.0 - Production
PL/SQL Release 8.0.5.1.0 - Production
Connected.
SVRMGR> SELECT table_name FROM user_tables;
TABLE_NAME
------------------------------
DICT
DICT10
DICT11
DICT12
DICT16
DICT2
DICT3
DICT32
DICT4
DICT5
DICT6
DICT7
DICT8
DICT9
PERFTEST
ROBOTS
STOPWORD
TAB1
URL
19 rows selected.
Check the library paths in /etc/ld.so.conf
[oracle@ant oracle]$ cat /etc/ld.so.conf
/usr/X11R6/lib
/usr/lib
/usr/i486-linux-libc5/lib
/usr/lib/qt-2.0.1/lib
/usr/lib/qt-1.44/lib
/oracle8/app/oracle/product/8.0.5/lib
This file should contain line oracle_home_path/lib to ensure DataparkSearch will be able to open libclntsh.so, the shared Oracle Client library
Make symbolic link:
ln -s /oracle8/app/oracle/product/8.0.5/network/admin/tnsnames.ora /etc
Correct the indexer.conf file
You should specify DBName, DBUser, DBPass in order that DataparkSearch can connect to Oracle Server. DBName is the service name, it should have the same name that was written to tnsnames.ora file, DBUSer and DBPass are Oracle user and his password correspondingly. You can run indexer now.
Setting up search.cgi
Copy the file /usr/local/dpsearch/bin/search.cgi to apache_root/cgi-bin/search.cgi. Then add two lines to apache's http.conf file:
SetEnv ORACLE_HOME /oracle8/app/oracle/product/8.0.5
PassEnv ORACLE_HOME
Correct the search.htm to provide DBName, DBUser, DBPass information. search.cgi should work now.
Posted by thirupal at 8:55 AM 0 comments
Labels: oracle
Oracle8
Introduction to Oracle8: SQL and PL/SQL
Oracle8: Database Administration
Oracle8: Backup & Recovery
Oracle8: Performance Tuning
Oracle8: Networking Administration
Posted by thirupal at 8:54 AM 0 comments
Labels: oracle
Oracle8i
Oracle8i: New Features for Administrators
Introduction to Oracle8i: SQL and PL/SQL
Oracle8i: Architecture and Administration
Oracle8i: Backup & Recovery
Oracle8i: Performance Tuning
Oracle8i: Networking Administration
Posted by thirupal at 8:54 AM 0 comments
Labels: oracle
Oracle9i topics
Oracle9i: New Features for Administrators
Introduction to Oracle9i: SQL
Oracle9i Database: Fundamentals I
Oracle9i Database: Fundamentals II
Oracle9i Database: Performance Tuning
Posted by thirupal at 8:53 AM 0 comments
Labels: oracle
oracle 10g topics
Oracle Database 10g: New Features for Administrators
Oracle Database 10g: Administration I
Oracle Database 10g: Administration II
Posted by thirupal at 8:53 AM 0 comments
Labels: oracle