Search found 53125 matches
- Sat Jul 23, 2005 5:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date to Julian
- Replies: 14
- Views: 2612
I disagree. There is no mention of given year in the requirement. Just the fact that there's a date. The requirement for a two digit year is in the output. My point was that one digit for the "century" may not be enough, or that the restriction on dates properly handled needs to be documented among ...
- Sat Jul 23, 2005 5:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: STAGESTARTTIMESTAMP , STAGEENDTIMESTAMP
- Replies: 9
- Views: 1682
- Sat Jul 23, 2005 5:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: date conversion
- Replies: 27
- Views: 8143
- Sat Jul 23, 2005 5:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Adding businessdays to timestamp
- Replies: 9
- Views: 1985
- Sat Jul 23, 2005 5:11 pm
- Forum: IBM QualityStage
- Topic: Urgent : File CodePage for German Characters
- Replies: 15
- Views: 8977
- Fri Jul 22, 2005 5:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Plug ins
- Replies: 4
- Views: 1176
Code: Select all
Start > Programs > Ascential DataStage > DataStage Package InstallerYou find the packages on the DataStage CD in a folder called Packages. Select the I386 subfolder of any particular package to install on Windows.
On UNIX, the command is dspackinst
- Fri Jul 22, 2005 5:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Renaming a Project
- Replies: 25
- Views: 6869
- Fri Jul 22, 2005 5:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Projects ???
- Replies: 9
- Views: 1988
How does complexity of business relate to projects? One example is where there is sensitive information (privacy, confidentiality or sensitivity concerns) where you don't want too many developers to have access to the data. So you might have a separate project (set of projects - dev, test, QA, prod...
- Fri Jul 22, 2005 5:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Projects ???
- Replies: 9
- Views: 1988
- Fri Jul 22, 2005 5:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Querying hash file ???
- Replies: 9
- Views: 2571
A hashed file is just a mechanism for implementing a database table in which the location of a record is determined by applying a function to its key value. No index, no scan. Very quick to do key-based access. To get to TCL (terminal control language) establish a telnet session to your UNIX server ...
- Fri Jul 22, 2005 5:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Scheduling jobs with CNTRL-M
- Replies: 2
- Views: 1031
- Fri Jul 22, 2005 5:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: STAGESTARTTIMESTAMP , STAGEENDTIMESTAMP
- Replies: 9
- Views: 1682
- Fri Jul 22, 2005 5:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date to Julian
- Replies: 14
- Views: 2612
Your requirement will cause problems if you have dates ten years apart crossing a millenium boundary (for example 1005-07-29 and 2005-07-29). The "century" will be 1 in each case (11th and 21st). Your result will be identical in each case. Sit a man by a fire and he's warm just for a while. Set him ...
- Fri Jul 22, 2005 4:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Duplicates in Hash File
- Replies: 6
- Views: 1543
You have missed the vital point. There is NO index on the key. That's where the speed comes from; the key value is processed by a function (the "hashing algorithm") that returns the exact address of the page on which the record resides. Exactly one logical I/O is required to retrieve the record (unl...
- Fri Jul 22, 2005 4:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OS390 to Parallel Extender
- Replies: 5
- Views: 1143
In terms of the ETL logic, no. Unless you need to implement different rules in the new system. Physical architecture obviously. PX can run on one or more UNIX (or Windows) machines, or on USS (UNIX support services) on a mainframe (I think that options costs more). The UNIX architecture needs to hav...