Search found 15603 matches

by ArndW
Thu Aug 30, 2007 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I populate a MS Access database using odbc stage
Replies: 2
Views: 831

You need to purchase a 3rd party product that supplies ODBC connectivity to Windows from UNIX. DirectConnect (or whatever they are called now) is one such supplier.
by ArndW
Thu Aug 30, 2007 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ASCII FILE Size
Replies: 3
Views: 806

Could it be fixed length fields? Sometimes loader files use fixed lengths so that they can more easily stream data.
by ArndW
Thu Aug 30, 2007 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage installation question
Replies: 2
Views: 796

The background processes get started when you start the server. What messages do you get while you start DataStage? Also, have you checked the other posts in this forum regarding reasons why the rpcd won't start (hint - open connections)
by ArndW
Thu Aug 30, 2007 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting DB2 through command line
Replies: 2
Views: 2299

I've done this sort of thing before with UNIX db2 connectivity without any problems. The nice thing about DB2 sessions is that they are persistent, so you only need to issue your connect once per session. I'm not sure how you can issue 'db2cmd' before the connect, though. What is the output of 'Resu...
by ArndW
Thu Aug 30, 2007 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSWaitForJob waiting indefinately
Replies: 9
Views: 7102

Katz, I've often implemented a small loop instead of the non-interruptable DSWaitForJob() call. It will issue a call to DSGetJobInfo() to get the status, and if it is still running it will wait a couple of seconds and then try again. That way I can issue a call to DSLogFatal() if I end up waiting to...
by ArndW
Thu Aug 30, 2007 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete Categories
Replies: 9
Views: 1741

The message would seem to indicate you had a job called 'Category_Name' or did you replace that text?
by ArndW
Thu Aug 30, 2007 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric (P, S)
Replies: 14
Views: 4994

Let me understand. You have EXACTNUMERIC set to 38 in your uvconfig, the database table definition for a column is (30,6), you define the column as (30,6) in your database read stage (which stage, which database?) and when you output this column to a sequential file keeping the same (30,6) definitio...
by ArndW
Thu Aug 30, 2007 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric (P, S)
Replies: 14
Views: 4994

I know this is a silly question - but did you read my post? It does answer your question.
by ArndW
Thu Aug 30, 2007 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: One configuration file for multiple projects
Replies: 4
Views: 1036

If you mean a EE Configuration file, then there is no problem at all to have the files shared across projects.
by ArndW
Thu Aug 30, 2007 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with deleting records in the table before inserting
Replies: 15
Views: 13223

Ensure your commit size is 1
by ArndW
Thu Aug 30, 2007 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with deleting records in the table before inserting
Replies: 15
Views: 13223

Remove the Delete from the 2nd link. Doesn't that satisfy your logic?
by ArndW
Thu Aug 30, 2007 2:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sudden degradation in performance of job collecting logs
Replies: 3
Views: 1019

Those numbers are internal format for date and time; but the contents of that file (it is a sequential file) might contain the job name or number which you can lookup in the DS_JOBS table.
by ArndW
Thu Aug 30, 2007 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with deleting records in the table before inserting
Replies: 15
Views: 13223

Link 1 has your before-sql "delete" in the DB2 stage, Link 2 doesn't. That is why you need to separate your stages as well.
by ArndW
Wed Aug 29, 2007 11:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with deleting records in the table before inserting
Replies: 15
Views: 13223

I suggest using 2 links and 2 distinct stages for exactly that reason.
by ArndW
Wed Aug 29, 2007 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage handling nulls and change of datatype
Replies: 7
Views: 3475

I should have read the original in more detail. I hate how the modify stage only allows one action to be performed per column....