Search found 53125 matches

by ray.wurlod
Wed Jul 06, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecTCL
Replies: 12
Views: 4266

ExecTCL is a before/after subroutine. As such it has no syntax per se. You load it up in the properties of any job or active stage, and place the command to be executed in the Input Value field. If the command succeeds, the job keeps going. If the command fails, the job stops. Source code for ExecTC...
by ray.wurlod
Wed Jul 06, 2005 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading sequential file
Replies: 8
Views: 3024

If that's the intended purpose then don't convert to Char(10). Instead convert to some delimiter character that does not appear in your data, for example "|" (as suggested) or "~" or "\".
by ray.wurlod
Wed Jul 06, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Informix Configuration for DS 7.1
Replies: 5
Views: 2422

DataStage is simply another client application as far as Informix is concerned. Therefore, it requires exactly the same configuration as any other client. In particular the relevant environment variables (including PATH, LD_LIBRARY_PATH as well as the Informix ones) must be set. For DataStage on UNI...
by ray.wurlod
Wed Jul 06, 2005 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetJobInfo codes description
Replies: 4
Views: 1047

Strange. I searched for "status" and found lots of posts. Searching for "job status" was tighter, but still found quite a few posts.
by ray.wurlod
Wed Jul 06, 2005 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to assess a DataStage Job
Replies: 5
Views: 2994

You would also need some measure of clarity (lack of obfuscation). For example, does the job have "hidden" ingredients, such as before/after subroutines, about which the future maintainers are not warned with, say, annotations on the design canvas? Containers can add to or detract from clarity; so q...
by ray.wurlod
Wed Jul 06, 2005 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the limit of the hash file?
Replies: 6
Views: 1412

If you don't know, you're using 32-bit hashed files.

You would have had to create 64-bit hashed files explicitly to have them, or have the configuration parameter 64BIT_FILES set (not recommended).
by ray.wurlod
Wed Jul 06, 2005 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum jobs per project
Replies: 7
Views: 1718

Depending on the O/S you may hit a limit where the number of directories in a directory is reached. On Solaris this seems to be 32767. Remember that each dynamic hashed file is a directory and that each job typically requires four new hashed files, and that suggest a limit of about 8000 jobs on that...
by ray.wurlod
Wed Jul 06, 2005 1:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling statistic
Replies: 2
Views: 692

Doesn't Search work in your browser? :?

Check in on-line help for functions with names like DSGet... which interrogate the system for information.

Check out Kim's and Chuck's web sites for tools that already exist - why reinvent the wheel?
by ray.wurlod
Wed Jul 06, 2005 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: run job once otherwise exit
Replies: 2
Views: 720

Your job that does it can emplace a flag, for example a record in a hashed file (SDKSequences would do). This record has a constant for its key, and the date as its non-key field. Look this up and proceed only if it's date is earlier than today's date.
by ray.wurlod
Wed Jul 06, 2005 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecTCL
Replies: 12
Views: 4266

Not only that, but DataStage still supports (and uses, internally, mainly 'coz Glenn Herbert lervs 'em) PROCs. These are derivative from the "Pick O/S". 0001: PQ 0002: IF %2 = "DICT" GOSUB 888 0003: IF %2 # "DICT" GOSUB 999 0004: C - Read first item 0005: F-READ 1 %%20 0006: MV &...
by ray.wurlod
Wed Jul 06, 2005 1:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot login DataStage and run scheduled jobs
Replies: 10
Views: 3553

There is one RL lock on a non-existent record called project.&!DSADMIN!& for each connected client session. There is also one RU lock on that client's record in DS_LICENSE for each connected client. Please confirm that you have indeed released MAXRLOCK (use the smat -t command). Can you also...
by ray.wurlod
Wed Jul 06, 2005 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "TAB" Delimitter
Replies: 2
Views: 782

Click on the Help button on the Format tab. It will also show you how to do it using the hexadecimal representation.
by ray.wurlod
Wed Jul 06, 2005 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: promote subrecord
Replies: 9
Views: 2910

So you have no 01 level item at all?
by ray.wurlod
Wed Jul 06, 2005 1:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: update insert problem
Replies: 3
Views: 2347

However, it's grumbling about the UPDATE statement. Wrong number of parameters suggests that, while you have two columns in your WHERE clause, there are more than two - or only one - identified as Key in your metadata (the columns grid). Or, perhaps, that either START_DT or arr_id_acct are not colum...
by ray.wurlod
Tue Jul 05, 2005 9:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading sequential file
Replies: 8
Views: 3024

No. "0A" will not be interpreted as a hex number; each @AM will be converted to "0" (the first character of the second argument. What you need is Convert(@AM,Char(10),Ans) or, if svLF is a stage variable initialized to Char(10) Convert(@AM,svLF,Ans) which means you only evalu...