Search found 53125 matches

by ray.wurlod
Thu Oct 15, 2009 1:40 am
Forum: General
Topic: Teradata equivalence of Oracle Stage
Replies: 2
Views: 1025

Teradata doesn't quite work like that. There are no direct equivalents.
by ray.wurlod
Thu Oct 15, 2009 1:39 am
Forum: General
Topic: TO delete data from tables before execution of sequence job
Replies: 1
Views: 1472

Create jobs to delete data from the two tables.
by ray.wurlod
Thu Oct 15, 2009 1:38 am
Forum: General
Topic: not able to login to datastage designer
Replies: 3
Views: 2553

Can you log in as a DataStage Administrator? If not your SQL Catalog table UV_USERS is corrupt. In this case contact your official support provider.
by ray.wurlod
Wed Oct 14, 2009 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling warnings
Replies: 9
Views: 3617

Are there any warnings in InnerSeq2 log or in OuterSeq log?
by ray.wurlod
Wed Oct 14, 2009 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date in MMDDCCYY format
Replies: 4
Views: 1987

Code: Select all

Oconv(Date(), "DDMY[2,2,4]" : @VM : "MCN")
by ray.wurlod
Wed Oct 14, 2009 12:59 pm
Forum: General
Topic: No jobs displayed in JOBS folder in Designer client
Replies: 3
Views: 1388

I assume that was in Director? Detail view in Designer is intended to be had by sliding out the details pane - in which case no jobs are visible in the tree pane but the jobs in the currently selected folder are visible in the slid-out details pane, along with information such as date/time modified.
by ray.wurlod
Wed Oct 14, 2009 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Look-up
Replies: 7
Views: 2251

Set the Lookup Failed rule to "Continue" and make sure that columns on the reference input and columns on the output that are derived from these are all marked as Nullable.
by ray.wurlod
Wed Oct 14, 2009 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort after 50 Warnings with no limit
Replies: 13
Views: 6963

Were these jobs started from dsjob command with no -warn option?
by ray.wurlod
Wed Oct 14, 2009 6:27 am
Forum: General
Topic: when file name missing in seq.file.. need to display warning
Replies: 4
Views: 1293

Message handlers do NOT handle fatal errors.

You can create message handlers without a particular message having been logged, provided you know the message ID.
by ray.wurlod
Wed Oct 14, 2009 6:25 am
Forum: General
Topic: How to pass values for Parameter set to Dsjob
Replies: 10
Views: 15228

Yes there is. A Parameter Set contains a "default default" set of values as well as zero or more values files.
by ray.wurlod
Tue Oct 13, 2009 11:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage load data into oracle rac ,and hang the session
Replies: 6
Views: 5590

Welcome aboard. What errors are logged in DataStage when this problem occurs? Have you had your DBA investigate which sessions own the locks?
by ray.wurlod
Tue Oct 13, 2009 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help to filter records
Replies: 7
Views: 2767

If it's urgent, sign up with your official support provider for priority service and learn just how much "urgent" costs.

DSXchange is an all-volunteer site, whose members post as and when they can. We don't do "urgent".
by ray.wurlod
Tue Oct 13, 2009 10:59 pm
Forum: General
Topic: Datastage as an ETL Tool vs. a Full Development Environment
Replies: 3
Views: 1903

In a near future version of DataStage (it was announced on the road map at last year's IOD conference) is "intelligence" built in to DataStage to push some logic back into the database, though this is more logic associated with the selection process (e.g. replacing a Sort stage by an ORDER...
by ray.wurlod
Tue Oct 13, 2009 10:54 pm
Forum: General
Topic: How to pass values for Parameter set to Dsjob
Replies: 10
Views: 15228

You edit the values files within the Parameter Set itself. Each values file contains a set of "default" values to be used if that particular values file is selected as the "value" of the Parameter Set job parameter (the first syntax I suggested earlier). Refer to the webinar broa...
by ray.wurlod
Tue Oct 13, 2009 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read Project environment variable in a Routine
Replies: 4
Views: 2117

Has the project parameter been passed to the job as a job parameter? If so you can use DSGetParamInfo() with DSJ.ME as the first argument.