Search found 15603 matches
- Mon Aug 27, 2007 2:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to open project folder in Designer/manager
- Replies: 4
- Views: 988
- Mon Aug 27, 2007 2:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting an Error: regarding Input Redirection
- Replies: 11
- Views: 9631
Re: Getting an Error: regarding Input Redirection
The ODBC_Connector_108 stage has the string "
-XMLProperties '<?xml" which seems to trigger the error message at compilation. Is the "<" properly quoted so that it isn't interpreted as a redirection command?
-XMLProperties '<?xml" which seems to trigger the error message at compilation. Is the "<" properly quoted so that it isn't interpreted as a redirection command?
- Mon Aug 27, 2007 2:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Passing in Datastage Field to DB2 Stage SQL Query.
- Replies: 7
- Views: 14862
The normal type will load the whole result to DataStage and use that for looking up each row. The sparse will do a singeton lookup for each data row. Unless you only have a few rows coming in your data stream, or you might be changing the lookup column values while the job is running and need the ne...
- Mon Aug 27, 2007 1:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to open project folder in Designer/manager
- Replies: 4
- Views: 988
- Mon Aug 27, 2007 1:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Setting order of execution of two different flow in a single
- Replies: 6
- Views: 1055
- Sun Aug 26, 2007 10:55 pm
- Forum: General
- Topic: Job Hanging.
- Replies: 17
- Views: 5002
Put a constraint of "1=2" onto the transform stage output writing to your Oracle stage and run the job. Better yet, make a copy of your job and keep only your source stage and write the result to a sequential file at /dev/null to see how long your select takes to execute in the real job, not just th...
- Sun Aug 26, 2007 9:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Passing in Datastage Field to DB2 Stage SQL Query.
- Replies: 7
- Views: 14862
- Sun Aug 26, 2007 9:45 pm
- Forum: General
- Topic: Job Hanging.
- Replies: 17
- Views: 5002
- Sun Aug 26, 2007 9:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performing database commits based on data - can it be done
- Replies: 3
- Views: 1129
We have a number of files coming in (from the phone switches) with call information. Some files are just a couple of rows, others have hundreds of thousands. The PX job that processes these files uses a lot of lookup filesets and lookups to database tables - the startup time to load this information...
- Sun Aug 26, 2007 8:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Passing in Datastage Field to DB2 Stage SQL Query.
- Replies: 7
- Views: 14862
- Sun Aug 26, 2007 8:26 pm
- Forum: General
- Topic: Job Hanging.
- Replies: 17
- Views: 5002
Remove the 'load' part, make the job write to /dev/null. If it still hangs, you know it is an issue on your extract, perhaps a very lenghty select. If it runs, then the issue is probably on your load stage. Some more details on the stage types involved in the source and target would make solving the...
- Sun Aug 26, 2007 8:13 pm
- Forum: General
- Topic: Job Hanging.
- Replies: 17
- Views: 5002
Remove the 'load' part, make the job write to /dev/null. If it still hangs, you know it is an issue on your extract, perhaps a very lenghty select. If it runs, then the issue is probably on your load stage. Some more details on the stage types involved in the source and target would make solving the...
- Sun Aug 26, 2007 7:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performing database commits based on data - can it be done
- Replies: 3
- Views: 1129
Performing database commits based on data - can it be done
I have a PX job which has a named pipe as the input stream and which processes a lot of data during it's lengthy run. One of the columns in this file is "FILE_ID", which contains the reference to the actual source file. Due to the large amount of data (over a hundred million rows per day) I would li...
- Sun Aug 26, 2007 7:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connect & Execute Oracle SQL by script
- Replies: 12
- Views: 3543
- Sun Aug 26, 2007 7:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Common Memory performance - read/write
- Replies: 12
- Views: 2414
Your approach is similar to what happens with database sequences - by changing the sequence 'cache size' you pre-allocate blocks of sequence numbers so that you don't need to get back to the database as often, with the downside that you might lose much of a cach block of sequence numbers if the job ...