Search found 53125 matches
- Tue May 18, 2004 3:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: VSAM files be read using an ODBC
- Replies: 1
- Views: 839
Anything can be read using an ODBC driver if you have an ODBC driver capable of reading that something. If you're contemplating using the ODBC driver for text files shipped with DataStage, you will almost certainly find that it has no means for handling the structure that is found in all but the sim...
- Tue May 18, 2004 3:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Plug In for Oracle Financials
- Replies: 1
- Views: 565
- Mon May 17, 2004 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rejects - capturning DBMS.CODE=ORA-01401
- Replies: 6
- Views: 2737
- Mon May 17, 2004 4:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsjob command
- Replies: 0
- Views: 1141
- Mon May 17, 2004 4:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Correct location/syntax of DSGETLOGENTRY
- Replies: 1
- Views: 1052
This is not really the way you test for rejected rows, because there can be timing issues - updating the log file is buffered I/O, so the warning that you want to catch may not yet be in the log file. Earlier today I posted a technique for capturing database errors. Other reasons for rejection shoul...
- Mon May 17, 2004 4:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading a seq file and use the content into a SQL
- Replies: 4
- Views: 1092
Job parameters are set when the job starts and are not affected by the data passing through the job. If you want to constrain based on the value of a job parameter, then specify the parameter reference (the parameter name surrounded by "#" characters) in the WHERE clause. For example: UPDATE tablena...
- Mon May 17, 2004 4:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage BAsic.
- Replies: 2
- Views: 1079
- Mon May 17, 2004 4:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: PeopleSoft EPM sites using DataStage on this forum...
- Replies: 14
- Views: 5463
- Mon May 17, 2004 4:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: More detailed error messages?
- Replies: 1
- Views: 756
You can capture this information in the following manner. Create a job design that looks like this. out ODBC ----> Transformer -----> ODBC | | [Reject] | SeqFile The link called out tries to affect the target table. If this fails, the row is deemed not to have been processed on the link called out ,...
- Mon May 17, 2004 4:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help to document a project
- Replies: 7
- Views: 1906
I'd have to disagree that the Reporting Assistant "leaves a lot to be desired" but, to get the most benefit from it, you need to step outside the canned reports that come with it, and develop your own reports. This, in turn, pre-supposes some skill with generating queries and reports in Access, and ...
- Mon May 17, 2004 3:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DW Concepts and architecture
- Replies: 4
- Views: 1186
Good catch. The ITERATIONS methodology came on board when VMark and UniData merged to become Ardent; UniData had acquired it along with PWE. I understand that Bill Inmon had a hand in developing the ITERATIONS methodology. ITERATIONS is a project management plan for the entire DW project, not just t...
- Mon May 17, 2004 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: PeopleSoft EPM sites using DataStage on this forum...
- Replies: 14
- Views: 5463
The class was a customised one for Peoplesoft support staff. That's why I felt that the support story from Peoplesoft might be better for you in the future - at least they've made some effort to have their support staff learn the product. I had students from Singapore and Japan as well as from Austr...
- Mon May 17, 2004 3:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML vs. Flat Files
- Replies: 6
- Views: 4284
- Sun May 16, 2004 7:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML vs. Flat Files
- Replies: 6
- Views: 4284
DataStage version 7.x has XML reader and XML writer stage types. Consult on-line help or the relevant manual (these are in your DataStage client install folder, in the Docs sub-folder). The relevant manual in this case is XML PACK Designer Guide (XMLPACK_20_Designer.pdf). In response to your private...
- Sun May 16, 2004 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML vs. Flat Files
- Replies: 6
- Views: 4284
Flat file is fastest, if for no other reason than that it's easier to parse the data from it based on metadata definitions. You only need to process flat file metadata once (assuming the format/content doesn't change, which is not always the case!). With XML there's the overhead of processing the ta...