Search found 15603 matches

by ArndW
Thu Jul 05, 2012 3:59 am
Forum: General
Topic: Unable to login to Datastage
Replies: 2
Views: 1233

That sounds like soething on your client PC has changed and a DLL required can either not be found or has been corrupted. What have you done on your PC since this morning? To cross-check, is anyone else working on different client PCs experiencing problems?
by ArndW
Wed Jul 04, 2012 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Read excel file (.xls) in to datastage
Replies: 4
Views: 10987

Also, you can test the connection outside of DataStage using "msquery.exe" if you have that installed.
by ArndW
Wed Jul 04, 2012 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Read excel file (.xls) in to datastage
Replies: 4
Views: 10987

After declaring the system DSN and when you try to import the metadata, did you set the filter to "include system tables" and then select the appropriate Excel tab (that will be the name of the sheet tab in Excel followed by a "$")? Do you have column information in that sheet an...
by ArndW
Wed Jul 04, 2012 5:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading data from datasets to text file
Replies: 3
Views: 1718

I would write a generic job to do the dataset -> text transfer. The job would declare no columns at all and use RCP, parameterizing the dataset file name and the output file. In the after-job routine I would call the shell command "orchadmin rm {path-and-name of dataset}" to delete the dat...
by ArndW
Tue Jul 03, 2012 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Stage without key only value changes
Replies: 4
Views: 2174

Are you sure that you haven't switched around your primary and secondary input links? Assume they are switched, would that explain your output behaviour?
by ArndW
Tue Jul 03, 2012 8:49 am
Forum: General
Topic: User connection issue with 8.7
Replies: 14
Views: 5681

No, a user does not need to be an administrator to access the director tool.

For your user, did you fill in the "suite components" in the administrator?
by ArndW
Tue Jul 03, 2012 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with SORT
Replies: 15
Views: 4704

In that case it would seem that you are sorting by Field2 then Field1. Do you have other sample data which can help show the problem?
by ArndW
Tue Jul 03, 2012 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with SORT
Replies: 15
Views: 4704

What data type is field 2? If the data type is varchar() then most collating sequences will sort "*" (ASCII Character 42) after the digits (ASCII Characters 48-57). If the "*" denotes a NULL value in that field, datastage defaults to sorting that before other values. Could you be...
by ArndW
Tue Jul 03, 2012 5:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Enterprise Edition Satge- Max Log issue
Replies: 5
Views: 2803

What does your DELETE statement look like. Basically, if the delete is only called one time, i.e. one input row and the delete is "DELETE * from <table> where <condition>;" then it might burst the rollback space regardless of the stage settings and that is what it looks like is happening. ...
by ArndW
Tue Jul 03, 2012 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Enterprise Edition Satge- Max Log issue
Replies: 5
Views: 2803

The Database has run out of space to (temporarily) store the records in your delete transaction. Either define a smaller transaction size or have your DBA increase the rollback space.

What commit sizes did you experiment with? Which stage are you using on which release?
by ArndW
Tue Jul 03, 2012 3:33 am
Forum: General
Topic: Error while executing the sequence
Replies: 3
Views: 1592

Have you checked your subsequence log when called from a master sequence to see if the parameter values that you expect are actually being passed in?

Do you have an error handler "ehGenericExceptions"?
by ArndW
Tue Jul 03, 2012 3:31 am
Forum: General
Topic: Execute command issue
Replies: 1
Views: 887

Execute command issue

My first thought is that the difference might be in the attach point for the process and it might work if you use absolute pathnames. You could check this by adding a "pwd" command to see where your process is attached.
by ArndW
Mon Jul 02, 2012 7:01 am
Forum: General
Topic: Invoke director from command line
Replies: 4
Views: 2417

The director program uses the GUI and is not a comand-line oriented program.

It sounds like "dsjob.exe" will do what you want, e.g. "dsjob -ljobs". For a full list of your options with dsjob.exe either call it with "dsjob -help" or see
IBM dsjob description
by ArndW
Mon Jul 02, 2012 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record Formation
Replies: 3
Views: 1544

It looks like your expected output could be achieved with 2 stages: 1. As Craig already mentioned, do a simple horizontal pivot 2. Perform a unique sort on your resultant data on the output Col E If you start with the horizontal pivot stage and get that to function as you expect then you can decide ...
by ArndW
Mon Jul 02, 2012 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterizing where clause in db2 connector
Replies: 5
Views: 4421

Are you certain that your var1 string contains the single quotes around the values? If so, then just doing ...IN (#var1#)... in the SELECT should work. I don't have DB2 here, but tested it with other connectors and that functioned correctly.

In your post I see double-quote in the error message.