Search found 15603 matches
- Thu Nov 10, 2005 9:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TimeStamp
- Replies: 11
- Views: 2444
- Thu Nov 10, 2005 8:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: impect of Buffer size and Timeout on a job
- Replies: 9
- Views: 2710
OK, but where are you specifying your buffer size and timeout in these two stages (which I think you can't)? Are you referring to the buffer size and timeout values as part of the job attributes? Do you have IPC stages? Just a bit more information from your side and you might get an answer you can u...
- Thu Nov 10, 2005 8:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TimeStamp
- Replies: 11
- Views: 2444
And what have you tested, gshivnani? I trust you didn't post first before trying to localize the problem. I just wrote a short job, column generator creating a varchar(32) string with the constant value "2005-10-01" and a transform stage using the StringToTimestamp conversion and it worked. As I ind...
- Thu Nov 10, 2005 8:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Maximum Length of datatype LongVarChar
- Replies: 3
- Views: 2266
- Thu Nov 10, 2005 8:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: impect of Buffer size and Timeout on a job
- Replies: 9
- Views: 2710
- Thu Nov 10, 2005 8:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TimeStamp
- Replies: 11
- Views: 2444
If JoinCombine_Master_Ref.TrailerTimeStamp is a string datatype with the YYYY-MM-DD format, then I recommend using the simpler
Code: Select all
StringToTimestamp(JoinCombine_Master_Ref.TrailerTimeStamp:" 00:00:00","%yyyy-%mm-%dd %hh:%nn:%ss")- Thu Nov 10, 2005 8:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TimeStamp
- Replies: 11
- Views: 2444
- Thu Nov 10, 2005 8:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Import project multi instance
- Replies: 5
- Views: 1319
- Thu Nov 10, 2005 5:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Maximum Length of datatype LongVarChar
- Replies: 3
- Views: 2266
To DataStage server jobs, all variable type are the same (it's a very egalitarian system) and the maxium length is pretty much limited to the available virtual memory of the process running the job. The limitations on datatypes come when you are writing to a specific system and stage. So whatever th...
- Thu Nov 10, 2005 5:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: substract hour timestamp
- Replies: 2
- Views: 783
Are you wanting to get the sysdate from the database or from datastage? Subtracting 23:00 hours from the current date and time and returning the result in the form ofYYYY-MM-DD HH:MM:SS can be achieved as follows: Routine MimiDateSubtract EQUATE TwentyThreeHours TO 23*60*60 ;** number of seconds Dat...
- Thu Nov 10, 2005 4:22 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: julian date to yyyymmdd conversion in PX jobs
- Replies: 10
- Views: 7995
- Thu Nov 10, 2005 3:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage upgrade 5.2 to 7.5 - Please help me
- Replies: 5
- Views: 1396
- Thu Nov 10, 2005 3:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: julian date to yyyymmdd conversion in PX jobs
- Replies: 10
- Views: 7995
Nosferatus, the good news is that you know what format you have; the bad news is that you don't have a true Julian date representation in the form of number-of-days-since-some-starting-point. You can correctly read this by using the format string "%yyyy%ddd" once you convert the year portion to 2nnn...
- Thu Nov 10, 2005 3:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Migrating a 7.1 project from one win server to another?
- Replies: 4
- Views: 939
When you create a project a number of actions are done, but the most important one from your point of approach is that the DataStage schema is created and the appropriate master pointers point to the directory where the project resides. I think it might work if you were to just copy the project dire...
- Thu Nov 10, 2005 2:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Migrating a 7.1 project from one win server to another?
- Replies: 4
- Views: 939
I tend to disagree with Vincent on hashed files; good and fast DS ETL implementations make use of hashed files for such purposes as changed data detection and efficient lookups; reloading them daily from a database system just to not have any any permanent data stored in hashed files defeats their p...