answersLogoWhite

0


Best Answer

There are several different ways. If you are going between one Oracle database and another Oracle database you can create a database link. Another method would be an Oracle export to flat file and then a import to another database.

This all depends on the type of database you are trying to load the data into.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you load the data into oracle database to another database?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the realm meaning of the term ETL?

ETL is short for extract, transform, load, three database functions that are combined into one tool to pull data out of one database and place it into another database.


What is ETL software used for?

ETL software stands for 'Extract, Transform and Load'. This software is used mainly to migrate data from one database to another. It is also used to convert database formats from one type to another.


How do you copy a database of mysql in wamp server from one computer to another?

You have several options: * copy the database files from mysql/data/<database_name> to a new mysql Installation * use mysqldump utility to export the data from your database and load it into the new mysql installation * setup replication


What is bulk loading in a database?

Usually, that is using a "load" file to import data into a database. That can be a flat, delimited file or other formats. The type of format used depends on the database. My database has data upload batch jobs scheduled daily.


What are the pros and cons of TIBCO and Oracle apps integration?

Pros 1) TIBCO creates a middle layer between Oracle and other apps. This allows for changes to other apps to occur with minimal impact to Oracle. Instead the change is managed between the app and Tibco. 2) Multiple apps can use the data extracted from a large Oracle app like Peoplesoft. This allows less load on the Oracle database because the information is extracted once. The load is pushed onto the Tibco middleware instead. Cons 1) Production level debugging is poor. Logging is not recommended becuase it slows performance. 2) Data transfer takes longer. Tibco's pub and sub architecture slows the data transfer between applications compared to direct dblinks. 3) Extra licencing costs, upgrades, resources, training are required to maintain tibco.


What is databse integrity control?

Integrity control means keeping the data consistent and correct by means of controls that a database administrator puts on the database. Only persons with privileged accounts can load data into the database. Even with that, there are rules on the table fields that allow only a certain type of data to be inserted.


How do you convert an Excel database to a Mysql database?

1. For every sheet you have in Excel, create a matching table in MySQL database 2. Export excel data to a CSV file 3. Load the CSV files into MySQL database using one of the following: 3.1 mysqlimport - Loads tables from text files in various formats 3.2 LOAD DATA INFILE command 3.3 Create the tables with CSV storage engine, replace the CSV file in the database directory


Why would you use the skip-networking command?

to prevent remote access to the database and disallow the ability to load a local data file


What is etl?

ETL stands for Extract, Transform, Load. It refers to the process of extracting data from various sources, transforming it into a consistent format, and loading it into a data warehouse or database for analysis. ETL is a critical component of data integration and analytics workflows.


What is the difference between fields records files and databases?

A database is a whole load of data set onto a database, it is possible to have more than one database. A field is a record part and the record is the total part. A field is like: first name is a field, last name is another field., Mr/Mrs is another field, the whole records is all of the fields relating to a person. Like the address, the town, the postcode, etc.


How do you load a class in Jdbc?

Ans:Loading a class in JDBC For getting connection to database and to query database for INSERT,UPDATE,DELETE and to do some operations on database through java programs you need to load the jdbc driver class for a particular database provided by the database provider for that you use class.forName() Method this method will load the class which are necessary for database operations


How do you connect data in to database?

If you want to connect to any database, you need to follow certain methods. Start by creating a database connection, configuring, binding data and testing.Different programming languages have different ways to connect. For example, in visual studio .Net, if you want to connect to any database then you need to follow the database configuaration wizard. That means you connect your application to a database by running the "data source configuration wizard" and selecting database on the "choose a data source type" page.Another example: suppose you are using Java..Regardless of whether you're trying to connect to Oracle, SQL Server, MySQL, Postgres, mSQL, Interbase (or any other JDBC data source), establishing a connection to a database with Java JDBC is a simple two-step process:1)Load the JDBC driver.2)Establish the JDBC connection to your databaseYou can also use Microsoft Access and once you have data objects such as tables, views, proceduers, etc. then you can connect by following the self explanatory wizards.This answer might give you a generic idea since the question is a generic question.If you need further assistance then send your query to:palemjn@hotmail.comJitendra**Grammar corrected by gbaughma**Additional note from gbaughma: MS Access doesn't do stored procedures. ;)