Search found 53125 matches

by ray.wurlod
Thu May 17, 2007 4:18 pm
Forum: General
Topic: Moving from DS Server to EE
Replies: 4
Views: 1484

For only a few cents per day you can be a premium member.

Premium membership revenue is 100% devoted to bandwidth costs of DSXchange. By buying premium membership you are not only helping yourself, you are also helping DSXchange to stay operational.
by ray.wurlod
Thu May 17, 2007 1:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Permission denied
Replies: 8
Views: 4074

Check the permissions on every directory in the path

Something HAS changed. "Permission denied" does not magically appear out of thin air.
by ray.wurlod
Thu May 17, 2007 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in repalcing LookUp stage with Join Stage
Replies: 1
Views: 707

Better is entirely up to your judgement.

However, all inputs to the Join stage must specify the same join key(s), so your design would require four (cascaded?) Join stages.
by ray.wurlod
Thu May 17, 2007 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time format
Replies: 1
Views: 724

Try the DataStage BASIC manual. By default, System(12) returns the current system time in seconds (local time, in seconds since midnight, the internal format DataStage uses for times). If the TIME.MILLISECOND option is set (using $OPTIONS), System(12)returns the current system time in milliseconds.
by ray.wurlod
Thu May 17, 2007 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Permission denied
Replies: 8
Views: 4074

Check the permissions on every directory in the path of the file you are attempting to write. Also check the permission on the file itself. Find out when and by whom the change was wrought. Complain to them.
by ray.wurlod
Thu May 17, 2007 1:02 am
Forum: General
Topic: Contents of the core developer training program
Replies: 1
Views: 1086

Why? It's already posted on the IBM web site and in paper form from your local IBM Education Center. Try searching there for +DataStage +training core - you get 863 hits if you limit your search to the United States
by ray.wurlod
Wed May 16, 2007 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file variables
Replies: 1
Views: 785

The Field() function can do this.

Code: Select all

DatePart  <---  Field(InLink.TheDate, "_", 1, 1)
NextPart  <---  Field(InLink.TheDate, "_", 2, 1)
FinalPart  <---  Field(Field(InLink.TheDate, "_", 3, 1), ".", 1, 1)
by ray.wurlod
Wed May 16, 2007 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC driver error
Replies: 7
Views: 2099

Yes, as I said, the error is being generated by the driver. Contact the driver vendor (Data Direct) to find out what 7500 means.
by ray.wurlod
Wed May 16, 2007 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job Failure Code
Replies: 7
Views: 3004

What notBrian meant to say was that we want to know what stage types you have used in the job design and how they are connected together. That is, we want to know what your job design is. How your job is designed, might be another way to express that.
by ray.wurlod
Wed May 16, 2007 11:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validate the Date
Replies: 5
Views: 1247

Rather than

Code: Select all

Len(InputDate) = 8
I'd prefer

Code: Select all

InputDate Matches "8N"
by ray.wurlod
Wed May 16, 2007 11:29 pm
Forum: General
Topic: DSSendmail subroutine to send notifications
Replies: 11
Views: 6252

I think the problem is that no email is being sent. They can resolve the "always running" issue once they can receive email that the job is running. Take a look at the DSSendMailTester routine, and see how it's done there. Then try to emulate that. I don't think three arguments in the InputArg are e...
by ray.wurlod
Wed May 16, 2007 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Re-Start DSengine
Replies: 14
Views: 5321

Search the forum for the correct procedure for shutting down. You might also search for debugging the dsrpcd daemon.
by ray.wurlod
Wed May 16, 2007 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: push NULL values to NOT NULL fields
Replies: 2
Views: 1167

No.

NOT NULL means "this column does not accept nulls".

You can push them, but the database server (or ODBC driver) will reject them.
by ray.wurlod
Wed May 16, 2007 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating DBF and MDX files
Replies: 7
Views: 2980

If you can use a dBase IV stored procedure, you can use Stored Procedure stage to invoke it.
by ray.wurlod
Wed May 16, 2007 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase
Replies: 1
Views: 568

How are you proposing to connect? You may need Sybase OC (client) or you may be able to use the ODBC driver shipped with DataStage.