Passed OCA PAPER -1 Oracle 9i sql 1Z0-007

passed OCA paper-1 with 84%Surprise ! Surprise, today I passed Oracle  10G OCA DBA paper-1   1Z0-007 with 85%. As a Hardcore system administrator who forced to become DBA , for me its great achievement.  Even I started DBA in 25days series to help fellow sysadmin to forced to become DBA.

1Z0-007 is not that much easy. Mainly I lost marks in topics -  functions,join. Confused in exam . Anyway not bad 84% score that t0o for newbie like me who never touched SQL. 

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007 (This post)
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

How to apply for OCA exam 1Z0-007

You can purchase OCA paper -1  1Z0-007 voucher from direct Pearson. It costs you $125.
You can get discounted OCA vouchers from third parties . I heard about them but no info to share.
You can purchase e voucher from Oracle site. But I have bad experience ( they will take 3 days to process your online order ! until now no info from them about my order) . I suggest person VUE directly ( just 5 mins for me to purchase and book exam ) . You can purchase and start giving exam on the spot or you can schedule the exam.

52 questions/120 mins time. YOu should get 71% to pass exam.

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007 (This post)
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

01. Lets learn SQL statement SELECT 1Z0-007

PREREQUISITE
prerequisite : You should read our lesson DBA and SQL basics before complete this lesson
Object of lesson 1 - DBA in 25 days
Objective : Objective of this series “Lets learn SQL statement  SELECT” is to learn basics of SQL statement “SELECT”.As we learnt that SELECT is the only keyword in SQL to retrieve data from Oracle Database.Lets see more details about SELECT with examples.

Suppose you have a database named “timewasteblogCOM” loaded with user details like user id, user_ name, email,phone number,join_date,donation in table “USERS”.

Now you want to see list of all records  loaded into the table “USERS”  table.

1.You should have access to database “timewasteblogCOM”.

2.Start SQLPLUS or Isqlplus and connect to database.

3.Next need to execute SQL statment which retrive desired data.

4.Now we already learnt SELECT is keyword we need to use to retrieve data.

First Part of SQL statement : SELECT

5. What to retrieve ? all of  user names.  * means all

Next SQL statement part  *

6. Now we need to tell in which table data loaded . So in our case  table name will be “USERS”

Next SQL statement part USERS

So  Here is  the complete SQL  statment : SELECT  *  from USERS

Bingo ! your first SQL statement completed. 

Now lets see more  details of SELECT

Basic SELECT statment syntax
SELECT  *| { [DISTINCT]    column |expression  [alias] ,…..}   FROM       table;
SELECT

*

DISTINCT

Column|expression

aliases

Selects one or more columns

Selects ALL columns

Suppresses duplicates

Selects named column or expression

Gives different names to selected  columns

One more example:

1.Suppose you want to select 2 columns named as user_names,email from our database “timewasteblogCOM” .SQL statement will look like as below.

SELECT  user_name,email FROM USERS;

Note:  Every SQL statement should end with ‘;’

Lets learn about Arithmetic Operators usage
Arithmetic Operation in SQL statement:* / + -

Suppose if I want to know how it looks if each user donation doubles [Interesting ! isn't], then SQL quesry will look like below.

SELECT user_name,donation, donation*2 FROM USERS

Above SQL statment will show records related to user_name, donation along with it shows new column with heading “donation*2″ with digits which are equal  to donation multiply by 2.

New column “donations*2″ is virtual one, its not real. Just display purpose only.

Now lets discuss about Operator Precedence.SQL Multiplication and division takes priority than addition and subtraction.You can force priority by using Parentheses.

Example: Conider Mr.John given $10 donation then following SQL query will show  “2*donation+100″ column with value $22.

SELECT user_name,donation, 2*donation+100 FROM USER

If we enforce Arithmetic Precedence with Parentheses result will be  $220 ( I like it )

SELECT user_name,donation, 2* (donation+100)

NULL value special value
NULL value

A record in a table is unavailable,unassigned,unknown, or inapplicable then that is called NULL value. ZERO is NOT equal to NULL value.Just blank space also not NULL value.In Arithmetic operation with NULL value results NULL only.

Meaningful Custom Column Name
Column Alias

In above example we saw user_name column showing user name. Now I want to show more meaningful name like NAME in query result you can use Alias feature.By default SQlPLUS  uses name of the selected column as column name in query result. Some times  those columns names are not descriptive.So using Alias feature you can show meaningful column names instead of original column names.

SELECT user_name AS Name  from USERS;

Above SQL query result shows list of user names under column “Name” instead of original column name “User_Name”.

If Alias contains spaces or special characters oris case sensitive you need to put Alias in double quotations.

DISTINCT - duplicate eliminator
DISTINCT

SQL keyword DISTINCT helps to eliminates duplicate enties in SQL query result.

SELECT  DISTINCT last_name from USERS

Above query results rows which are duplicate free of user last_names.

Next we going to see some LAB simulations related to current lesson.

Please leave your comments/questions here. Response guaranteed :) .

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007 (This post)
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

