Search found 116 matches

by ppalka
Mon Nov 07, 2005 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to configure node for remote db2 server?
Replies: 5
Views: 1662

how to configure node for remote db2 server?

I have problems with configuration of db2 server node. I read in documentation that if I want to use db2 enterprise stage to connect db2 server on a remote machine I need add an entry in PX config file. And I have a question about it: do I need to install PX engine on that machine where I have a db2...
by ppalka
Mon Nov 07, 2005 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with db2 stage
Replies: 5
Views: 1707

I have defined an ODBC DSN and now I get the following errors: loaddb2..DB2_UDB_Load_4: ERROR occurred : loading table, SQLCODE -1024 loaddb2..DB2_UDB_Load_4: SQL1024C Połączenie z bazą danych nie istnieje. SQLSTATE=08003 (translation: A connection to database doesn't exist) loaddb2..DB2_UDB_Load_4:...
by ppalka
Fri Nov 04, 2005 4:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: very slow executing of job with db2 stage
Replies: 1
Views: 1079

very slow executing of job with db2 stage

hi, I have a problem with jobs which are using a DB2 stage. It is the same in server and parallel job. These jobs are executing very slowly. For example simple job: seq file -> DB2 source data: two columns and one thousand records It finished after 7min !!! What can I do to speed up that jobs? Regar...
by ppalka
Wed Nov 02, 2005 3:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using db2 plugin in windows
Replies: 3
Views: 1043

I install Express edition as server and client and it is working fine :)
Anyway thanks
by ppalka
Tue Nov 01, 2005 2:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using db2 plugin in windows
Replies: 3
Views: 1043

Re: using db2 plugin in windows

But what is the name of DB2 client app? Run-time client? It is just a command line utility :/
by ppalka
Tue Nov 01, 2005 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using db2 plugin in windows
Replies: 3
Views: 1043

using db2 plugin in windows

Hi, I am trying to cofigure db2 plugin to connect to db2 database located not on the same machine as ds server. DS server is located on windows and db2 is also installed on windows machine, but it is not the same computer. I don't know what I need to install on DS server machine? DB2 connect? I want...
by ppalka
Mon Oct 24, 2005 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_String and other PX types
Replies: 8
Views: 3012

to be more precise:
$PX_HOME/include/apt_util ;)
by ppalka
Fri Oct 21, 2005 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_String and other PX types
Replies: 8
Views: 3012

OK, I will check it. But isn't there a documentation about that?
by ppalka
Fri Oct 21, 2005 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_String and other PX types
Replies: 8
Views: 3012

APT_String and other PX types

Where can I find some info about APT_String type and other PX types used in Build OP stage? Some reference about methods which can I use on such type of data.
How to convert C++ string type to APT_String?
Thanks a lot.

Piotrek
by ppalka
Fri Oct 07, 2005 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return value of RowProcCompareWithPreviousValue??
Replies: 2
Views: 1782

Re: Return value of RowProcCompareWithPreviousValue??

1. What does RowProcCompareWithPreviousValue return after the comparison? Is it 1 if True and 0 when false? Routine description: The routine provides a persistent switch based upon the input data. If the supplied value compares with the previous value, 1 is returned, otherwise 0 is returned. This i...
by ppalka
Tue Sep 06, 2005 4:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: one field from multirow lookup to multivalue field
Replies: 30
Views: 7273

I have just solved my problem. It was such a silly thing: just to trim a PRODUCT_ACCOUNT_NUMBER column :)
Thanks for your help
by ppalka
Tue Sep 06, 2005 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: one field from multirow lookup to multivalue field
Replies: 30
Views: 7273

SQL query: select count(1) from HOLDER_UV where PRODUCT_ACCOUNT_NUMBER='196948' Output: SQL+ count ( 1 ) 0 1 records listed. End of output. Output of LIST DICT HOLDER_UV: TEST #1 ******* Arg1 = Test completed. Result = DICT HOLDER_UV 10:22:07 05-09-06 Page 1 Type & Field......... Field. Field......
by ppalka
Sun Aug 28, 2005 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: one field from multirow lookup to multivalue field
Replies: 30
Views: 7273

OK.
I will post that after I came back from my summer holiday :)
Thanks once again.
I hope we will solve that problem finally.

Best regards,
Piotrek
by ppalka
Sat Aug 27, 2005 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: one field from multirow lookup to multivalue field
Replies: 30
Views: 7273

Because you do not need quotes around a number. Why did you waste our time making this a lot more complicated than it should be. Cause it's not working. In this example there is a number, but in UV table PRODUCT_ACCOUNT_NUMBER column is a VARCHAR type. However thanks for taking your time. I will tr...
by ppalka
Sat Aug 27, 2005 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: one field from multirow lookup to multivalue field
Replies: 30
Views: 7273

select count(*) from HOLDER_UV where PRODUCT_ACCOUNT_NUMBER='184306'; But this query return 0, which is not a valid result. When I use the query: select count(*) from HOLDER_UV where ID=1; then it's working fine. All result from executing the query I have posted a few posts before. Do you want to s...