Search found 53125 matches

by ray.wurlod
Wed Sep 13, 2006 2:17 pm
Forum:
Topic: MetaStage Column Sources
Replies: 3
Views: 1493

That is a known gap in the functionality, which is why others have developed "tables used in this job" tools. Search the forum to find reference to these.
It can be thwarted by ill-disciplined metadata management and by parameterized table/file names.
by ray.wurlod
Wed Sep 13, 2006 5:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequence generator
Replies: 1
Views: 801

Welcome aboard. :D

This is most easily done using a sorted file and stage variables to detect changed values (and reset the sequence) or increment the sequence.

Search the forum for actual examples.
by ray.wurlod
Wed Sep 13, 2006 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequence + execute command activity + passing parameters
Replies: 8
Views: 3524

You may need to trim the command output of extraneous field marks and leading and trailing spaces.

Code: Select all

TrimF(TrimB(Trim(CommandActivity.$CommandOutput,@FM)))
by ray.wurlod
Wed Sep 13, 2006 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Warning message(Phantom Msg)
Replies: 2
Views: 934

Check out the mnemonics for error codes (DSJE...) in JOBCONTROL.H. Also in this file you will observe that the mnemonics for function arguments must be all upper case, so that DSJ.JobStatus is not a valid argument; you need DSJ.JOBSTATUS.
by ray.wurlod
Wed Sep 13, 2006 5:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Internal database used by DS Server
Replies: 2
Views: 983

It's called "DataStage Engine". It was derived from UniVerse which, in turn, emulated Prime INFORMATION. Both UniVerse and Prime INFORMATION are now owned by IBM.
by ray.wurlod
Wed Sep 13, 2006 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: diff b/w DSLinkrowcount & DSJ.LINKROWCOUNT
Replies: 4
Views: 2154

Names are case sensitive, so DSLinkrowcount does not exist and that is one big difference.

Otherwise the previous answer is good, but incomplete. DSJ.LINKROWCOUNT can be used as the fourth (InfoType) argument in the DSGetLinkInfo() function.
by ray.wurlod
Wed Sep 13, 2006 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass arguments to Unix script
Replies: 6
Views: 1959

Do you have a consistent naming convention that allows you to identify where the "input", "output" and "reject" links occur? If so, you can use the DSGetLinkInfo() function to retrieve the link row counts.
by ray.wurlod
Wed Sep 13, 2006 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Use datasets?
Replies: 7
Views: 2728

There is no "default path". You must use a Data Set stage to create a Data Set. The File property must be a pathname with the file name ending in ".ds". If you do not provide a pathname, the ".ds" file is created in the project directory. This file is the Data Set control file; the actual data files...
by ray.wurlod
Wed Sep 13, 2006 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pb in a lookup file set
Replies: 1
Views: 924

Lookup File Set pretty much locks you in to its own, stored, schema. This is also why you don't get the opportunity to specify a key in the Lookup stage - the key in the Lookup File Set is already known.
by ray.wurlod
Wed Sep 13, 2006 5:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we capture the runtime details?
Replies: 3
Views: 1200

You create a routine to harvest what you require. Everything you need is captured by DataStage. You can download ETLstats from Kim Duke's website which will provide some prototypes. There are two sets of functions in the DataStage API which map onto options in the dsjob command. One set retrieves a ...
by ray.wurlod
Wed Sep 13, 2006 5:14 am
Forum: General
Topic: Query about FTP Adapters- Mercator
Replies: 1
Views: 2156

Please do not double post. It wastes everyone's time.

Responses should be made to this post
by ray.wurlod
Wed Sep 13, 2006 5:11 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Assigning value for start value in Serrogate key Generator
Replies: 2
Views: 2225

I think you will find that there's no such thing as a Surrogate Key Generator stage (however spelled) in DataStage TX. Please post any question you may have in the correct forum. You also need to be alert to the implications of running a job in parallel.
by ray.wurlod
Wed Sep 13, 2006 5:09 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Assiging a values to job parameter inside the job
Replies: 1
Views: 1896

Thank you for sharing that. However I think you will find that there's no such thing as a Surrogate Key Generator stage (however spelled) in DataStage TX. Please post any question you may have in the correct forum.
by ray.wurlod
Wed Sep 13, 2006 1:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum size of input text file
Replies: 5
Views: 1785

There is no limit on the size of a Sequential File that DataStage can read. From the other posters' experiences I would suggest that the delay is not in reading the text file, but elsewhere in your job design. You can prove this easily enough. Construct a job as follows. Sequential File -----> Trans...
by ray.wurlod
Wed Sep 13, 2006 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Range Lookups
Replies: 10
Views: 4341

You might also contemplate indexing the search fields in the hashed file (the UV table).