Search found 38 matches

by Steve@HSBC
Fri Jul 29, 2005 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating from 7.1 - 7.5.1
Replies: 3
Views: 2278

my first stumbling block: can a 7.5 job read and write to the same hash file as a 7.1 job?
by Steve@HSBC
Fri Jul 29, 2005 1:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migrating from 7.1 - 7.5.1
Replies: 3
Views: 2278

Migrating from 7.1 - 7.5.1

All, We are currently migrating all our jobs from 7.1 to 7.5 and was wondering if there are any special things to watch out for. Things like DB2 stages not working the same, routines and internal commands being slightly different. Containers not working as expected etc etc. Is there a check list / t...
by Steve@HSBC
Fri Jul 01, 2005 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Status Code How to get this into a variable
Replies: 3
Views: 2198

fixed it.. the status code is standard error apparently.

Cheers
by Steve@HSBC
Fri Jul 01, 2005 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Status Code How to get this into a variable
Replies: 3
Views: 2198

Status Code How to get this into a variable

I currently run the following command: `cat /.dshome`/bin/dsjob -jobinfo SystemTest TestSeq1 | head -1 and trap the Job Status (i.e.): Status code = 0 Job Status : NOT RUNNING (99) This ok i can get the NOT RUNNING (99) into a variable and test on this part. What i need to be able to do is get the a...
by Steve@HSBC
Tue Mar 29, 2005 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in mutex
Replies: 9
Views: 5377

we don't use the 64bit check thing which is why one of my collegues told me about the limit. We are looking at setting this up in the future but as now going to have to alter the processing as we can't set that up on live yet.
by Steve@HSBC
Tue Mar 29, 2005 5:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in mutex
Replies: 9
Views: 5377

think the problem we have had is the files are 2GB+
by Steve@HSBC
Tue Mar 29, 2005 1:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in mutex
Replies: 9
Views: 5377

Had chance to have a look at the job properly now i am back in work. The 1st job creates the hash file fine. then the next checks and writes to the hash file, either writing an update, reject or no processing record all to the same hash file. The stage has none of the boxes ticked in the hash file (...
by Steve@HSBC
Mon Mar 28, 2005 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in mutex
Replies: 9
Views: 5377

What happens is we have 4 jobs: 1st = create unload of a table (or part unload in this case) 2nd = create an update file. 3rd = copare the file against the 1st files unload 4th = load changes The process is failing on the 3rd step. it creates and clears the file ok and creates the unload. when it co...
by Steve@HSBC
Mon Mar 28, 2005 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in mutex
Replies: 9
Views: 5377

Error in mutex

When we run one of our generic jobs we get the following error: UKWH_ACCT_ARRG_IntSHPr1job.XPPAYHSTDWH_ACCT_ARRGshp192.StandardHistoryProcess.TargetTable_HFLkup_tfm.Source: ds_ipcflush() - Error in mutex_unlock() - Not owner The job creates a hash file then this job reads / updates the hash file so ...
by Steve@HSBC
Wed Mar 16, 2005 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FieldToProp: Internal error - Bad number of subobjects
Replies: 4
Views: 2442

been there done that. Re-indexed last night. Then we re-started the DS service after applying a fix pack and this has had no luck in fixing the problem.

OPen to more ideas?
by Steve@HSBC
Wed Mar 16, 2005 4:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FieldToProp: Internal error - Bad number of subobjects
Replies: 4
Views: 2442

FieldToProp: Internal error - Bad number of subobjects

When i create a new sequence and add a routine to the stage and go into it i get the following error: FieldToProp: Internal error - Bad number of subobjects Then it will still work fine / compile and run. Any ideas on how to fix this? This is fairly urgent as it stops the backups as the server pops ...
by Steve@HSBC
Thu Feb 24, 2005 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp and DB2
Replies: 3
Views: 1973

you're a star!!!! :D :P

Worked a treat thanks for the help (obvious but i would never of got that).
by Steve@HSBC
Thu Feb 24, 2005 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp and DB2
Replies: 3
Views: 1973

Timestamp and DB2

I have a timestamp field on an incoming file in the format: yyyy-mm-dd-hh.mm.ss.nnnnnn This is need to load into a 26 Timestamp field in DB2. I ahve made the format on the file Timestamp with scale 6 (as is on the DB2 from the import DCLGEN). but i am getting the date timestamp format is not represe...
by Steve@HSBC
Mon Feb 07, 2005 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Returning more than one row
Replies: 3
Views: 1759

I'll try and explaing better as i have just re-read and i haven't explained it well.. I have a table of customers and arrangements in the same table. 1 arrangement can have many customers (i.e. joint accounts). What i need on the same table is a sequence number for the customers on the one arrangeme...
by Steve@HSBC
Mon Feb 07, 2005 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Returning more than one row
Replies: 3
Views: 1759

SQL Returning more than one row

All, I have an SQL statement which generates ID's for a given customer and product (basically like a count but there are a few restrictions and proviso's). What happens is i feed in a customer and get 0 - 9 products back and i want to update those N products with the number that gets generated. 1stl...