Search found 4992 matches

by kcbland
Mon Dec 26, 2005 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merging two files
Replies: 1
Views: 615

You posted two issues: 1. View Data is disabled because this is a pseudo-Active stage, meaning it "does" something. It can't show you the results because the data has to be generated first, hence the "Active" name. It would be nice if the View Data could view each underlying file, but viewing the re...
by kcbland
Mon Dec 26, 2005 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No connect to tera database after upgrading tera client to R
Replies: 3
Views: 894

I don't know if there's a difference in Teradata plugins for different versions of Teradata client. That being the case, there's nothing you should have to do on the DataStage side. What you do need to do is make sure that all appropriate dsenv changes are up to date for the new client, such as path...
by kcbland
Mon Dec 26, 2005 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error viewing sequential file.
Replies: 14
Views: 5937

What's the "problem"? Since we don't have the error message we really can't tell you the issue. Have you grep'd the file into another and tried viewing in the grep'd copy to verify it's not a metadata issue? Do you have embedded quotes that wrap <CR>/<LF> or delimiters that needs honoring, thus grep...
by kcbland
Mon Dec 26, 2005 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Whom should I contact
Replies: 6
Views: 2262

I took the time to review every post made by the questioner. Some of the questions were answered within minutes of posting. Others were answered in a lively discussion from multiple sources giving different opinions. Only one question went unanswered, which dealt with Viewing Data using the Merge st...
by kcbland
Mon Dec 26, 2005 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting different oracle database at a time
Replies: 4
Views: 1058

Projects don't connect to a database, jobs connect. In one job, you could have different OCI stages talking to different instances, all within the same job. The only requirement is that all Oracle stages must use the same Oracle client installation, which is configured in the dsenv file and applies ...
by kcbland
Sun Dec 25, 2005 10:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting different oracle database at a time
Replies: 4
Views: 1058

Use OCI stages, which use the SQLnet Oracle client. Make sure the DBA's install the client on the Unix server, put ORACLE_HOME and the shared library paths in the dsenv file, recycle DS services, and you're all set. DS resolves thru $ORACLE_HOME/network/admin/tnsnames.ora file for all connections, s...
by kcbland
Fri Dec 23, 2005 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running a job with multiple instances
Replies: 1
Views: 698

Using Director: on the Run window that blank white box that says Invocation ID, put some text in there and see what happens. Using Batch Job Control: attach to the job using Jobname.InvocationID where just like using the Director, supply some text and see what happens. Using Sequencer: use Jobname.I...
by kcbland
Fri Dec 23, 2005 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Keymanagement
Replies: 2
Views: 728

During transformation, reference the target to determine if the natural key has been assigned a surrogate key. If not, then assign a surrogate and treat as an insert. If the surrogate key is found, then use that and treat as an update.
by kcbland
Wed Dec 21, 2005 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage BASIC functions with variable number of arguments
Replies: 8
Views: 2232

Can't remember either, but there's always the array as an argument trick.
by kcbland
Wed Dec 21, 2005 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejects
Replies: 2
Views: 719

Why are the 10000 rejecting? Primary key violation with INSERT ONLY SQL? You already know the answer. Don't try to INSERT rows that are already there, or switch your SQL to INSERT or UPDATE and superfluously update them (potentially). Or, build a more intelligent job that references the target and u...
by kcbland
Tue Dec 20, 2005 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting rows to columns
Replies: 10
Views: 3822

A SQL query, using CASE or DECODE statements to logically move information to the appropriate column, using GROUP BY yourkey style logic with MAX() derivations on all CASE derived columns will give you a vertical pivot. EX: select key, max(val_1), max(val_2), max(val_3) from ...
by kcbland
Tue Dec 20, 2005 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: (DSOpenJob) Cannot open job ... - not a runnable job
Replies: 5
Views: 6613

Make sure all jobs that are in the Sequencer are compiled.
by kcbland
Tue Dec 20, 2005 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01555 error
Replies: 11
Views: 5187

Yeah but how wide are your rows? If the problem started today, then it means today there's no large amount of rollback space available. There's no way to get around using rollback unless you switch to other methods that bypass transactional processing, such as sqlldr with DIRECT path, but you'll sti...
by kcbland
Tue Dec 20, 2005 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extraction using dates
Replies: 2
Views: 1396

Use a Batch style job to compute the values you need, and then have the Batch job run the Sequencer giving it the values as job parameters. Since the two dates depend on three arguments, you need some chance to compute the dates. Passing those to the Sequencer as job parameters mean that they're ava...