Search found 42189 matches
- 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
- 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
- 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
- Mon Aug 24, 2009 5:20 am
- Forum: General
- Topic: How to find more info about locking process
- Replies: 10
- Views: 3121
- Sun Aug 23, 2009 9:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DATE CONVERSION
- Replies: 1
- Views: 940
- 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
- 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...
- 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)- 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...
- 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
- 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
- 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
- Sat Aug 22, 2009 7:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem in job
- Replies: 1
- Views: 789
- 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 ...
- 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 ...