Search found 137 matches

by dougcl
Wed Dec 26, 2012 6:38 pm
Forum:
Topic: Business Glossary Anywhere on an Apple operating system?
Replies: 4
Views: 2864

If you need development help I would be happy to do it.
Doug :)
by dougcl
Wed Mar 21, 2012 2:19 pm
Forum:
Topic: Associating Shared Table to FTP stage
Replies: 2
Views: 1414

Final answer: use an extension mapping document. There are no immediate plans to allow FTP stages to bind to shared tables :roll:
by dougcl
Tue Mar 20, 2012 2:07 pm
Forum:
Topic: Physical Data Model
Replies: 10
Views: 4652

Okay this may be a desperate attempt to fit something I've discovered to this problem, but you could use the Connector Import Wizard in DataStage to import via ODBC using the FILE ODBC driver. This leads to a file called QETXT.INI. This file can be easily written out based on your spreadsheet data t...
by dougcl
Mon Mar 19, 2012 10:48 pm
Forum:
Topic: Associating Shared Table to FTP stage
Replies: 2
Views: 1414

Hi folks, IBM says this is impossible, but we're still waiting to hear the final answer.
by dougcl
Wed Mar 14, 2012 12:49 pm
Forum:
Topic: Associating Shared Table to FTP stage
Replies: 2
Views: 1414

Associating Shared Table to FTP stage

Hi folks, I am using an FTP stage to retrieve data from a remote server. The FTP stage is the first stage in my ETL job. I have a blue table def and an orange shared table associated to it. The table def is associated to the ftp stage in DataStage (find where used confirms this). Metadata Workbench ...
by dougcl
Mon Mar 12, 2012 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Example of ODBC using DataDirect VMtxt24.so (text file)
Replies: 2
Views: 2412

Example of ODBC using DataDirect VMtxt24.so (text file)

Hi folks, we are standardizing on the Connector Import Wizard for the purpose of importing table defs into DataStage, and I want to apply this also to sequential file sources. To that end, I am looking at the DataDirect text driver for ODBC (VMtxt24.so). Has anyone got a sample config in .odbc.ini? ...
by dougcl
Fri May 06, 2011 12:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing null as a parm to a parallel routine
Replies: 3
Views: 2534

You could refer this functionality to a separate routine. "RemoveSubstring"

and leave this routine for non null replacement strings.

Doug
by dougcl
Thu May 05, 2011 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting text to First Letter Capitalisation
Replies: 19
Views: 24119

Are we saying that these are equivalent?

Code: Select all

char *result = new char[sizeof(str)*sizeof(char *)];

Code: Select all

char *result = (char *)malloc (strlen(str) * sizeof(char *)); 
by dougcl
Tue May 03, 2011 6:15 pm
Forum:
Topic: Anyone using BG and MDW as Corporate metadata tool?
Replies: 7
Views: 6193

I wonder how many are supplying a data dictionary at all? The plan here is to publish datamart views. One view per grain definition (eg. Customer, Order, Department, etc). Every column in every datamart view is assigned a glossary term. Each glossary term may have many columns assigned to it, so a r...
by dougcl
Tue May 03, 2011 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting text to First Letter Capitalisation
Replies: 19
Views: 24119

did the code that priyadarshikunal sent worked. Since there is no free statement, the routine would blow up if there are many incoming records. Do a vmstat and the free memory should be coming down drastically depending on the number of records you are processing. What do you think should be freed?...
by dougcl
Tue May 03, 2011 5:04 pm
Forum:
Topic: Problems with Lineage and Impact in MW 8.5?
Replies: 7
Views: 3782

eostic wrote:Did you configure your Database Alias settings? (assignment of DataStage's abstract "server" string to the host-database combination for your imported Database (Shared) Tables)....

Ernie
Ernie strikes again! Direct hit.

Thanks,
Doug
by dougcl
Mon Apr 25, 2011 1:48 pm
Forum:
Topic: Problems with Lineage and Impact in MW 8.5?
Replies: 7
Views: 3782

Problems with Lineage and Impact in MW 8.5?

Hi folks, since upgrading to 8.5, I have the following problems in Metadata Workbench 1) Database tables are not associated to database connectors. Lineage and impact requires that I manually associate them. 2) Even with tables manually associated to stages, column lineage returns nothing. Column im...
by dougcl
Sat Apr 02, 2011 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing a new db snapshot to the previous and get a delta
Replies: 3
Views: 3340

The inputs to the CDC stage are supposed to be sorted on the primary key. If you don't put one there, one will be added automatically, unless you have prevented sort insertion via environment variable.

It should be correct to compare all columns except the primary key(s).