Search found 42189 matches

by chulett
Fri Dec 29, 2006 9:30 am
Forum: General
Topic: Exporting as XML
Replies: 6
Views: 3394

The 'huge waste of time' comment was strictly for exporting as XML and then re-importing, as the first thing it needs to do is convert the XML back to DSX format before it can do the actual import. Hence the comment. Yes, I've used XMLSpy. There was no assumption of an issue there, but more of a sp...
by chulett
Fri Dec 29, 2006 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning Job Parameters in a UNIX script
Replies: 29
Views: 8555

No worries... I've got nowhere to go as we're basically snowed in again. Keep in mind the fact that you'd only need to pass any values that you need to override, that is ones that you can't use the default value for. I've found that generally means that most of them can be 'ignored' at the command l...
by chulett
Fri Dec 29, 2006 9:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning Job Parameters in a UNIX script
Replies: 29
Views: 8555

No. The only parameters you can pass in are for the job you are attempting to run. So all parameters must be defined in the Sequence job and the Sequence job is responsible for passing whatever parameters of those are appropriate to each individual job it runs.
by chulett
Fri Dec 29, 2006 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IP change
Replies: 6
Views: 3112

by chulett
Fri Dec 29, 2006 8:59 am
Forum: General
Topic: Exporting as XML
Replies: 6
Views: 3394

Ok, my mistake... I generally don't bother with exporting anything as XML as it's typically a huge waste of time on the import side. Curious why you would be doing this but that's probably a question for another day. A couple of other points on my ranked as 'oh so unhelpful' post. First off, why bot...
by chulett
Fri Dec 29, 2006 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting better upsert performance
Replies: 4
Views: 1888

Re: Getting better upsert performance

I use write medhod UPSERT with upsert mode Update and Insert,but performance is very bad.When i use Insert and Update mode,performance is very very good but data is doubled if the data is already loaded before. You need unique indexes of some sort, PK or otherwise, to make anything like this work. ...
by chulett
Thu Dec 28, 2006 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parellellism in Sequence
Replies: 8
Views: 3557

Re: Parellellism in Sequence

velagapudi_k wrote:The problem with this is If one job fails and the other 3 are running fine,the 3 jobs will be forced to abort by TERMINATOR.

:? So either don't use a Terminator stage (did something make you think you 'needed' it?) or enable the option in it to 'Abort without sending STOP requests'.
by chulett
Thu Dec 28, 2006 6:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Stored Procedure as an Input.
Replies: 4
Views: 1934

That support requires the use of the STP or Stored Procedure stage. I'd suggest you use that rather than ODBC if you are on a 7.5.x version of DataStage.
by chulett
Thu Dec 28, 2006 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simulating restartability
Replies: 13
Views: 3167

Oy... and never you mind about my petard, you shiftless wombat. :wink:
by chulett
Thu Dec 28, 2006 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning Job Parameters in a UNIX script
Replies: 29
Views: 8555

Curious if you know that syntax works for multiple parameter value pairs? I've always done it this way in my scriptage which I know works:

Code: Select all

dsjob -run -param username=abc -param password=xyz project_name job_name

AFAIK, each pair must be proceeded with -param for it to be recognized properly. :?
by chulett
Thu Dec 28, 2006 2:46 pm
Forum: General
Topic: Exporting as XML
Replies: 6
Views: 3394

Not sure what you mean by generating DTD information 'at the same time'. There's no export option for that. Are you using XML Spy to generate the DTD? Can't say that I've ever actually tried that. You do know there is a DSExportSchema.xsd file in the DataStage directory on your pc, yes? No DTD gener...
by chulett
Thu Dec 28, 2006 2:27 pm
Forum: General
Topic: Error importing a job in the project
Replies: 14
Views: 8012

I know that Conventional Wisdom says you'll be fine as long as no-one is connected to the specific project you need to reindex. However, I've typically found that it probably isn't going to work until you get everyone out. And even then you're best off bouncing the DataStage server first to clear up...
by chulett
Thu Dec 28, 2006 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look Up Without Keys
Replies: 12
Views: 6097

Ok, can't help you with the DB2 stage but perhaps someone else can. Keep in mind that if the 'minimum possible time' involves tweaking those 500 jobs then include that effort in your estimation of the 'minimum'. Sometimes you gotta do what you gotta do, even if it doesn't 'go well' with the team. As...
by chulett
Thu Dec 28, 2006 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading flat file problem
Replies: 17
Views: 4184

Repeating your problem without answering any of the questions posed so far gets us no closer to solving your problem. Have you looked at the file more closely? Via a hex editor perhaps? Are there 'blank' lines or other anomalies at the end after your last data record? I would certainly think so as ...