Unix Technical Forum

RE: HPLoader Configuration

This is a discussion on RE: HPLoader Configuration within the Informix forums, part of the Database Server Software category; --> That's the problem I don't know how to do it. Have you an example or something that can help ...


Go Back   Unix Technical Forum > Database Server Software > Informix

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-20-2008, 09:31 AM
Cesar Cruz
 
Posts: n/a
Default RE: HPLoader Configuration


That's the problem

I don't know how to do it.

Have you an example or something that can help me?

Regards,


--- Martin_Fischer@agsea.com escribió:

> Or one could create HPL load jobs that copy from table to table bypassing
> the need to unload to files altogether. There was not alot of information
> in the initial post to determine a proper solution.
>
> Martin Fischer
> Database Administrator
> Associated Grocers, Inc.
>
>
> NOTICE: This email message is for the sole use of the intended
> recipient(s) and may contain confidential and privileged information. Any
> unauthorized review, use, disclosure or distribution is prohibited. If you
> are not the intended recipient, please contact the sender by reply email
> and destroy all copies of the original message. Thank you.
>
>
>
>
> "Savio Pinto
> \(s\)"
> <spinto@cap.org> To
> Sent by: "Cesae Cruz"
> owner-informix-li <markaragnos17@yahoo.com.mx>,
> st@iiug.org <informix-list@iiug.org>
> cc
>
> 06/07/2005 01:09 Subject
> PM RE: HPLoader Configuration
>
>
>
>
>
>
>
>
>
>
> you can create a Load jobs in HPL to do this, you can create a HPL jobs to
> unload the table into multiple files, and then create a single job to load
> the multiple files to the table. you may do this from the gui (ipload) or
> using onpladm.
>
> -----Original Message-----
> From: owner-informix-list@iiug.org
> [mailtowner-informix-list@iiug.org]On Behalf Of Cesae Cruz
> Sent: Monday, June 06, 2005 4:24 PM
> To: informix-list@iiug.org
> Subject: HPLoader Configuration
>
>
>
> Hi,
>
>
> I need know how i can configurate/setting the HPloader for dowloand
> from dbspace1 and upload the same Table on dbspace8 ( 39,000,000
> Records )
>
>
> I tryed with onunload but at 25,000,000 Records it Fails.
>
>
> Regards,
>
>
> Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo
> por $100 al mes. http://net.yahoo.com.mx
>
>
>
>







__________________________________________________ _________
Do You Yahoo!?
La mejor conexión a Internet y <b >2GB</b> extra a tu correo por $100 al mes. http://net.yahoo.com.mx

sending to informix-list
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-20-2008, 09:32 AM
try_and_err@web.de
 
Posts: n/a
Default Re: HPLoader Configuration


http://www-128.ibm.com/developerwork...07carlson.html

Cesar Cruz schrieb:
> That's the problem
>
> I don't know how to do it.
>
> Have you an example or something that can help me?
>
> Regards,
>
>
> --- Martin_Fischer@agsea.com escribió:
>
> > Or one could create HPL load jobs that copy from table to table bypassing
> > the need to unload to files altogether. There was not alot of information
> > in the initial post to determine a proper solution.
> >
> > Martin Fischer
> > Database Administrator
> > Associated Grocers, Inc.
> >
> >
> > NOTICE: This email message is for the sole use of the intended
> > recipient(s) and may contain confidential and privileged information. Any
> > unauthorized review, use, disclosure or distribution is prohibited. Ifyou
> > are not the intended recipient, please contact the sender by reply email
> > and destroy all copies of the original message. Thank you.
> >
> >
> >
> >
> > "Savio Pinto
> > \(s\)"
> > <spinto@cap.org> To
> > Sent by: "Cesae Cruz"
> > owner-informix-li <markaragnos17@yahoo.com.mx>,
> > st@iiug.org <informix-list@iiug.org>
> > cc
> >
> > 06/07/2005 01:09 Subject
> > PM RE: HPLoader Configuration
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > you can create a Load jobs in HPL to do this, you can create a HPL jobsto
> > unload the table into multiple files, and then create a single job to load
> > the multiple files to the table. you may do this from the gui (ipload) or
> > using onpladm.
> >
> > -----Original Message-----
> > From: owner-informix-list@iiug.org
> > [mailtowner-informix-list@iiug.org]On Behalf Of Cesae Cruz
> > Sent: Monday, June 06, 2005 4:24 PM
> > To: informix-list@iiug.org
> > Subject: HPLoader Configuration
> >
> >
> >
> > Hi,
> >
> >
> > I need know how i can configurate/setting the HPloader for dowloand
> > from dbspace1 and upload the same Table on dbspace8 ( 39,000,000
> > Records )
> >
> >
> > I tryed with onunload but at 25,000,000 Records it Fails.
> >
> >
> > Regards,
> >
> >
> > Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo
> > por $100 al mes. http://net.yahoo.com.mx
> >
> >
> >
> >

