Search found 42189 matches

by chulett
Mon Sep 04, 2006 9:12 pm
Forum: Data Integration
Topic: Information on Demand 2006 conference sessions and speakers
Replies: 4
Views: 10093

Will you be putting in an appearance Vincent?
by chulett
Mon Sep 04, 2006 9:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDecimal - behavior with direct Arith ops
Replies: 3
Views: 2154

There is one in Server, wouldn't be surprised if the equivalent exists in PX.
by chulett
Mon Sep 04, 2006 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance statistics question
Replies: 5
Views: 1385

Less rows out = less rows per second for the same measurement of time.
by chulett
Mon Sep 04, 2006 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem using Sql Load with Oracle Enterprise stage
Replies: 4
Views: 1566

Re: Problem using Sql Load with Oracle Enterprise stage

Inquisitive wrote:ORA-00054: resource busy and acquire with NOWAIT specified

The table is in use and you need to figure out why. Could be as simple as you being parked in it in TOAD... not that I've ever done that before. :P
by chulett
Mon Sep 04, 2006 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Nested Condition Sequence Problem
Replies: 8
Views: 5335

Ah... I know what's going on. :D Those trigger expressions are one of the few places where a Job Parameter should not be wrapped in hash/pound signs. You can verify this by using the elipses (...) to build your expression rather than typing it in by hand. In DS BASIC, the '#' symbol is equivalent to...
by chulett
Mon Sep 04, 2006 11:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Nested Condition Sequence Problem
Replies: 8
Views: 5335

My final join Job also gives me an error on validation. You really should start a new topic for this as it's unrelated to your previous problem. It's been a number of years since I've bothered to Validate anything. An 'access violation' is usually a sign of a code problem - with the Vendor, not wit...
by chulett
Mon Sep 04, 2006 11:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Nested Condition Sequence Problem
Replies: 8
Views: 5335

0160 If (#Path#=D) Then GoSub L$V0S45$START "NE" unexpected, Was expecting: Array Name, Variable name, New variable name, ';', Statement label, "ABORT", "ABORTE"... Did you code a 'not equal' expression anywhere using 'NE'? If so, try using '<>' instead. You might also want to try putting quotes ar...
by chulett
Mon Sep 04, 2006 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Nested Condition Sequence Problem
Replies: 8
Views: 5335

Something, most likely one of your Job Activity stages, has that as a parameter's Value Expression. Or it is referenced in a custom trigger. And it implies there's no such stage name in the Sequence job as 'Routine_Activity_32'.

Can you check for that?
by chulett
Mon Sep 04, 2006 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: updating DS_ROUTINES custom routine to 'NRO'
Replies: 6
Views: 1958

Are you sure you exported it? :wink:

You need to explicity include 'read only' objects when doing so.
by chulett
Mon Sep 04, 2006 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem when Executing an script
Replies: 5
Views: 2291

Your scripts assume a cwd Actually, it doesn't. The first step is a 'cd' to a fully pathed directory. Not sure what else might be going on, but all that looked odd to me off the bat was the exit used when the third paramater is a '1'. It should say 'then exit 0' rather than 'then exit =0' as far as...
by chulett
Mon Sep 04, 2006 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing into a unix file from datastage
Replies: 11
Views: 9118

Re: writing to unix file from datastage

NeelimaTalasila wrote:according to my requirement we have to use only shell scripts and datastage without routines thats the problem thats why am searching for solution other than using routine

Ok... what happened to the 'without routines' requirement? :?
by chulett
Mon Sep 04, 2006 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for Oracle's instance information
Replies: 7
Views: 1962

Sure, they all use the $ORACLE_HOME specified in the dsenv file when they need to connect, but the Bulk Loader is a little different animal. It creates a 'control' file to set Schema and Table names post-connect which is probably your issue here. Check the '.ctl' file the stage generates and make su...
by chulett
Mon Sep 04, 2006 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove the delimiters
Replies: 5
Views: 1638

You might want to explain your question a little better, possilby even post an example. Which 'delimiters' are you asking about? :?
by chulett
Sun Sep 03, 2006 10:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: warning messages of integrity constraint
Replies: 1
Views: 792

Please help you what, exactly? What 'integrity constraint' has your job violated? Specific examples will go a long way towards getting specific help. Unique Key constraint? Typically, you need to check inserts versus updates to avoid this problem. However, on a initial load you need to figure out wh...
by chulett
Sun Sep 03, 2006 10:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sample UNIX script
Replies: 10
Views: 2824

Hmmm... Control-M is an Enterprise Scheduler. That means that (typically) you have one central place where all 'schedules' are kept and they can be processing commands on many different platforms and many different operating systems with many inter-dependancies, as long as there is a Control-M clien...