Search found 42189 matches

by chulett
Fri Apr 15, 2005 12:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Sequential file operations (BASIC)
Replies: 10
Views: 2347

Re: Help with Sequential file operations (BASIC)

yaminids wrote:I am calling the routine from the constraints section in the transformer.

This is something that can be done? Never occurred to me to even try something like that. :shock: From inside the Constraints section?
by chulett
Fri Apr 15, 2005 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe Job...
Replies: 7
Views: 2390

ray.wurlod wrote:Because COBOL compilers on UNIX are very rare beasts indeed!

COBOL compilers on Windows are even rarer. :lol:

Not really all that rare. Microfocus has been doing COBOL on tons of platforms for what... decades now?
by chulett
Fri Apr 15, 2005 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe Job...
Replies: 7
Views: 2390

What does that have to do with the question you asked? :wink:
by chulett
Thu Apr 14, 2005 8:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 5
Views: 1283

Still need help with this? Look at some of the Date routines supplied in the 'sdk' section - there is alot of code you can 'borrow' from there. You should be able to handle d/m/yyyy and dd/mm/yyyy with no problem with one conversion. You need to do something similar for the time portion as well... s...
by chulett
Thu Apr 14, 2005 7:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error
Replies: 1
Views: 815

With the number of posts made to this site over the years most questions have already been answered. Many times. Search is your friend! :wink:

For example - this thread.
by chulett
Thu Apr 14, 2005 1:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: number of records written to a link
Replies: 4
Views: 1463

Run your second link to an aggregator first and then to the update. Send a numeric field set to 1 for every row that goes down the first link or a 0 for any rows that don't... either that or have them use the same constraint. Then just do a 'sum' in the aggregator. If there are no constraints involv...
by chulett
Thu Apr 14, 2005 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shell script
Replies: 4
Views: 1569

Search for dsjob in this forum only and narrow your search by Author kcbland - that should help. Some. :wink:
by chulett
Thu Apr 14, 2005 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Easy access of Job Description
Replies: 22
Views: 3744

Yah, it's a big shiny lightbulb for all of us at some point. :wink: Possibly stating the obvious, but keep this in mind as you branch out and expand your Routine creation skills as there are other header files that come into play as you build more 'functional' things.
by chulett
Thu Apr 14, 2005 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating link metadata without losing derivations
Replies: 9
Views: 1657

Re: Updating link metadata without losing derivations

I have a Transformer that outputs about a dozen fields, but those fields are only a subset of the fields that I want to output. If I clear out the metadata from the sequential file at the end of the link, and load in the actual file definition, then all the derivations will disappear (the derivatio...
by chulett
Thu Apr 14, 2005 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS75 Upgrade - jobs running as dsadm
Replies: 5
Views: 1298

Hmmm... I've always done all of my installs and upgrades as root over the years and this is a new one on me. I guess something permissions-wise is the problem. What permissions are on $DSHOME? Any 'sticky-bits' or the (what is it called?) SUID set? And out of curiousity, what operating system? Check...
by chulett
Thu Apr 14, 2005 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Easy access of Job Description
Replies: 22
Views: 3744

You need to add the following code so that the header file with the definitions of those Job Control functions gets compiled in as well:

Code: Select all

$IFNDEF JOBCONTROL.H 
$INCLUDE DSINCLUDE JOBCONTROL.H
$ENDIF
by chulett
Wed Apr 13, 2005 12:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 5
Views: 1283

Your target stage in the job should be an OCI stage. Your target field should be declared as a type of Timestamp in the OCI stage. Then you need to use Iconv/Oconv to get it in the format that the stage is expecting: YYYY-MM-DD HH24:MI:SS People typically build routines to automate this so they can ...
by chulett
Wed Apr 13, 2005 12:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ILLEGAL SYMBOL 1; VALID SYMBOLS ARE <IDENTIFIER>
Replies: 1
Views: 2721

Strange. :? The parameter marker the ODBC stage uses in not numbered - Oracle, yes but not ODBC. It uses a simple question mark, so you would need to change all references to colon-anything to '?' - and then ensure they are listed in the same order as your columns are defined in the stage.
by chulett
Wed Apr 13, 2005 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Information about activities in DataStage
Replies: 10
Views: 2586

You can't move this thread - Ray has asked The Powers That Be to do that for us. For now, just take this conversation over to the proper forum if you have any other questions! :wink:
by chulett
Tue Apr 12, 2005 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting an InvocationID via the dsjob command
Replies: 2
Views: 1486

Just include it after a 'dot' at the end of the jobname. So you would run 'jobname.invocationid' from the command line.