Reputation: 62424
how i can backup oracle 10g like backup and restore in sql server ?
i want to backup tables and data
thank's in advance
Upvotes: 0
Views: 896
Reputation: 41
Oracle export data pump (expdp) is also good utility to take logical backup of your schema. You have very nice features with lot of flexibility in data pump. You can follow the link given below for further reading.
http://docs.oracle.com/cd/B19306_01/server.102/b14215/dp_export.htm
Upvotes: 0
Reputation: 146199
Oracle has a comprehensive backup and recovery suite which is formally called Recovery Manager but is universally known as RMAN. Find out more.
Upvotes: 1
Reputation: 48018
If you only want table structures and data (no code), you can use SQL Server Integration Services (SSIS) package for this.
Read up here on the various methods and their associated speed
Upvotes: 0
Reputation: 2587
The typical term for this is 'migrate' not 'backup'. You'll then find results in your favorite search engine to tools like: SQL Server Migration Assistant for Oracle
Upvotes: 0