Oracle DBA and SQL basics video tutorials – 00

Thanks to all who sharing their knowledge
Here is the collection videos from youtube related to DBA and SQL concepts. Thanks to all who really helping out  others by sharing their knowledge. Please do suggest here if you have any good videos related to DBA and SQL fundamentals.

DATABASE FUNDAMENTALS VIDEO [Thanks to original author, I re encoded and uploaded  to youtube as original video having audio problem.]

SQL BASICS [Thanks to orginal author]

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00 (This post)
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

SQL vs SQLPLUS – Learn SQL online

Before starting course   SQL fundamentals for Oracle 10G for OCA certification, you need to understand  difference between SQL and SQL PLUS.In our online free sql course for OCA , you going to see ‘n’ number of times refering above keywords. Here is the difference.

Source: http://www.geekinterview.com/question_details/2494

SQL

  • SQL is a language that can communicate with Oracle server to access the data.
  • It is based on ANSI standards.
  • There is no continuation character.
  • Keywords cannot be abbreivated.
  • Use functions to manipulate the data.

SQL*PLUS

  • It recognises SQL statement and sends them to the server.
  • Is an Oracle properitory.
  • There is a continuation character.
  • Keywords can be abbreviated.
  • Use commands to manipulate the data.

So SQL is language and SQL*PLUS is  software interface developed by Oracle to feed SQL commands to Oracle database server.

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online (This post)
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

Project OCA DBA DAY-1 schedule details.FREE OCA tutorial

DAY -1 scedule of OCA in 25days

First day

Project OCA – become DBA in 25 days. Complete free guide to OCA. Free OCA tutorials.   Our target is OCP. To reach that, first we need to complete OCA. Today is First day. Below is today’s schedule. Remember we going to read both papers each day.

Paper – 1 1Z0-007 (Oracle 9i sql Intro)

Basic SQL select statement

Paper-2  1Z0-042 (10g: Administration I)

Architecture

OCA exam : Oracle’s suggested way of preparation from their certification blog :

Overall picture of oracle certification path [Click on image to enlarge]

Overall picture of oracle certification

Oracle certification path in a single shot

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial (This post)
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

Let’s start PROJECT OCA

So guys, until now in our “DBA in 25days” series, gathered enough info to start our project – PROJECT OCA – become OCA in next 25 days.

Check list: 1.Exam information 2.Exam Objective 3.Software 4.Hardware 5. Books  6.schedule
we completed checklist without problem except schedule, I will cover that  in this post.

OCA in 25 days

project oca. sysadmin attempt to become DBA in 25 days

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA (This post)
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

Oracle OCA DBA certification details and guidance

OCA – Oracle Certified Associate  is entry level and essential exam to get oracle advanced DBA certification OCP. In this post I am going to present you more details about OCA  for DBA path not developer path.

OCA EXAM CODE: Oracle Database 10g: Administration I – 1Z0-042. Cost of OCA for DBA around $120 ( It varies from country to country and discount available at that time )

OCA for DBA exam type : ONLINE

OCA for DBA topics:

