-
How to import/export table from informix database
Hello,
Can somebody tell me how to import / export tables from informix database
regards,
Srinivas
-
Re: How to import/export table from informix database
Which DB engine? SE or IDS?
Using SE:
Run this SQL stmt to create delimited text file for each table:
Unload to filename select * from tablename;
Run this SQL stmt to load the data:
Load from filename insert into tablename;
We're not using IDS, but I think it is similar, perhaps different commands.
Lori
"sva" srinivas.vanapalliqon2trade.de wrote:
>
>Hello,
>
>Can somebody tell me how to import / export tables from informix database
>
>regards,
>Srinivas
-
Re: How to import/export table from informix database
"Lori" <lori.helton@citynmb.com> wrote:
>
>Which DB engine? SE or IDS?
>
>Using SE:
>Run this SQL stmt to create delimited text file for each table:
>Unload to filename select * from tablename;
>
>Run this SQL stmt to load the data:
>Load from filename insert into tablename;
>
>We're not using IDS, but I think it is similar, perhaps different commands.
>
>Lori
>
>"sva" srinivas.vanapalliqon2trade.de wrote:
>>
>>Hello,
>>
>>Can somebody tell me how to import / export tables from informix database
>>
>>regards,
>>Srinivas
>
-
Re: How to import/export table from informix database
"Gary" <Gary.J.Lively.-ND@disney.com> wrote:
Works for both.
IDS has a High Performance Loader (HPL) which is much faster for very large
tables.
- Gary
>
>"Lori" <lori.helton@citynmb.com> wrote:
>>
>>Which DB engine? SE or IDS?
>>
>>Using SE:
>>Run this SQL stmt to create delimited text file for each table:
>>Unload to filename select * from tablename;
>>
>>Run this SQL stmt to load the data:
>>Load from filename insert into tablename;
>>
>>We're not using IDS, but I think it is similar, perhaps different commands.
>>
>>Lori
>>
>>"sva" srinivas.vanapalliqon2trade.de wrote:
>>>
>>>Hello,
>>>
>>>Can somebody tell me how to import / export tables from informix database
>>>
>>>regards,
>>>Srinivas
>>
>
-
Re: How to import/export table from informix database
"Lori" <lori.helton@citynmb.com> wrote:
>
>Which DB engine? SE or IDS?
>
>Using SE:
>Run this SQL stmt to create delimited text file for each table:
>Unload to filename select * from tablename;
>
>Run this SQL stmt to load the data:
>Load from filename insert into tablename;
>
>We're not using IDS, but I think it is similar, perhaps different commands.
>
>Lori
>
Thanks a lot, Lori
I was confusing in this, too.
Your answer had helped me.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks