Search found 53125 matches

by ray.wurlod
Mon Oct 01, 2012 3:00 pm
Forum: General
Topic: How to assignment a sql to a variables
Replies: 5
Views: 1747

Use a server job to perform the query. In a Transformer stage call a routine that puts the value into the job's user status area. You'll need to create the routine, which is an interlude to the subroutine DSSetUserStatus. FUNCTION SetUserStatus(Arg1) $INCLUDE DSINCLUDE JOBCONTROL.H Ans = 0 Call DSSe...
by ray.wurlod
Mon Oct 01, 2012 2:28 am
Forum:
Topic: Detect lineage association not working for Oracle Connectors
Replies: 3
Views: 2225

Have a look at the readme file for FixPack 1; I can't recall whether this specific issue is covered there, but there's a half dozen or so Business Glossary fixes that you'll almost certainly want to have.
by ray.wurlod
Mon Oct 01, 2012 2:26 am
Forum: General
Topic: how to deplop a package on aix using istools
Replies: 2
Views: 874

What do you mean by "package" in this context? What, further, is your goal?
by ray.wurlod
Sun Sep 30, 2012 9:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error warning
Replies: 3
Views: 2521

Read the strings as Char (not VarChar) and provide a sufficiently large precision value for the Decimal number.
by ray.wurlod
Sun Sep 30, 2012 3:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration file (job level)
Replies: 9
Views: 3527

Simply add $APT_CONFIG_FILE to each necessary job as a job parameter. You can set its default value to be the same as that for the project, or to the pathname of any other configuration file. Further, you can override the default value when the job run request is made.
by ray.wurlod
Sat Sep 29, 2012 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading error
Replies: 2
Views: 1622

Correct the connect descriptor in tnsnames.ora file.
by ray.wurlod
Sat Sep 29, 2012 3:30 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Data Rule using SQL 'IN' logic
Replies: 1
Views: 2098

For a small enough list of asset data, use in_reference_list check. For larger list use in_reference_column. Use a virtual table in IA to establish the "join".
by ray.wurlod
Fri Sep 28, 2012 10:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract Data from Eloqua cloud datasets
Replies: 1
Views: 821

Welcome aboard. Since it appears that the only way to access these is through one of their apps, you need to work out what's most appropriate. For example, if any of the apps is exposed as a web service, then you could use the Web Services Transformer stage (or perhaps Web Services Client stage if y...
by ray.wurlod
Fri Sep 28, 2012 10:40 pm
Forum: General
Topic: resource disk is 90% used
Replies: 6
Views: 910

Most operating systems allow you to set an alarm to do this.

The real question is what are you planning to do should this situation arise?
by ray.wurlod
Fri Sep 28, 2012 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting error on 00000000 while doing stringtodate
Replies: 14
Views: 3378

ArndW wrote:I can't check but seem to recall having to use '0001-01-01' as low-date in DataStage in a project. Months 0 and Day 0 don't exist in any case, so '0000000' is not a legal date in any case.
Year 0000 doesn't exist either.
by ray.wurlod
Fri Sep 28, 2012 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records flow one by one to Lookup table.
Replies: 13
Views: 5291

Maybe you could just return the row number and check whether that's 1 or higher (a simpler query)?
by ray.wurlod
Fri Sep 28, 2012 4:31 pm
Forum: General
Topic: Maximum number of jobs running at a given time
Replies: 7
Views: 1636

The main governing factor is the amount of resources (including CPU, memory, I/O bandwidth) that the server can supply. Bigger server; more jobs.
by ray.wurlod
Fri Sep 28, 2012 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assign Value if duplicate record
Replies: 6
Views: 1661

This is a very simple Pivot, based on the first three columns as pivot key.
by ray.wurlod
Fri Sep 28, 2012 2:18 am
Forum: General
Topic: why my db stage can't view data
Replies: 4
Views: 2392

Is this database stage servicing a reference input link?
by ray.wurlod
Fri Sep 28, 2012 2:17 am
Forum: General
Topic: File merge
Replies: 4
Views: 1436

Or you could even make it a Filter command; the Sequential File stage reads stdout of the Filter command.