4 Replies - 2486 Views - Last Post: 11 August 2008 - 05:25 AM

#1 fsloke  Icon User is offline

  • D.I.C Regular

Reputation: 25
  • View blog
  • Posts: 410
  • Joined: 19-December 07

Oracle 10g :how to extract the data from existing DB?

Posted 08 August 2008 - 05:51 AM

Question 1
-------------
Oracle 10g how to extract the data from existing DB?

Any link?

Any client software needed?

Is it as easy as Mysql database or MS SQL [ Just Click on Extract database to script... ] Then load back to the new database...

The script will create the schema and insert the data into the database....

Question 2
------------

Let say the database too huge 100G, can I extract a portion of the data?
Let say I extract 80% from the existing database...

How can I do this?

Thank you...

Is This A Good Question/Topic? 0
  • +

Replies To: Oracle 10g :how to extract the data from existing DB?

#2 jjsaw5  Icon User is offline

  • I must break you
  • member icon

Reputation: 88
  • View blog
  • Posts: 3,056
  • Joined: 04-January 08

Re: Oracle 10g :how to extract the data from existing DB?

Posted 08 August 2008 - 12:17 PM

View Postfsloke, on 8 Aug, 2008 - 08:51 AM, said:

Question 1
-------------
Oracle 10g how to extract the data from existing DB?

Any link?

Any client software needed?

Is it as easy as Mysql database or MS SQL [ Just Click on Extract database to script... ] Then load back to the new database...

The script will create the schema and insert the data into the database....

Question 2
------------

Let say the database too huge 100G, can I extract a portion of the data?
Let say I extract 80% from the existing database...

How can I do this?

Thank you...




You'll want to use the SELECT statement to extract the data that you are going to need from the data base. You are going to need to know the table names other informtiaton. Select statements can be very simple or very complex.

here is an example

SELECT * FROM Products WHERE Product_ID = '8'

this is selecthing everything from the products table where the producut ID = 8




I am assuming this is your 1st time doing database stuff?
Was This Post Helpful? 0
  • +
  • -

#3 fsloke  Icon User is offline

  • D.I.C Regular

Reputation: 25
  • View blog
  • Posts: 410
  • Joined: 19-December 07

Re: Oracle 10g :how to extract the data from existing DB?

Posted 10 August 2008 - 01:19 AM

Quote

I am assuming this is your 1st time doing database stuff?

Not really first time...

I just want to extract the existing data from the database using Oracle...

How can I do it?

Thank
Was This Post Helpful? 0
  • +
  • -

#4 jjsaw5  Icon User is offline

  • I must break you
  • member icon

Reputation: 88
  • View blog
  • Posts: 3,056
  • Joined: 04-January 08

Re: Oracle 10g :how to extract the data from existing DB?

Posted 10 August 2008 - 06:08 PM

You'll want to use select statements.

Like the example i gave above, and you can use those to pull whatever data you need out of the database.

If you can give me some table names and what data you would like to pull out I would be more then happy to help you out.
Was This Post Helpful? 0
  • +
  • -

#5 1lacca  Icon User is offline

  • code.rascal
  • member icon

Reputation: 44
  • View blog
  • Posts: 3,822
  • Joined: 11-August 05

Re: Oracle 10g :how to extract the data from existing DB?

Posted 11 August 2008 - 05:25 AM

Oracle Export/Import FAQ
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1