Architecture
[  ] Outline the Oracle Architecture and its main Components
[  ] Explain the Oracle instance architecture
Installing the Oracle Database Software
[  ] Identify common database administrative tools available to a DBA (1)
[  ] Use optimal flexible architecture
[  ] Install software with Oracle Universal Installer
[  ] Identify and configure commonly used environment variables
[  ] Use Installer Log (2)
Creating an Oracle Database
[  ] Use DBCA to Create a database
[  ] Use DBCA to Delete a database
[  ] Use DBCA to manage templates
Managing the Oracle Instance
[  ] Use Enterprise Manager
[  ] Use SQL*Plus and iSQL*Plus to access the Oracle Database
[  ] Modify database initialization parameters
[  ] Describe the stages of database startup
[  ] Describe the database shutdown options
[  ] View the database alert log
[  ] Use dynamic performance views (3)
Managing Database Storage Structures
[  ] Describe how table row data is stored in blocks (4)
[  ] Define the purpose of tablespaces and data files
[  ] Explain space management in tablespaces
[  ] Create tablespaces
[  ] Manage tablespaces: alter, drop, take offline, put online, add data files, make read-only or read-write, generate DDL
[  ] Obtain tablespace information
[  ] Explain key features and benefits of ASM (5)
Administering User Security
[  ] Create and manage database user accounts
[  ] Create and manage roles
[  ] Grant and revoke privileges
[  ] Create and manage profiles (6)
Managing Schema Objects
[  ] Create and modify tables
[  ] Define constraints and states of constraints (7)
[  ] Dropping and truncating tables (7)
[  ] Create and use B-Tree and Bitmap indexes (8)
[  ] Create Views
[  ] Create sequences
[  ] Use data dictionary
Managing Data and Concurrency
[  ] Manipulate data through the use of SQL
[  ] Identify and administer PL/SQL objects
[  ] Describe triggers and triggering events
[  ] Define levels of locking
[  ] List possible causes of lock conflict
[  ] Monitor and resolve lock conflicts
Managing Undo Data
[  ] Monitor and administer undo
[  ] Configure undo retention
[  ] Describe the relationship between undo and transactions
[  ] Size the undo tablespace
Implementing Oracle Database Security
[  ] Apply the principle of least privilege
[  ] Audit database activity
[  ] Implement Fine-Grained Auditing
Configuring the Oracle Network Environment
[  ] Use Database Control to Create additional listeners
[  ] Use Database Control to Create Oracle Net service aliases
[  ] Control Oracle Net Listeners
[  ] Identify when to use shared servers versus dedicated servers
Proactive Maintenance
[  ] Gather optimizer statistics
[  ] Manage the Automatic Workload Repository
[  ] Use the Automatic Database Diagnostic Monitor (ADDM)
[  ] Set warning and critical alert thresholds
[  ] React to performance issues
Performance Management
[  ] Use enterprise manager to view performance (9)
[  ] Tune SQL by using SQL tuning advisor (10)
[  ] Tune SQL by using SQL access advisor
[  ] Use automatic shared memory management (11)
[  ] Use the memory advisor to size memory buffer (11)
Backup and Recovery Concepts
[  ] Describe the types of failure that may occur in an Oracle Database
[  ] Identify the importance of checkpoints, redo log files, and archived log files
[  ] Tuning instance recovery
[  ] Configure a database for recoverability
[  ] Configure ARCHIVELOG mode
Performing Database Backup
[  ] Create consistent database backups
[  ] Back up your database without shutting it down
[  ] Create incremental backups
[  ] Automate database backups
[  ] Backup a control file to trace
[  ] Monitor flash recovery area
Performing Database Recovery
[  ] Recover from loss of a Control file
[  ] Recover from loss of a Redo log file
[  ] Recover from loss of a system-critical data file
[  ] Recover from loss of a non system-critical data file
Performing Flashback
[  ] Describe flashback database (12)
[  ] Resotore the table contents to a specific point in time (12)
[  ] Recover from a dropped table (12)
[  ] Use Flashback Query to view the contents of the database as of any single point of time (12)
[  ] View transaction history or row with flashback transaction query (12)
Moving Data
[  ] Describe the general architecture of Data Pump (13)
[  ] Use Data Pump export and import to move data between Oracle databases
[  ] Load data with SQL Loader (14)
[  ] Use external tables to move data (14)
You need to pass 1Z0-047 Oracle Database SQL Expert exam (or ) 1Z0-007  before appearing above exam. so you need to pass 2 exams to become OCA in DBA

