Search found 3045 matches

by vmcburney
Wed Nov 15, 2006 5:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we install the datastage server without database?
Replies: 9
Views: 3267

One way to look at it is that what you can access from your PC is similar to what DataStage can access from its server. You can access databases on database servers with the right client software such as Oracle client or ODBC. You cannot open MS Access databases or files on other computers unless yo...
by vmcburney
Mon Nov 13, 2006 1:20 pm
Forum: IBM QualityStage
Topic: QS (Hawk) Standardization Override
Replies: 4
Views: 1649

It's not a built in flag but rather a method you code in manually. You need to input one field into the QualityStage job - raw organisation/individual text. You output three fields from the QualityStage job - raw, standardised for organisation name only and standardised for organisation and individu...
by vmcburney
Sun Nov 12, 2006 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid UsreID/Password when login DataStage Client
Replies: 9
Views: 5831

If you have trouble connecting to DataStage when you are not hooked into a network try the "Omit" option with a server name of ".". This can work even when "localhost" or machine name or IP address does not work.
by vmcburney
Sun Nov 12, 2006 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with PX job
Replies: 12
Views: 4200

I don't understand why you are using an ODBC stage at all, surely two enterprise DB2 stages would be better. If they are two different remote DB2 databases you might have a problem with clashing environment variables. See the DB2 Remote Configuration Guide, if you don't have one ring Ascential-IBM s...
by vmcburney
Thu Nov 09, 2006 4:51 pm
Forum: General
Topic: DS Info - Problem with URL
Replies: 6
Views: 4932

You would be hard pressed to find the differences in DataStage versions 7 and prior. Most of the IBM information is about the new features in the IBM Information Server. You can find a lot of IBM Information Server info on this site by searching for it. Ray had a long post. I had a couple posts on m...
by vmcburney
Thu Nov 09, 2006 4:48 pm
Forum: IBM QualityStage
Topic: QS (Hawk) Standardization Override
Replies: 4
Views: 1649

Previously I have coded QualityStage overrides into a DataStage hosting job. The DataStage job had a set of flags as job parameters. It called the QualityStage plugin and standardised various name, address and company name fields. The override flags let the operator choose which version of a Quality...
by vmcburney
Thu Nov 02, 2006 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage Server certification
Replies: 2
Views: 989

There is the IBM certification exam 415. See dsxchange threads Certification Pass Score and Datastage Enterprise Edition Certification [ Test 415 ] and a FAQ post at How do I get certification for DataStage? . There is also a DataStage Certification information page with links to IBM pages and blog ...
by vmcburney
Wed Nov 01, 2006 6:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup without key
Replies: 6
Views: 1892

You would have just the US states in the lookup. You would add the * to the output data in the transformer when a lookup row is not found. There is no reason to try and bring back ** records from the lookup when you can generate ** strings in the transformer.
by vmcburney
Wed Nov 01, 2006 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error While loading in to DB2 table
Replies: 4
Views: 1639

As I said, get the DB2 Remote Configuration Guide.
by vmcburney
Wed Nov 01, 2006 5:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating new records in DataStage
Replies: 4
Views: 2756

Tricky, DataStage isn't great at creating new rows. You could have four outputs from a transformer, put a constraint on each: three "input.col3 = 'ALL'" links hard coded to X, Y and Z and one "input.col3 <> 'ALL'" that passes through a value. After the transformer you would need to merge the four st...
by vmcburney
Wed Nov 01, 2006 5:17 pm
Forum: Site/Forum
Topic: Easier copying of links
Replies: 0
Views: 1632

Easier copying of links

For those of you who frequently put links into posts, either to external sites or dsxchange threads, I got a firefox add-on CoLT that puts extra copy functions on my browser right mouse click menu. It let's me copy a link to the clipboard in BBCode format (with the url brackets). I can paste it stra...
by vmcburney
Wed Nov 01, 2006 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error While loading in to DB2 table
Replies: 4
Views: 1639

There are some DB2 environment variables for setup documented in the Install and Upgrade Guide. These go into either the dsenv or the project specific environment variables. The former if you want all projects on the server to point at the same DB22 client instance, the latter if you want multiple c...
by vmcburney
Wed Nov 01, 2006 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generation in PX
Replies: 6
Views: 1750

Not a fan of the database generated keys unless you have multiple products loading at the same time. The DataStage generated keys do a good job. See my comments at: Why database generated surrogate keys drive me nuts!!!
by vmcburney
Tue Oct 31, 2006 6:11 pm
Forum: IBM QualityStage
Topic: Can QualityStage read dataset files?
Replies: 11
Views: 3864

Your QualityStage Designer documentation directory on your install CD should have a PDF on the DataStage Plugin. It is free with QualityStage. Chapter 2 in the PDF covers installing the plugin and the QSRT Manager. There should also be a QS_DataStage_PlugIn_GUI directory on the disk that you need to...
by vmcburney
Tue Oct 31, 2006 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generation in PX
Replies: 6
Views: 1750

You have two ways of doing it. The surrogate key generator stage does handle the multiple partitions to give you unique numbers. You can mimic this in a transformer stage variable following the instructions in the FAQ forum on creating a parallel counter.