Search found 42189 matches

by chulett
Thu Jan 14, 2010 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a guidance
Replies: 5
Views: 1471

That would be part of the 'fine' part.
by chulett
Thu Jan 14, 2010 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBOBJECTS
Replies: 3
Views: 1942

It's not published but you can do a LIST.DICT on it to see the metadata.
by chulett
Thu Jan 14, 2010 9:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage on Windows 2003 and VM
Replies: 10
Views: 7798

No worries about your English, you wouldn't even want to hear my Italian. :wink:

I'm not certain but I think it is now. I'm pretty sure that the last couple of 8.1 installs I was involved with briefly were actually on VMWare. Hopefully, someone knows for certain.
by chulett
Thu Jan 14, 2010 8:33 am
Forum: General
Topic: Job Scheduling is not functioning.
Replies: 25
Views: 53107

Do you get any indication in the log that the job even tried to start? Or does it look like absolutely nothing happens when the time comes? For the latter, talk to an SysAdmin. Former, support.
by chulett
Thu Jan 14, 2010 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Short Input record
Replies: 9
Views: 10773

Your schema file doesn't match the input file. Specifically, there's more columns in the schema than in the file or you may have a delimiter issue.
by chulett
Thu Jan 14, 2010 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Some error while saving a job.
Replies: 7
Views: 2605

I know that's an issue for AIX, are there other UNIX flavors with the same limitation?
by chulett
Thu Jan 14, 2010 6:35 am
Forum: General
Topic: Error Calling stored procedure
Replies: 8
Views: 4470

chulett wrote:I'd take this to your official support provider and see what they think is going on.
by chulett
Thu Jan 14, 2010 6:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a guidance
Replies: 5
Views: 1471

It would work just fine.
by chulett
Thu Jan 14, 2010 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read sequential file with ^M in record
Replies: 7
Views: 5435

Just want to make sure you're aware why that worked. It's because what you actually have there is a CR/LF pair. You see the CR in the data and the record break from the LF terminator. It's the LF that the option allowed you to ignore.
by chulett
Thu Jan 14, 2010 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a guidance
Replies: 5
Views: 1471

You know, the easiest way to answer your question is to just try it. It's not like anything bad would happen. :wink:
by chulett
Wed Jan 13, 2010 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute SQL Server Stored Procedure to Drop Index
Replies: 6
Views: 3113

That would be a documentation bug, it would seem. Basically, the 'open' command is processed when the stage is 'opened' before any rows are processed, while the 'close' command is executed after all rows have been processed and just before the stage itself is closed. Similar to the 'Before SQL' and ...
by chulett
Wed Jan 13, 2010 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where stack trace file stored in Datastage Server
Replies: 1
Views: 2083

I have no idea, but if your Support Team knows enough to ask for a 'stack trace file' they should also know enough to tell you where to find it and what it would be called, I would think.
by chulett
Wed Jan 13, 2010 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute SQL Server Stored Procedure to Drop Index
Replies: 6
Views: 3113

I would put both in the target stage, all though it may not ultimately matter, it just makes more sense for them to be in the stage working the same table.
by chulett
Wed Jan 13, 2010 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting DB2 environment variables
Replies: 16
Views: 4985

Are you actually trying to connect to DB2 on Z/OS? It doesn't sound like it from the kind of questions you are asking. :?
by chulett
Wed Jan 13, 2010 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Weekends between two dates
Replies: 7
Views: 2593

Calculate number of days between two dates? Yes. After eliminating weekends? No. Without a dimension to query, you need an iterative solution - start from the first date, add a day at a time until you hit the end date and skip any weekend days.