0
votes
2answers
77 views

Import only sequences from an Oracle exp dump [closed]

Is there a way to import all sequences of a schema from a dump of a schema (generated with exp full=y)? I don't want to import procedures or tables, but only all the sequences. I want to use the imp ...
0
votes
1answer
191 views

Querying (SQL) Oracle/Toad dump files without importing them

We're doing a monthly data dump of our databases using Toad for Oracle's Export function. We've got some SQL queries to create statistics about the data. I'd like to compare the results of the current ...
1
vote
1answer
517 views

Import a large SQL dump via sqlpus

There is a dump in .sql format, to be imported to the server. From tools only sqlplus. The problem is that sqlplus requires that after each CREATE TABLE was / and only after / start creating the ...
1
vote
1answer
126 views

What is the DB2 equivalent of DUMP function in Oracle?

The dump function in Oracle displays the character set and bitwise representation of how data is stored. Does anybody know if there is an equivalent command in DB2 please? Thank you.
0
votes
1answer
146 views

is the order of tables relevant when importing from oracle dump?

I am trying to import specific tables from an oracle dump, in order to avoid any parent key not found exception, I want to follow a certain order to import the tables. For example if tables X depends ...
3
votes
2answers
1k views

Import specific tables from oracle dump file?

I have a dump of a huge oracle database so it is impossible to import it all. I want to import a specific table called X. The problem is that X has foreign keys. If I import just X, I will get the ...
0
votes
0answers
172 views

Create Oracle sql dump (with CLOBs)

I need to dump my Oracle database as sql file. The problem is that some tables contain a CLOB column and so the sql export function fail. Is there any way to get the dump as sql file if possible with ...
0
votes
1answer
55 views

what happens when a fresh dump is re-imorted in same user (Oracle)

I have a development system and a production system. Now If i make changes in my development schema like new tables.. change in table structures etc. take dump and re import on the production ...
1
vote
1answer
715 views

Import Oracle table dump with insert statements and clob data types using Java

I have an Oracle table dump containing insert statements. Some of the tables contain clob data fields. If I try to restore the dump using SQL Developer I get the error "ORA-01704: string literal too ...
0
votes
2answers
173 views

Avoiding error rows during Oracle dump import

I am using Oracle's imp/exp utility to transfer database to another server. First I have created an empty database with the same tablespaces as the source database. When I use full mode the result of ...
2
votes
1answer
528 views

Oracle SQL Dump file extracting parts to sql/another dump file

I have a Oracle DB dump file and now I only need parts of the tables that are included there. Does anyone know how I can extract this parts into a separate dump file (or sql)? I thought about using ...
1
vote
2answers
79 views

Periodical dump of SQL Server table to Oracle table

I have a request to dump periodically, every 15 minutes, data from a SQL Server database and move it to an Oracle database. This activity will go under a scheduler like Tivoli. Have Oracle or ...
1
vote
1answer
3k views

Dumping CLOB fields into files?

Say you have the table: Column_name | data_type Title | Varchar2 Text | CLOB with some rows: SomeUnkownMovie | A long time ago in a galaxy far, far away....(long text ahead) ...
1
vote
1answer
225 views

Can't get full dump using cmd:Invalid Username/Password error

I'm trying to get a full dump of a certain database called HQBASE. I write the following command in cmd exp userid=sys/123456 FULL=Y FILE=C:\HQ_FULL.DMP but I get invalid username/password:logon ...
2
votes
2answers
7k views

PL/SQL developer import dump

I have a dump file which includes two tables. Now I need to import this dump file. I was instructed to create two tablespaces beforehands.Now how do I import this dump file to these tablespaces. I'm ...
0
votes
3answers
532 views

Is there a Oracle equivalent of mysqldump

Is there a way to dump the content of a oracle table in to a file formated as INSERT statements. I can't use oradump as it is on GPL. I will be running it from a perl CGI script. I am looking for ...
5
votes
5answers
14k views

Determining the NLS_LANG setting for an existing Oracle database dump file

We were handed a dump file by another team who are gone away for the rest of the year. When we try to import the dump into our own database, we get the following error: IMP-00038: Could not convert ...
2
votes
3answers
640 views

Can I manually change the dump file created by imp tool of Oracle?

I have encountered a problem in importing the dump file to a new database. When importing the dump file it requires a new tablespace which does not exist in the database. To create the tablespace I ...
1
vote
1answer
605 views

Validate Oracle dmp

I have a Oracle backup done with EXP utility. How can I validate it? Is there any command/tool to validate the backup archive? Thank you!
10
votes
3answers
10k views

Migrate from Oracle to MySQL

We ran into serious performance problems with our Oracle database and we would like to try to migrate to a MySQL-based database (either MySQL directly or, more preferrably, Infobright). The thing is, ...
1
vote
1answer
590 views

Oracle : Use two different versions of EXP on the same machine?

i have a server (HP-UX) installed with Oracle 10g and several databases on it. I've been asked to make dumps from these tables for a Oracle 8i database. In order to do this, i need to use the 8i ...
0
votes
2answers
500 views

Importing two dmp files into single schema

I have two dmp files to imported into the same schema in my DB. They are each 20GB (size was probably the reason why they were exported as two dump files). How can I do a successive import into the ...
1
vote
1answer
3k views

Error importing oracle dump

I am trying to import a dump into two schema in the same oracle DB.Following a workaround to do this. I am trying to run the imp command with the INDEXFILE option to be able to modify the tablespace ...
1
vote
3answers
2k views

Database agnostic jdbc table import/export to files?

Is it at all possible to do database-agnostic table dumps/hydrates? I don't have any complicated constraints. I would also settle for db-specific ways, but the more pure jdbc it is the better (I don't ...