Search found 47 matches

by gpatton
Mon Nov 30, 2009 1:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: the record is too big to fit in a block
Replies: 12
Views: 15104

You cannot write records to a datasets which have bigger length than the blocksize of the dataset which is by default 128K. You can change that though by setting APT_PHYSICAL_DATASET_BLOCK_SIZE.
by gpatton
Mon Jul 27, 2009 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel Jobs hanging in DataStage
Replies: 6
Views: 4759

You mention that these jobs are running in production fine. I am assuming that your problem is in other environment. Are the database tablespaces the same in that environment as they are in prod? When DB2 executes load it does some locking at tablespace level.
by gpatton
Mon Jul 06, 2009 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar size issue when migrating Db from ISO8859-1 to UTF8
Replies: 6
Views: 7155

If you were to reimport the Database meta data, you will find that for Char and Varchar columns, the length will be a multiple of the byte length ( depending upon the value set in the DataBase ). The soulution is to multiply the length values in the database metadat by appropriate factor ( eg. 4 tim...
by gpatton
Thu Jun 18, 2009 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Chinese Characters in Datastage
Replies: 8
Views: 8215

The issue is the configuration of the SQLServer database. You need to set it up to support multi-byte characters - UTF-8, UTF-16, or UTF-32 are possible options. If the DB is set up for US-English you will have problems.
by gpatton
Thu Apr 24, 2008 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version conflict
Replies: 5
Views: 2853

I believe that you must install the multi-client manager that comew with version 8
by gpatton
Tue Dec 11, 2007 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Multiple records
Replies: 4
Views: 2704

Is the table partitioned or copied on each DB2 node?

Check the configuration file you are using to see if it is referencing multiple nodes.
by gpatton
Wed Aug 23, 2006 11:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange Problem - Join Performance Inconsistencies
Replies: 9
Views: 4530

What other tasks are going on - on the server while you were running today?

Did someone change the configuration file your job is using?
by gpatton
Mon Feb 27, 2006 1:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configuring userids on Datastage server
Replies: 11
Views: 9057

Do other ID's work connecting to DataStage server?
by gpatton
Thu Feb 16, 2006 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error from DSDB2 Stage
Replies: 6
Views: 4105

You may also need to add the db2 configuration parameters into the .profile file of the etl user ( i.e. the user you sign on to DataStage with) Make sure your libpath is set correctly. Also you can verify the connectivity by trying to run db2 connect to "Database" from the unix command line.
by gpatton
Wed Feb 01, 2006 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need best partitioning method for hierarchy mgmt
Replies: 5
Views: 2422

How many "root" levels will you have in your hierarchy ( in your example 1 )?

You could partition your data based upon values of the "root" level and then run subsets in parallel.
by gpatton
Mon Jan 30, 2006 8:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 7.5.1 vs. DB2 UDB 8.2 in 64bit-mode
Replies: 6
Views: 7153

Gazelle


Is the DB2 database on the same machine as DataStage or is it on a different machine?
by gpatton
Tue Jan 24, 2006 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can not open job activites in a job sequencer
Replies: 2
Views: 1926

you need the windows xp path.

See post:

viewtopic.php?t=97965
by gpatton
Thu Jan 19, 2006 2:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9019

One of the things that will cause this message is if you get a network timeout..

This can occur if you leave a DataStage client connected and go out for lunch :lol:
by gpatton
Thu Jan 19, 2006 11:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to perform a hashed file lookup
Replies: 3
Views: 2006

yes you can have two key colums in lookup.

1) make sure the column definitions are the same for the source and hash file.

2) try If ( IsNull(lkReferenceLookup.column_1) or IsNull(lkReferenceLookup.column_2)) as the constraint for the failed lookup stream.
by gpatton
Fri Jan 13, 2006 11:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Terrible Performance due to log file
Replies: 25
Views: 11659

Another option is to create a temporary table with the two columns in it.

Change the existing job to truncate then load into the table.

Then use an after SQL function to issue an insert into the target table using a not exists in the where clause.