Search found 42189 matches

by chulett
Mon Sep 14, 2009 5:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Integer conversion
Replies: 10
Views: 3785

I included them because the External Parameter Helper for that field in the StartLoop stage included them when I cobbled a snippet together to double-check the syntax. So I'm thin'n they really need to be there, Queeks Draw. :wink:
by chulett
Mon Sep 14, 2009 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Integer conversion
Replies: 10
Views: 3785

You shouldn't have to, have you tried it yet? If you've tried it and had a problem, what exact value was returned from the Execute Command stage and what problem did you have? You are using #Execute_Command_Stage.$CommandOutput<1># for the To: value in the StartLoop, yes? The stage adds field marks ...
by chulett
Mon Sep 14, 2009 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Integer conversion
Replies: 10
Views: 3785

You wouldn't typically need to do anything like that there as Server / Sequence jobs are not strongly typed like PX jobs. What exactly do you have going on that makes you think you need to do that?
by chulett
Mon Sep 14, 2009 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Integer conversion
Replies: 10
Views: 3785

Why specifically "using ICONV and OCONV"? Those are Server functions and would thus require a BASIC Transformer stage. :?
by chulett
Mon Sep 14, 2009 2:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reset job command
Replies: 3
Views: 1498

From the command line, meaning with dsjob, you need two steps: 1. Check the status of the last run using -jobinfo 2. If needed, reset the job using -run -mode RESET Then do your -run -mode NORMAL run. Now, I suppose one could just always reset regardless, but you need the first two steps for the &qu...
by chulett
Mon Sep 14, 2009 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dyamic SQL in ODBC stage help
Replies: 3
Views: 1421

It's not always presented as a discrete option. From the manuals: If the property value begins with FILE=, the remaining text is interpreted as a pathname, and the contents of the file supplies the property value. Meaning, there are stages where you can say 'User Defined' and then do as above to hav...
by chulett
Mon Sep 14, 2009 12:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: seqence warnings logs
Replies: 6
Views: 1557

So it seems like you have the 'Log warnings after activities that finish with status other than OK' enabled. That would tell the Sequence to log something in its own log when it sees a problem happen in another process it is running. Those jobs will still have the actual problem details in their own...
by chulett
Mon Sep 14, 2009 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: seqence warnings logs
Replies: 6
Views: 1557

Right, with a caveat. A Sequence job won't care about problems in the jobs it runs unless you tell it to and they will still be logged in the problematic job's log, not the Sequence job's log. So anything bad in the Sequence job's log is from the Sequence itself... which could, of course, be from a ...
by chulett
Mon Sep 14, 2009 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on surrogate key genarator stage
Replies: 15
Views: 5899

What did you want in the second run, something other than it continuing where it left off? :?
by chulett
Mon Sep 14, 2009 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot add additional connection string into Oracle Stage
Replies: 6
Views: 2397

No problem. If you still have questions about what you need to do, best to start a new post IMHO. And if you are curious what kind of things you could actually use that option for, a google for 'oracle connection string options' will turn that up. A need to leverage that should be pretty rare, if ev...
by chulett
Mon Sep 14, 2009 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete the duplicates from Database
Replies: 8
Views: 3190

True, constraints do make that a little... trickier. :wink:

And another reason I suggested SQL was the fact that this was a 'one time' thing.
by chulett
Mon Sep 14, 2009 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot add additional connection string into Oracle Stage
Replies: 6
Views: 2397

Hmmm... you can think of 'instance' to mean database (the part that goes after the @ in something like sqlplus) and 'the same server' can have multiple instances on it. Schemas in the same instance aren't an issue as long as you have the grants you need, so just fully qualify the tables and you'll b...
by chulett
Mon Sep 14, 2009 6:17 am
Forum: General
Topic: Update Error
Replies: 4
Views: 1382

I'd also be curious what exactly "Select * Update Statement" means. You don't "*" anything in DataStage so wondering if what you are selecting matches up well with your metadata. :?
by chulett
Mon Sep 14, 2009 6:14 am
Forum: General
Topic: Ftp from Unix to Desktop
Replies: 5
Views: 2428

I know this is a little old school, but you don't need anything special to do that - open a cmd/DOS window and use command line ftp. Sure, you may have to learn how to 'open' and 'get' or 'put' but it's always there... waiting for you. :wink:
by chulett
Mon Sep 14, 2009 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best PracticeInCreating Projects,scratch space & DataFol
Replies: 1
Views: 1411

Me, I'd be careful about persisting too much data directly in $DSHOME or even on the same partition as DataStage is installed. Since running out of space there is still a Very Bad Thing, I'd keep all that as separate as possible.