>
>
>
>
>
>
> __________________________________________________ _________
> Do You Yahoo!?
> La mejor conexión a Internet y <b >2GB</b> extra a tu correo por $100 al mes. http://net.yahoo.com.mx
>
> sending to informix-list


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-20-2008, 09:32 AM
Superboer
 
Posts: n/a
Default Re: HPLoader Configuration


2 ways onploadadm (check manual) and ipload (check manual)

easiest way is ipload. set your display correctly and start it.(ipload)

then choose default project and choose Components from the menu.
in there choose first the devices.
--> create one it should be straight forward
--> then choose generate job where you choose the above created
dev array and tables etc.

to avoid 2 GB limit use fifo's (array type pipe) you have to create
2 dev arrays one for load one for unload. eq:

mkfifo /tmp/myfifo

unload dev:

cat - > /tmp/myfifo (pipe command)

load dev

cat /tmp/myfifo (pipe command)

Warning the os can muck up here so check your data and results

Superboer.




Cesar Cruz schreef:
> That's the problem
>
> I don't know how to do it.
>
> Have you an example or something that can help me?
>
> Regards,
>
>
> --- Martin_Fischer@agsea.com escribió:
>
> > Or one could create HPL load jobs that copy from table to table bypassing
> > the need to unload to files altogether. There was not alot of information
> > in the initial post to determine a proper solution.
> >
> > Martin Fischer
> > Database Administrator
> > Associated Grocers, Inc.
> >
> >
> > NOTICE: This email message is for the sole use of the intended
> > recipient(s) and may contain confidential and privileged information. Any
> > unauthorized review, use, disclosure or distribution is prohibited. Ifyou
> > are not the intended recipient, please contact the sender by reply email
> > and destroy all copies of the original message. Thank you.
> >
> >
> >
> >
> > "Savio Pinto
> > \(s\)"
> > <spinto@cap.org> To
> > Sent by: "Cesae Cruz"
> > owner-informix-li <markaragnos17@yahoo.com.mx>,
> > st@iiug.org <informix-list@iiug.org>
> > cc
> >
> > 06/07/2005 01:09 Subject
> > PM RE: HPLoader Configuration
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > you can create a Load jobs in HPL to do this, you can create a HPL jobsto
> > unload the table into multiple files, and then create a single job to load
> > the multiple files to the table. you may do this from the gui (ipload) or
> > using onpladm.
> >
> > -----Original Message-----
> > From: owner-informix-list@iiug.org
> > [mailtowner-informix-list@iiug.org]On Behalf Of Cesae Cruz
> > Sent: Monday, June 06, 2005 4:24 PM
> > To: informix-list@iiug.org
> > Subject: HPLoader Configuration
> >
> >
> >
> > Hi,
> >
> >
> > I need know how i can configurate/setting the HPloader for dowloand
> > from dbspace1 and upload the same Table on dbspace8 ( 39,000,000
> > Records )
> >
> >
> > I tryed with onunload but at 25,000,000 Records it Fails.
> >
> >
> > Regards,
> >
> >
> > Do You Yahoo!? La mejor conexión a Internet y 2GB extra a tu correo
> > por $100 al mes. http://net.yahoo.com.mx
> >
> >
> >
> >

>
>
>
>
>
>
> __________________________________________________ _________
> Do You Yahoo!?
> La mejor conexión a Internet y <b >2GB</b> extra a tu correo por $100 al mes. http://net.yahoo.com.mx
>
> sending to informix-list


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 10:46 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com