Search found 215 matches

by nick.bond
Wed May 02, 2007 4:26 pm
Forum: General
Topic: Incremental load with no key field at source
Replies: 7
Views: 4478

Without a key what identifies the records to compare from one run to the next? If there is no natural key in the source field then all you can test for is whether their is already a record in the target that is exactly the same, in which case all fields are key fields??? Or is this a trick question?...
by nick.bond
Tue May 01, 2007 9:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Creation in a different location
Replies: 7
Views: 1845

very good point Craig, that adds a whole nother level......

...also do you not see RED when a ROGUE process kills your project ... :oops:
by nick.bond
Tue May 01, 2007 9:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Creation in a different location
Replies: 7
Views: 1845

Further to my previous reply, i could have been more help. you are looking for these records BEGIN DSRECORD Identifier "V0S0" DateModified "1899-12-30" TimeModified "00.00.01" OLEType "CHashedFileStage" Readonly "0" Name "Hashed_File_0" Nex...
by nick.bond
Tue May 01, 2007 7:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating UV_USERS - will this work?
Replies: 5
Views: 3545

Ray one other question :)

If I was to only update the prodUser so they have DBAUTH privaledges would that be sufficient for the system to work correctly, i.e. prodUser to be able to create/delete projects, or does the prodUser need to be owner for the Catalog tables?
by nick.bond
Tue May 01, 2007 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating UV_USERS - will this work?
Replies: 5
Views: 3545

Ray, When writing to a hashed file using the PATH method, what would datastage use as permissions? would it not just check file level permissions? or would it know that I am trying to write to the UV_USERS file which is one of it's system tables and prevent it? If it is the case that DS knows this i...
by nick.bond
Tue May 01, 2007 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset using as intermediate stage b/w two jobs
Replies: 6
Views: 2150

I'm not 100% about this and have no system to test it on but I think all the data will still be read if the dataset has been created on 4 node and you then read it on 2 node, but you will get a warning about the data being repartitioned, hence loosing performance. (And there will be a warning in the...
by nick.bond
Tue May 01, 2007 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Design
Replies: 1
Views: 1289

I need to compare the pogstatus.if the pogstatus is the same
compare which pogstatus to which pogstatus? Your second table doesn't have pogstatus. Do you mean the pogstatus for the same pogtype and customer from the last file/last run?

Explain a bit more.
by nick.bond
Sat Apr 28, 2007 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you capture all the errors?
Replies: 11
Views: 3350

Pradeep, The errors I'm talking about capturing inside the jobs would only be data validation types of errors. Is the field populated, Did the lookup return a value, Is the string too long is the date valid etc These sort of errors you can code to capture. Can anyone suggest me of capturing all runt...
by nick.bond
Sat Apr 28, 2007 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what goes to oracle enterprise stage's reject
Replies: 25
Views: 11488

whenever I request IBM support, they ask for the jobs to reproduce the problems at their installations, all types of jobs
what do you mean by that? are you implying that these people who are helping you for free should also send you any job you request? :?
by nick.bond
Fri Apr 27, 2007 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you capture all the errors?
Replies: 11
Views: 3350

If you're just talking about getting what is produced in the dirctor log into a flat file, run an 'After Job Subroutine' Routines\Built-In\Before/After\DSJobReport It has instructions on how to use it in the routine description section. If you want to get all errors detected within the job by your c...
by nick.bond
Fri Apr 27, 2007 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you capture all the errors?
Replies: 11
Views: 3350

Did you mean 'How to capture them in a flat file' ?
by nick.bond
Fri Apr 27, 2007 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem Reading a Flat file
Replies: 11
Views: 7966

>##E TFIG 000000 11:48:59(009) <Sequential_File_0> At field "units": When validating import/export function: APT_GFIX_Decimal::validateParameters: the decimal "text" format is variable length, and no external length is specified; can you show us the definitions you have for the ...
by nick.bond
Fri Apr 27, 2007 10:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 3337

EE can be such a pain in the arse with null handling. Try what I said in previous post and see if that get's rid of the first warning. You could also try adding in a modify stage between CFF and Tfm to change the fields properly from Non-nullable to nullable, or I think sometimes if you added in a c...
by nick.bond
Fri Apr 27, 2007 10:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 3337

I'm pretty sure it's just complaining about the IsNull() on that field when it thinks it can't contain a null as it is not nullable.

What happend if you change it to

Code: Select all

IF In.CDKFRLU2_CLS_DT < ' ' THEN SetNull() ELSE In.CDKFRLU2_CLS_DT 
-- edited, got distracted
by nick.bond
Fri Apr 27, 2007 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date value turning into ********** for Nulls
Replies: 18
Views: 3337

Do you have a reject link on the Xfm?? Is there null handling on that column def?