Search found 42189 matches

by chulett
Thu Nov 29, 2007 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looping a Job on Windows
Replies: 12
Views: 3390

From a co-worker? Anyone there you could tap for help? They wouldn't need to know anything about DataStage to be able to help convert a script to a batch file.
by chulett
Thu Nov 29, 2007 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to peorfrm insert and update using merge stage?
Replies: 2
Views: 851

Not a job for the Merge stage, all you need is 'normal' lookup logic to determine inserts versus updates.
by chulett
Thu Nov 29, 2007 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look-up based on 42 columns
Replies: 2
Views: 734

Re: Look-up based on 42 columns

42 Key columns? Yeesh.

baglasumit21 wrote:Will it be more efficient to use a join in the sourch query itself?

I would think so. Why not give it a try and let us know?
by chulett
Thu Nov 29, 2007 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: shared containers information
Replies: 1
Views: 680

Designer Guide pdf, chapter 5.
by chulett
Thu Nov 29, 2007 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Vs Parallel
Replies: 3
Views: 1104

Ugh. Sounds like either a job for Vincent's Blogs (since he's probably written something on the subject) or contact IBM. I'm sure their sales people would be more than happy to provide that kind of documentation, especially if the goal is to sell your company the Enterprise Edition. :wink:
by chulett
Thu Nov 29, 2007 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pin 1 not initialized
Replies: 5
Views: 4580

Help us help you. Is this your first time trying to access Oracle from a job? If not, is there anything different about this one from others that work?
by chulett
Thu Nov 29, 2007 7:34 am
Forum: General
Topic: Error while trying to retrieve text for error ORA-12154
Replies: 18
Views: 12009

Would need a wee bit more information to be able to help. First off, I don't see how changing your DataStage server's IP address would affect your ability to connect to Oracle instances on other servers. Those on the same server could be if your tnsname uses IP addresses. So... all jobs that access ...
by chulett
Thu Nov 29, 2007 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read Continous Records, No delimeter
Replies: 4
Views: 908

That doesn't make any sense. You can't have a fixed-width file with no record delimiters and then say some records vary in length. :?

Unless there is a leading field in each record denoting that particular record's length?
by chulett
Thu Nov 29, 2007 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling an Oracle Function
Replies: 4
Views: 1271

You select it as field in your source or lookup SQL. :?
by chulett
Thu Nov 29, 2007 12:30 am
Forum: General
Topic: Warning message
Replies: 1
Views: 777

Welcome! :D

If you search the forums for your error text - "Unable to allocate Type 30 descriptor, table is full" - you'll find this has been asked and answered quite a number of times. Short answer, one of your configuration parameters is too low.
by chulett
Thu Nov 29, 2007 12:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to convert the date format yyyy-mm-dd to dd-mm-yyyy
Replies: 4
Views: 1638

IConv to internal format, then OConv back, both with the proper mask:

Code: Select all

OConv(IConv(YourDate,"D-YMD[4,2,2]"),"D-DMY[2,2,4]")
by chulett
Wed Nov 28, 2007 11:39 pm
Forum: General
Topic: Comparing dates
Replies: 5
Views: 1303

Don't need to be converted at all, they will compare fine (dashes and all) as long as month and day are always two digits.
by chulett
Wed Nov 28, 2007 1:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to import a table definition from a sequential file
Replies: 6
Views: 1445

You really should be pointing to a instance of the table itself, not any exported DDL. Can you not create it somewhere you have access to, at least temporarily?
by chulett
Wed Nov 28, 2007 8:13 am
Forum: General
Topic: Restartability while running multiple Datastage jobs through
Replies: 7
Views: 4690

Agreed. It makes zero sense to try and recreate all that restart logic in a shell script when all you need to do is create a Sequence job that will handle all that automatically and then run the Sequence job via the script.
by chulett
Wed Nov 28, 2007 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IConv function behaving differently in DS 7.5.2 and 7.5
Replies: 18
Views: 4201

I posted how to disable it earlier in this thread.