Writing Basic SQL Select Statements
[  ] List the capabilities of SQL SELECT statements
[  ] Execute a basic SELECT statement
[  ] Differentiate between SQL statements and iSQL*Plus commands
Restricting and Sorting Data
[  ] Limit the rows retrieved by a query
[  ] Sort the rows retrieved by a query
Single-Row Functions
[  ] Describe various types of functions available in SQL
[  ] Use character, number, and date functions in SELECT statements
[  ] Use conversion functions
Displaying Data from Multiple Tables
[  ] Write SELECT statements to access data from more than one table using equality and nonequality joins
[  ] View data that generally does not meet a join condition by using outer joins
[  ] Join a table to itself using a self-join
Aggregating Data using Group Functions
[  ] Identify the available group functions
[  ] Use group functions
[  ] Group data using the GROUP BY clause
[  ] Include or exclude grouped rows by using the HAVING clause
Subqueries
[  ] Describe the types of problems that subqueries can solve
[  ] Define subqueries
[  ] List the types of subqueries
[  ] Write single-row and multiple-row subqueries
Producing Readable Output with iSQL*Plus
[  ] Produce queries that require a substitution variable
[  ] Produce more readable output
[  ] Create and execute script files
Manipulating Data
[  ] Describe each DML statement
[  ] Insert rows into a table
[  ] Update rows in a table
[  ] Delete rows from a table
[  ] Merge rows in a table
[  ] Control transactions
Creating and Managing Tables
[  ] Describe the main database objects
[  ] Create tables
[  ] Describe the datatypes that can be used when specifying column definition
[  ] Alter table definitions
[  ] Drop, rename and truncate tables
Including Constraints
[  ] Describe constraints
[  ] Create and maintain constraints
Creating Views
[  ] Describe a view
[  ] Create, alter the definition, and drop a view
[  ] Retrieve data through a view
[  ] Insert, update and delete data through a view
Creating Other Database Objects
[  ] Create, maintain and use sequences
[  ] Create and maintain indexes
[  ] Create private and public synonyms

Never try to use dumps to pass any certification exam. After all why we want spend money and time for certification? to gain knowledge and recognition.Blindly  following latest dumps and certified is total useless and not legal.   How you going to perform day to day work, if you  even don;t know basic knowledge about product?? How you can attend interview with zero knowledge in Oracle/any product?

Best of Luck !

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance (This post)
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

How to convert as oracle DBA from system administrator

How to learn Oracle in 25 days? series, today I am going to show you  my schedule drafted by me to help us to reach the goal.You guys prepare your own schedule and start working on this. Without schedule it is not possible to learn about Oracle Devil  in 25days.

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator (This post)
  10. How Oracle Works in single shot
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL

How Oracle Works in single shot

Picture equal to thousand words, let me implement  that here. Below you can find over all procedure of Oracle working in a picture. As following text is copy righted and extracted from Oracle public domain documents. Converted using http://hostimagefree.com text 2  image  option. As I mentioned in my earlier post in our “DBA in 25days” series, first you need to study concepts book then it is very easy to understand following image.

How Oracle works

Other Posts related to current topic

  1. Passed OCA PAPER -1 Oracle 9i sql 1Z0-007
  2. How to apply for OCA exam 1Z0-007
  3. 01. Lets learn SQL statement SELECT 1Z0-007
  4. Oracle DBA and SQL basics video tutorials - 00
  5. SQL vs SQLPLUS - Learn SQL online
  6. Project OCA DBA DAY-1 schedule details.FREE OCA tutorial
  7. Let's start PROJECT OCA
  8. Oracle OCA DBA certification details and guidance
  9. How to convert as oracle DBA from system administrator
  10. How Oracle Works in single shot (This post)
  11. Best books to learn Oracle DBA
  12. Got the software now time to gather Oracle 10g books
  13. Oracle 10g Express vs Standard vs Enterprise
  14. Become a Oracle DBA within 25 days

MyFreeCopyright.com Registered & Protected
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
Copy right related
Blog author MR.Rav

Enter your email address:

GET UPDATES TO YOUR E-MAIL