Search found 42189 matches

by chulett
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...
by chulett
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

As noted, your DBA.
by chulett
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...
by chulett
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

Your official support provider would be one. Probably the best at the moment, due to the limited adoption of the 8.x version across this community.
by chulett
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

somu_june wrote:So from your post Datastage will automatically commit once first job is completed.

Yes, of course. Assuming it completed successfully, that is - i.e. it did not abort.
by chulett
Thu Jul 26, 2007 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Teradata syntax
Replies: 5
Views: 1884

Don't you have a Teradata DBA or support person of some kind there you can ask? It would certainly be... quicker.
by chulett
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...
by chulett
Thu Jul 26, 2007 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job in Running State
Replies: 19
Views: 5972

Does the job respond to a 'Stop' request? I'm not sure, off the top of my head, what would cause a job that allegedly only uses 'seq files and hash files' to hang like that. You might want to expand on what your exact job design is to see if there is any issue there...
by chulett
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

Ah... thanks for the explanation. If you've worked out the resolution, then please mark the post as Resolved. :D
by chulett
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

You either need to have a lot of patience and just wait it out or give it the old 'three finger salute' and kill the sucker. :wink:
by chulett
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...
by chulett
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

:? Doesn't really matter what the 'format' of the compressed file itself is. It is important, however, that you know the format of the uncompressed file.
by chulett
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?

Code: Select all

ps -ef |grep phantom |grep -v grep

Does that show any processes that you recognize as coming from your job in question?
by chulett
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...
by chulett
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.... 

:?