Search found 42189 matches

by chulett
Thu Sep 04, 2008 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performace while loading into a Flatfile
Replies: 8
Views: 1830

That's because the flat file isn't your problem. It's either network congestion or your source query needs to be tuned more better. Or both.
by chulett
Thu Sep 04, 2008 3:09 pm
Forum: General
Topic: Password info encrypted/clear from Log
Replies: 23
Views: 9866

Sorry, I meant the source code for the ExecDOS routine, not your wrapper code. Odd that it has a DSU prefix, that means it is a User written routine so someone told it to log the command line. You could also switch to using DSExecute() directly, that doesn't log anything like the ExecXX wrapper does...
by chulett
Thu Sep 04, 2008 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Max length for stage variables
Replies: 2
Views: 1382

Gives up?
by chulett
Thu Sep 04, 2008 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract same structure of flat files using Seq file stage
Replies: 1
Views: 1267

You can't use wildcards there. You either need to cat all the files together pre-job or investigate the use of the Filter option in the Sequential File stage. You can use it to cat all of the files to standard out and then the stage reads that as its input stream as if they were all one large file.
by chulett
Thu Sep 04, 2008 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage concept
Replies: 7
Views: 1430

Add a parameterized constraint to skip the first X records where this time X = 100. And please don't post in all bold, it makes the baby jesus cry.
by chulett
Thu Sep 04, 2008 1:40 pm
Forum: General
Topic: Password info encrypted/clear from Log
Replies: 23
Views: 9866

I don't have a Windows server so don't have ExecDOS. Post the routine code, wrapped in [code] tags and we'll see what we can do.
by chulett
Thu Sep 04, 2008 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: An update job is not able to update the table
Replies: 8
Views: 3274

No kidding. What happens if you do not delete the indexes? How many deletes are we talking about here?
by chulett
Thu Sep 04, 2008 12:20 pm
Forum: General
Topic: Oracle Sequence
Replies: 13
Views: 4500

Which doesn't help all that much as you really want to select the NEXTVAL so it gets incremented properly.
by chulett
Thu Sep 04, 2008 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Leading Sign and Zero Filled Decimal Amount Fields
Replies: 5
Views: 2517

Great! Please mark the thread as Resolved using the big button at the top of the screen.
by chulett
Thu Sep 04, 2008 12:06 pm
Forum: General
Topic: Password info encrypted/clear from Log
Replies: 23
Views: 9866

Then create one. Copy the existing routine and change it so it doesn't log the information you don't want to see in the log.
by chulett
Thu Sep 04, 2008 11:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Leading Sign and Zero Filled Decimal Amount Fields
Replies: 5
Views: 2517

np. If you have any more questions on this topic, be sure to come back and ask.
by chulett
Thu Sep 04, 2008 11:49 am
Forum: General
Topic: Password info encrypted/clear from Log
Replies: 23
Views: 9866

Mind posting that code? Did you look to see if there is an ExecDOSSilent available? For UNIX there is an ExecSHSilent, hence the question.
by chulett
Thu Sep 04, 2008 11:30 am
Forum: General
Topic: Password info encrypted/clear from Log
Replies: 23
Views: 9866

Sorry, typo. ExecDOS which does exist, btw. How are you executing this now - Sequence job? Custom code before/after job?
by chulett
Thu Sep 04, 2008 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Leading Sign and Zero Filled Decimal Amount Fields
Replies: 5
Views: 2517

FMT should work fine for your zero fill needs, it's just that you'll need to 'manually' prefix the sign on the amount. Creating a separate field for the sign is one simple way to accomplish this.