Search found 53125 matches

by ray.wurlod
Sun Oct 13, 2013 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to Generate below output using transformer stage.
Replies: 2
Views: 1200

Off you go then. You'll need some stage variables, sorted data partitioned on TRACKID, and possible use of looping within the Transformer stage (depending on how you plan to implement the 50 characters limit).
by ray.wurlod
Sun Oct 13, 2013 1:35 pm
Forum: General
Topic: Need to check if two files exist then only process?
Replies: 6
Views: 2542

Why not trade in your copy of DataStage for a UNIX shell script author?
by ray.wurlod
Sat Oct 12, 2013 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert datetime using iconv, oconv
Replies: 6
Views: 3206

The code is in my response earlier.
by ray.wurlod
Fri Oct 11, 2013 3:23 pm
Forum: General
Topic: DataStage install on Windows
Replies: 2
Views: 1041

There is no default password.
You may be able to use the AppServerAdmin.bat script to set a new administrator password. This script must be run as a local Administrator on the services tier.
by ray.wurlod
Fri Oct 11, 2013 3:18 pm
Forum: General
Topic: String To Number Problem
Replies: 2
Views: 1139

Try

Code: Select all

Not(Not(Field(GetXrefHistCnt.uvXREF_5PK_FND_CNT,',',1)))
by ray.wurlod
Fri Oct 11, 2013 3:15 pm
Forum: General
Topic: DataStage BASIC / job control code
Replies: 3
Views: 1770

I can't see anything in that code snippet that writes to the log.
However there are a line with GoSub and GoTo statements; one would need to investigate what happens there before a definitive answer could be given.
by ray.wurlod
Fri Oct 11, 2013 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert datetime using iconv, oconv
Replies: 6
Views: 3206

I think that the substringing approach suggested by Arnd is probably more efficient, but wonder how close the following construction would be.

Code: Select all

Fmt(Convert("_","",LastTS),"L####-##-## ##:##:##")
by ray.wurlod
Fri Oct 11, 2013 4:42 am
Forum: General
Topic: Scheduler failing to run job with SQL server as source
Replies: 7
Views: 2216

Also visit the Project Properties in DataStage Administrator. You may find (on the Schedule tab) that a different user has been set up to run scheduled jobs.
by ray.wurlod
Thu Oct 10, 2013 7:01 pm
Forum: General
Topic: Scheduler failing to run job with SQL server as source
Replies: 7
Views: 2216

Does the log show the credentials that were actually passed when connection was attempted?
by ray.wurlod
Thu Oct 10, 2013 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.UVOpen mkdbfile: error initializing file
Replies: 12
Views: 11820

That mkdbfile reports that it cannot create an object in the file system means that the credentialled user does not have permission to create that object. You need to determine who the credentialled user is (see Engine Credentials in web console for Information Server) and then verify the permission...
by ray.wurlod
Thu Oct 10, 2013 3:08 pm
Forum: General
Topic: Scheduler failing to run job with SQL server as source
Replies: 7
Views: 2216

How are you scheduling the job?
When it runs from the scheduler, check the job log to verify that the credentials have been passed correctly (I am assuming that they are job parameters).
by ray.wurlod
Thu Oct 10, 2013 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: stored procedure stage showing error
Replies: 7
Views: 3774

What's different between the two environments? Hint: "nothing" is clearly not the correct answer. We don't do asap. DSXchange is an all-volunteer site whose members post when and if they can, and are under no compulsion so to do. If you need urgent assistance, sign up for premium service w...
by ray.wurlod
Wed Oct 09, 2013 11:25 pm
Forum: General
Topic: Database connector stages not appearing correctly
Replies: 4
Views: 1158

This can also be a symptom of running out of memory on the client machine. Do you have a zillion other applications open? Or an animated screen saver? Are you perhaps viewing streamed video? All these demand memory and CPU resources.
by ray.wurlod
Wed Oct 09, 2013 11:23 pm
Forum: General
Topic: IIS 8.7 fixpack2
Replies: 7
Views: 1572

Any 8.7 client should be able to connect to 8.7FP2 services/engine. Beyond that, who knows?
by ray.wurlod
Wed Oct 09, 2013 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Schema Files with decimals for Sequential Files
Replies: 2
Views: 1881

Try width = 40. That is, 38 + sign + decimal placeholder.

The 9 decimal digits are included in the total of 38 significant digits.