Search found 42189 matches

by chulett
Mon Aug 24, 2009 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with SQl server connection
Replies: 2
Views: 1568

Sounds like your target database, or the network connectivity to it, is down. In other words, not a DataStage problem.
by chulett
Mon Aug 24, 2009 5:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to read xml file in Datastage
Replies: 3
Views: 17650

Read it with the Folder stage.
by chulett
Mon Aug 24, 2009 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete a project in Datastage
Replies: 2
Views: 1104

So, your DataStage server is installed on Linux rather than Windows? That OS: prompt where you put 'Windows' as the answer is meant to be for your Server as we know all clients are Windows clients. In any case, there were ways to fix the "schema" issue you have now in the past with earlier...
by chulett
Mon Aug 24, 2009 5:20 am
Forum: General
Topic: How to find more info about locking process
Replies: 10
Views: 3121

I'm curious why you have code to do inserts into your target hashed file and am wondering if simply turning that into a job using a hashed file stage would solve your problem. Any reason this couldn't be a job? :?
by chulett
Sun Aug 23, 2009 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATE CONVERSION
Replies: 1
Views: 940

:!: Please don't post the same question multiple times. Answered here - more than once.
by chulett
Sun Aug 23, 2009 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to convert varchar to date
Replies: 3
Views: 1548

Again, there's no "coversion" needed here, just a substring to remove the time portion. :?

And you would use "D-YMD[4,2,2]" for "yyyy-mm-dd". Note the dash between the "D" and the "M" to match the delimiter needed/used.
by chulett
Sun Aug 23, 2009 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Upgrade from 7.5.1 to 7.5.3
Replies: 4
Views: 1860

Sure, you've made the process harder as there's lots of little fiddly bits to bring over but the backups don't really come into play as there isn't that remote danger of destruction of the 'old' server. That and you'll need to install the Multi-Client Manager and both clients in separate directories...
by chulett
Sun Aug 23, 2009 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to convert varchar to date
Replies: 3
Views: 1548

There's not a lot of true 'converting' in Server, it is very forgiving. Here, since your format is correct, you can either substring the date portion or use Field() to get it:

Code: Select all

YourField[1,10] -or- Field(YourField," ",1,1)
by chulett
Sun Aug 23, 2009 6:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job name from pid
Replies: 3
Views: 1343

If 'DSnum' is the internal job number used in all on the control structures names (like the 'nnn' in RT_LOGnnn) then you can query that from DS_JOBS: SELECT NAME, CATEGORY FROM DS_JOBS WHERE JOBNO = 'nnn'; Going back to it from the PID is another kettle of fish, not sure off the top of my head and n...
by chulett
Sat Aug 22, 2009 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Upgrade from 7.5.1 to 7.5.3
Replies: 4
Views: 1860

No issues that I recall seeing. There's no "special" precautions, just all of the usual ones, primary revolving around backups and making sure you have them. And make sure you upgrade all of the clients as well. Will this be an "upgrade in place" or will you be building a new ser...
by chulett
Sat Aug 22, 2009 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File Issue in Parellel Jobs
Replies: 22
Views: 13165

:!: Please start your own post and include your own relevant details.
by chulett
Sat Aug 22, 2009 1:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem when Kicking off multiple jobs
Replies: 4
Views: 1243

So the 'this' from IBM was to make sure you include the domain in the dsjob command line?
by chulett
Sat Aug 22, 2009 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem in job
Replies: 1
Views: 789

Involve your DBA, have them monitor the database process and ensure there's no locking problems either with your own job or with some other processing.
by chulett
Sat Aug 22, 2009 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: one record for each value which are seperated by delimitter
Replies: 8
Views: 3600

Toad <> DataStage. While a query is a query they execute in quite different environments between the two tools. Toad is all about returning you the first few rows while OE will need to process all. What you should be worried about is the explain plan which is not something anyone here can check for ...
by chulett
Fri Aug 21, 2009 3:15 pm
Forum: General
Topic: Use DRS stage to do bulk insert to MSSQL
Replies: 3
Views: 2863

No, just like it says it means you can only use that option from DataStage installed on a Windows server, not a UNIX one... it being a Microsoft product and all. :wink: Your only other option is to ftp the file to the database server and then remote execute a scripted bulk load on that server. From ...