Search found 42189 matches
- Thu Jul 26, 2007 12:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DateTimestamp
- Replies: 20
- Views: 4770
I have the same formatted timestamp in my target database No, you don't. Whatever query tool you are using to view that data is showing it to you in that format - and that's got nothing to do with how it is stored. Or what's needed to load it. Someone more familiar with DB2 will need to let us know...
- Thu Jul 26, 2007 12:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Plug in issue
- Replies: 12
- Views: 2352
- Thu Jul 26, 2007 12:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DateTimestamp
- Replies: 20
- Views: 4770
And therein lies the fundamental problem with how you approached this. You specified your 'required format' in your first post and so that's what people helped you build. The fact that it doesn't work is a whole 'nuther kettle of fish. From what little I know about DB2, it seems to want date /time i...
- Thu Jul 26, 2007 11:52 am
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: DS Admin's please help me
- Replies: 8
- Views: 4749
- Thu Jul 26, 2007 9:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Db2 Commit
- Replies: 3
- Views: 1154
- Thu Jul 26, 2007 9:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Teradata syntax
- Replies: 5
- Views: 1884
- Thu Jul 26, 2007 9:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job in Running State
- Replies: 19
- Views: 5972
Then you need to ascertain what changed yesterday. If not the job iteself, then what in the job's environment? Obviously, something did - the hard part can be figuring out what. Another thing could be the data. Is there anything 'unusual' (whatever that means) about that day's data? Especially looki...
- Thu Jul 26, 2007 7:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job in Running State
- Replies: 19
- Views: 5972
- Thu Jul 26, 2007 7:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Connect to multiple db2 databases
- Replies: 3
- Views: 1592
- Thu Jul 26, 2007 7:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: cancelling out from "Find /view data"
- Replies: 3
- Views: 1202
- Thu Jul 26, 2007 7:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiplying Decimal fields
- Replies: 7
- Views: 2012
Since you've lost the '16th digit' from the computation, I'm assuming you are a victim of the EXACT_NUMERIC setting in the uvconfig file - which defaults to 15. Search the forums for a number of discussions on that setting. You may end up needing to bump it or switch to 'string math', which the post...
- Thu Jul 26, 2007 7:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling multiple commands inside FilterCommand in Seq File?
- Replies: 15
- Views: 5653
- Thu Jul 26, 2007 7:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job in Running State
- Replies: 19
- Views: 5972
Is the job actually running when you check from the O/S?
Does that show any processes that you recognize as coming from your job in question?
Code: Select all
ps -ef |grep phantom |grep -v grepDoes that show any processes that you recognize as coming from your job in question?
- Thu Jul 26, 2007 7:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 to SQLServer ETL runs slow..using wrong logical
- Replies: 5
- Views: 2253
So, you just have a SQL tuning problem? This has nothing to do with DataStage, obviously. Sounds like there's no index on the GLDate field so it's use basically forces a full scan of the table. You would need to verify. Forget about DataStage for the moment and take that query into your favorite SQL...
- Thu Jul 26, 2007 6:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Connect to multiple db2 databases
- Replies: 3
- Views: 1592
Sorry, don't know DB2 but if 'database' in this context is anything like an Oracle 'schema' then you just preface the table name with the database name. So, perhaps something like?

Code: Select all
SELECT STAGEPARAM FROM DSTAGE.DBMAIN.PARAM WHERE....