Search

Oracle Tutorials

Introduction to Oracle SQL Developer
A collection of FAQ to introduce Oracle SQL Developer, the new free GUI client for DBA and developers. This FAQ can also be used as learning tutorials on SQL statement execution, data objects management, system views and reports, stored procedure debugging.
Tags: Oracle, Developer | Rating: 1
2,296 Views | Oracle / Introduction | 07-10-07 | cena |
Introduction to Oracle Database 10g Express Edition
This is a collection of FAQ on Oracle 10g XE (Express Edition) with installation and basic introduction. The answers and sample scripts provided can be used as learning tutorials or interview preparation guides.
Tags: Oracle, Express, Edition | Rating: Not Rated
1,016 Views | Oracle / Introduction | 07-10-07 | chris |
Managing Oracle Tablespaces and Data Files
This is a collection of FAQ for Oracle DBA on creating and managing tablespaces and data files. The clear answers and sample scripts provided can be used as learning tutorials or interview preparation guides.
Tags: Oracle, Tablespaces, Data, Files | Rating: Not Rated
404 Views | Oracle / Miscellaneous | 07-10-07 | chris |
Creating New Database Instance Manually
This is a collection of FAQ for Oracle DBA on creating Oracle database instances manually using CREATE DATABASE statement. Items in this FAQ collection are organized together to form a complete tutorial guide on creating a new database instance manually.
Tags: Instance, Manually | Rating: Not Rated
528 Views | Oracle / Miscellaneous | 07-10-07 | david |
Expert One-on-One: Oracle: Part 1
This manuscript is Chapter 1 "Developing Successful Oracle Applications" from the Wrox Press book Expert One on One: Oracle. This first part covers developing successful Oracle applications and the Black Box approach.
Tags: Expert, Oneonone, Oracle | Rating: Not Rated
588 Views | Oracle / Miscellaneous | 07-10-07 | mike |
Expert One-on-One: Oracle: Part 2
This manuscript is Chapter 1 "Developing Successful Oracle Applications" from the Wrox Press book Expert One on One: Oracle. The second installment covers understanding Oracle architecture, using bind variables, understanding concurrency control, and multi-versioning.
Tags: Expert, Oneonone, Oracle | Rating: Not Rated
522 Views | Oracle / Miscellaneous | 07-10-07 | frank |
Expert One-on-One: Oracle: Part 3
This third installment looks at database independence, the impact of standards, features and functions, and solving problems simply. This manuscript is Chapter 1 "Developing Successful Oracle Applications" from the Wrox Press book Expert One on One: Oracle.
Tags: Expert, Oneonone, Oracle | Rating: Not Rated
517 Views | Oracle / Miscellaneous | 07-10-07 | cindy |
Expert One-on-One: Oracle: Part 4
This fourth and final installment looks at making the database run faster and the DBA-developer relationship. This manuscript is Chapter 1 "Developing Successful Oracle Applications" from the Wrox Press book Expert One on One: Oracle.
Tags: Expert, Oneonone, Oracle | Rating: Not Rated
398 Views | Oracle / Miscellaneous | 07-10-07 | mike |
Introduction and Examples to Oracle Advanced Queueing
Oracle introduced powerful queuing mechanisms where messages can be exchanged between different programs. They called it Advanced Queuing AQ. Exchanging messages and communicating between different application modules is a key functionally becoming important as soon as we leave the database servers SQL and PL/SQL programming domain.
Tags: Examples, Oracle | Rating: Not Rated
578 Views | Oracle / Introduction | 07-10-07 | guest |
Global Statistics vs. Histograms with DBMS_STATS Package
Optimisation is the process of choosing the most efficient way to execute a SQL statement. The cost-based optimiser uses statistics to calculate the selectivity of predicates and to estimate the cost of each execution plan.
Tags: Global, Statistics, Histograms, Dbms_stats, Package | Rating: Not Rated
266 Views | Oracle / Miscellaneous | 07-10-07 | david |
Analytic Functions in Oracle 8i and 9i
Analytic Functions, which have been available since Oracle 8.1.6, are designed to address such problems as "Calculate a running total", "Find percentages within a group", "Top-N queries", "Compute a moving average" and many more. Most of these problems can be solved using standard PL/SQL, however the performance is often not what it should be. Analytic Functions add extensions to the SQL language that not only make these operations easier to code; they make them faster than could be achieved with pure SQL or PL/SQL.
Tags: Analytic, Functions, Oracle | Rating: Not Rated
334 Views | Oracle / Miscellaneous | 07-10-07 | john |
Parallel Clause and Small Tables
If you have multiple CPUs available you may come up with the idea to set parallel execution on every table. The Oracle Optimizer should decide about the degree of parallelism or even if is necessary to use parallel execution at all. What's a great thing on big tables shows up badly on small ones. The split up of all the work over more than one CPU may result in an overhead which exceeds the execution time needed by one CPU by factors. While the Optimizer recognises for index accesses not to use parallel execution it doesn't for full table scans. This sounds reasonable at first hand but consider that often full table scans are the fastest option on smaller tables.
Tags: Parallel, Clause, Tables | Rating: Not Rated
314 Views | Oracle / Tables | 07-10-07 | john |
How to specify the WHERE clause for UPDATE / DELETE
Sometimes multiple users are accessing the same tables at the same time. In these situations, you need to decide when to allow your application to update the database. If you allow your application to always update the database it could overwrite changes made by other users. You can control when updates succeed by specifying which columns are included in the WHERE clause of an UPDATE or DELETE statement.
Tags: Specify, Where, Clause, Update, Delete | Rating: Not Rated
477 Views | Oracle / Clauses | 07-10-07 | guest |
How to measure Index Selectivity
B*TREE Indexes improve the performance of queries that select a small percentage of rows from a table. As a general guideline, we should create indexes on tables that are often queried for less than 15% of the table's rows. This value may be higher in situations where all data can be retrieved from an index, or where the indexed columns can be used for joining to other tables.
Tags: Measure, Index, Selectivity | Rating: Not Rated
392 Views | Oracle / Miscellaneous | 07-10-07 | david |
Primary Keys and Unique Columns in Oracle and SQL-Server
The SQL-92 standard requires that all values in a primary key be unique and that the column not allow null values. Both Oracle and Microsoft SQL Server enforce uniqueness by automatically creating unique indexes whenever a PRIMARY KEY or UNIQUE constraint is defined. Additionally, primary key columns are automatically defined as NOT NULL. Only one primary key is allowed per table.
Tags: Primary, Keys, Unique, Columns, Oracle, Sqlserver | Rating: Not Rated
516 Views | Oracle / Miscellaneous | 07-10-07 | cena |
Site Stats
Visitors Online316
Total Users1714
Categories76
Subcategories889
Tutorials24,056
Partners
Free Flash Games

Tired of working all day long and wanted to relax? Play really cool flash games to make the heat go away. From the thousands of games to choose from, You are most definitely going to find the ones you will like.

free.haxansweb.com/flash_games

Home|Tutorials|Submit|About Us|Blog|Advertise|Contact Us|Sitemap|Help / FAQ|Privacy Statement   © 2006-2010 Copyright Tutorials Expert.