Search found 53125 matches
- Tue Aug 23, 2005 4:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Tab delimited related
- Replies: 4
- Views: 1407
I haven't tried this in DataStage but in many Windows applications you can use Ctrl-Tab to insert a tab where a regular Tab would move you to the next field. Once you upgrade to 7.5 you will be able to use any expression in a Job Activity in a job sequence and therefore will be able to use Char(9) t...
- Tue Aug 23, 2005 4:12 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: Creating a NEW DB and specs
- Replies: 4
- Views: 2528
FYI, in my time zone your posts are timed at 3:30am, 4:15am and 6:45am. Do be patient; this is an all-volunteer site, and no-one provides 24x7 coverage. If you want urgent responses, sign up for premium support with your support provider. I am interested in what support has to say; I have always pla...
- Tue Aug 23, 2005 1:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prioritising DataStage Processes
- Replies: 8
- Views: 2847
- Tue Aug 23, 2005 1:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Locating the error in the data
- Replies: 5
- Views: 1347
- Tue Aug 23, 2005 1:34 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Header Trailer record creation for empty source
- Replies: 6
- Views: 3487
I think that you might best solve your issue by using a before and an after job subroutine. The before-job subroutine can use the OPENSEQ, WRITESEQ and CLOSE commands to write one or more header record(s) to the file while truncating it. The job itself writes 0 or {n} data records and then the afte...
- Tue Aug 23, 2005 1:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Header Trailer record creation for empty source
- Replies: 6
- Views: 3487
Indeed Arnd's suggestion is the only sensible one, because only the job itself exists once. If you tried to create a header/trailer in a section leader or player process, you'd get one header per partition. However, you don't need OpenSeq and its companions. It may be enough to invoke an operating s...
- Tue Aug 23, 2005 1:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Tab delimited related
- Replies: 4
- Views: 1407
Can't readily be done in a parallel job if you want to use a Sequential File stage to read columns based on a schema; the record delimiter character and final delimiter character can not be substituted with job parameters in this stage. Looks like you're trying to rewrite a server job in the paralle...
- Tue Aug 23, 2005 12:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Prioritising DataStage Processes
- Replies: 8
- Views: 2847
Stop overloading the hardware! Are your developers still "testing" with 30 million row runs? What other strategies do you have available for reducing total demand for server resources, such as scheduling things at different times? Has anyone scrutinised your ETL jobs to check that they're not perfor...
- Tue Aug 23, 2005 12:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to read a file and rewrite it?
- Replies: 8
- Views: 2915
- Tue Aug 23, 2005 12:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Server
- Replies: 5
- Views: 1367
- Mon Aug 22, 2005 11:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 ODBC connectivity issue
- Replies: 1
- Views: 941
Welcome aboard! :D The bad news (for you) is that there is no error. "No match found" is the result of a query against the DB2 system tables; that you received that message indicates that connectivity is OK - otherwise a different error would have appeared. "No match found" means either that you hav...
- Mon Aug 22, 2005 11:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential File Reading Mainframe data
- Replies: 6
- Views: 1726
Do you have NLS enabled and, if so, what client character map are you using? It seems odd that "Hello" is being converted accurately but "!" is not. Are you sure it's really "!"? (Check with a hex editor both in the EBCDIC source and the ASCII target.) Could be a strange problem with the data browse...
- Mon Aug 22, 2005 11:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Untar Command Not Recognised By DataStage??
- Replies: 11
- Views: 5495
- Mon Aug 22, 2005 11:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: commit point when loading SQL sever DB using ODBC enterprise
- Replies: 3
- Views: 1058
- Mon Aug 22, 2005 6:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Executing jobs from command prompt
- Replies: 4
- Views: 1105
That chapter is repeated in the Parallel Job Developer's Guide which shows that the same command line interface is used for either kind of job. A job sequence is a special case of a server job, so these too can be managed through dsjob command. Interestingly, perhaps, dsjob began life as nothing mor...