Search found 42189 matches

by chulett
Mon Feb 08, 2010 3:53 pm
Forum: Site/Forum
Topic: Changed DSXchange Behaviour
Replies: 7
Views: 6441

I think that's for some other aspect of the site. This never prompts for nor mentions a password, just slams the door in my face with this message: Premium Members have full access to tips and tricks, white papers and on-demand videos. Sorry! Only Charter and Premium Members have access to the conte...
by chulett
Mon Feb 08, 2010 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Simple Job run forever
Replies: 4
Views: 1594

Probably the record but yes, sounds like some kind of a locking issue. Have your DBA check.
by chulett
Mon Feb 08, 2010 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML to Flatfile conversion..
Replies: 3
Views: 1535

Not aware of any video on the subject but one of the best documents for XML in DataStage is here. There's also good information on all things DataStage (including XML) in Ernie Ostic's blog.
by chulett
Mon Feb 08, 2010 2:46 pm
Forum: Site/Forum
Topic: Changed DSXchange Behaviour
Replies: 7
Views: 6441

Hopefully one of the 'account issues' that gets sorted out is the ability to get to the Learning Center as a Premium user. In spite of the fact that I am, it doesn't seem to think so and won't open the door. :(
by chulett
Mon Feb 08, 2010 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify stage warning
Replies: 2
Views: 1311

"Possible range limitation" simply means that your source data may not fit in the target field. Specifically in your case the double into the decimal. If you have no concerns that will ever been an issue, I could see someone demoting this to informational.
by chulett
Mon Feb 08, 2010 11:52 am
Forum: General
Topic: time conversion
Replies: 17
Views: 10756

Sreenivasulu wrote:What does %(aa,w) stand for ?
Check the post the advice came from.
by chulett
Mon Feb 08, 2010 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing data
Replies: 7
Views: 2318

Details, please.
by chulett
Mon Feb 08, 2010 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Job -- Unable to see the log
Replies: 18
Views: 5290

I've never seen a CLEAR.FILE hang. Have you tried exporting the job to a .dsx and then immediately importing it back? That will delete / recreate everything and assign it a new number.
by chulett
Mon Feb 08, 2010 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: I always get an error msg: ds_loadlibrary: error in dlopen
Replies: 15
Views: 6578

Is there anywhere that Ray has not spread the word? I think not. :wink:
by chulett
Mon Feb 08, 2010 11:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to zip files using datastage
Replies: 4
Views: 5433

You would have to have 'zip' installed on your DataStage server to do this, do you? Or compress or gzip as alternatives. As to the how, it's no different from doing it directly from the command line. If you are unsure of the syntax, try 'man xxxx' to get the man pages (if they are installed on your ...
by chulett
Mon Feb 08, 2010 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get Running jobs list
Replies: 12
Views: 4160

Different issue, and I would question the fact that the job truly 'finished' if there are still processes associated with it.
by chulett
Mon Feb 08, 2010 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Job -- Unable to see the log
Replies: 18
Views: 5290

Only if you want a corrupted job.
by chulett
Mon Feb 08, 2010 10:54 am
Forum: General
Topic: Run another job before finishing the AfterJobSubroutine proc
Replies: 9
Views: 2507

Only indirectly... perhaps by dropping a semaphore file as part of your 'after job' that the other job polls for to know it's ok to start.
by chulett
Mon Feb 08, 2010 8:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reference Hash file Rejects Capture
Replies: 4
Views: 1190

Hashed files don't reject records in the way that you mean, nor does a hashed reference lookup support such a concept. All you can do is check to see if the lookup succeeded or not, typically via the NOTFOUND link variable. If what you are after are the records in the hashed file that are not in you...
by chulett
Mon Feb 08, 2010 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Parameter value within job control/routine
Replies: 5
Views: 5065

Pass it as a parameter into the routine or do something similar to what was posted but attach to DSJ.ME and use DSGetParamInfo() instead. And always remember to detach from anything you attach to.