Search found 2886 matches
- Tue Apr 10, 2012 11:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal Error: Not bounded length
- Replies: 10
- Views: 7621
I had to load a SQL Server datetime field once and found that setting the target column's data type as Timestamp(23,3) worked. So it will expect the data to be in a format like YYYY-MM-DD HH:NN:SS.SSS. In a Transformer stage derivation you can right click and choose from the various built-in date/ti...
- Tue Apr 10, 2012 11:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue with IsValid function with integer(int32) and decimal
- Replies: 10
- Views: 15308
- Tue Apr 10, 2012 10:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal Error: Not bounded length
- Replies: 10
- Views: 7621
- Tue Apr 10, 2012 4:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Stage Variable NOT Stored Correctly
- Replies: 10
- Views: 5759
Welcome to DataStage! Parallel jobs have a lot of date and time functions built in. They are documented in the appendix of the Parallel Job Developer's Guide. You should have it on your client as a PDF under the Start menu... documentation icon. Check out this one for comparing two timestamps: Secon...
- Tue Apr 10, 2012 4:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to execute Before SQL statement
- Replies: 12
- Views: 4843
- Tue Apr 10, 2012 4:42 am
- Forum: General
- Topic: need unix script
- Replies: 20
- Views: 5568
- Mon Apr 09, 2012 9:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fatal Error: Not bounded length
- Replies: 10
- Views: 7621
- Mon Apr 09, 2012 9:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: tsort and psort
- Replies: 15
- Views: 7909
- Mon Apr 09, 2012 9:35 pm
- Forum: General
- Topic: change ownership uid=0 to some other value other than 0
- Replies: 4
- Views: 1150
I agree--don't change the uid=0 value to some other value. I think it could mess up your whole server. If you screw up as the root user, someone will take root user access away from you, most likely for good. Are you really just wanting to change ownership of some files from the root user to some ot...
- Mon Apr 09, 2012 9:27 pm
- Forum: General
- Topic: need unix script
- Replies: 20
- Views: 5568
- Mon Apr 09, 2012 9:23 pm
- Forum: General
- Topic: ETL/DataStage Processes ..Health care Industry ???
- Replies: 15
- Views: 6917
- Mon Apr 09, 2012 9:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: size of time datatype
- Replies: 11
- Views: 2934
Close... in Server jobs the zero date is December 31, 1967.priyadarshikunal wrote:I think it is 01-01-1970.
viewtopic.php?t=143412
- Mon Apr 09, 2012 8:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to execute Before SQL statement
- Replies: 12
- Views: 4843
- Mon Apr 09, 2012 8:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: C++ complier ,linker setting
- Replies: 6
- Views: 3116
This won't be apples to apples, but here is what I have on AIX 6.1 with v8.7, lslpp -l command output for xlC compiler (stick with that; not g++): xlC.adt.include 11.1.0.0 COMMITTED C Set ++ Application Development Toolkit xlC.aix61.rte 11.1.0.0 COMMITTED XL C/C++ Runtime for AIX 6.1 xlC.cpp 9.0.0.0...
- Sun Apr 08, 2012 6:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: size of time datatype
- Replies: 11
- Views: 2934
The manual does say 5 bytes for Time by itself and also says 5 bytes for Time with Microseconds. There are only 86400 (60 * 60 * 24) seconds in a day, which in binary, only requires 17 bits to store, which rounds up to 3 bytes. My guess is that the manual must be wrong for Time by itself. It seems t...