Search found 181 matches

by seanc217
Wed May 31, 2006 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Errors
Replies: 7
Views: 5770

Hi everyone. I got a reply from tech support on this one, it's an issue with the c++ compiler. I have been waiting about 3 weeks or so now for a resolution to this. Fortunately I will be migrating to Linux boxes which should resolve the issue. The text of the problem as defined by tech support follo...
by seanc217
Thu May 25, 2006 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01003 Error
Replies: 5
Views: 5836

I'm no expert on AIX, but it sound like a reference to a library or something is missing. Check your environment variables maybe?
by seanc217
Thu May 25, 2006 12:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture
Replies: 1
Views: 834

Change Capture

A basic question, I think I know the answer.
When I am comparing fields in a change capture stage and I have a field that can have a null value, will the change capture consider this an edit because you cannot compare null to null?
by seanc217
Thu May 25, 2006 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Oracle sequence as a surrogate key
Replies: 1
Views: 832

I got this solved. It was because the update statement was trying to use the orchestrate field to update the sequence, which I did not want to do. Once I removed that set statement everything works good.
by seanc217
Wed May 24, 2006 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Oracle sequence as a surrogate key
Replies: 1
Views: 832

Using Oracle sequence as a surrogate key

Hi all, I know this question has been asked 100 times and I am going to ask again because I have some issues... I know in past posts that it says the best way to handle using an Oracle sequence is to use the custom sql in the Oracle stage. But, I get the following error: Oracle_Enterprise_40: Orches...
by seanc217
Thu May 11, 2006 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Control
Replies: 9
Views: 2366

Thanks for the replies. So if it does promote the executables then I would not need the c++ compiler on the test and prod machines as long as I don't check the re-compile option. Correct?
by seanc217
Wed May 10, 2006 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Control
Replies: 9
Views: 2366

Thanks,

Another question in order to promote from dev to test to prod, is a c++ compiler required on all the environments or can I get away with it just on the development server?
by seanc217
Wed May 10, 2006 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Control
Replies: 9
Views: 2366

I was looking more for the hardware requirements to promote from dev to test to prod and what protocol it uses.

tcp/ip
ssh etc.

Thanks
by seanc217
Wed May 10, 2006 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Control
Replies: 9
Views: 2366

Version Control

I was looking through the docs for the VC tool. I did not see any requirements for how to promote projects. Is the protocol used just tcp/ip?

Thanks.
by seanc217
Tue May 09, 2006 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fact table load error
Replies: 1
Views: 821

I think I solved my own problem. I did not have the Oracle lookups set to sparse! So it tries to cram everything into memory.

Thanks
by seanc217
Tue May 09, 2006 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fact table load error
Replies: 1
Views: 821

Fact table load error

I'm loading a fact table. So I have 9 lookups into the dimensions to get the surrogate key values. The job runs fine then I get: fact_table_fk_lookups,1: Could not map table file "H:/IBM/DataStage/Resource/DataSets/lookuptable.20060509.uhq5v4d": Not enough space Operator's runLocally() fai...
by seanc217
Thu May 04, 2006 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Another Date question
Replies: 2
Views: 943

I was able to solve this one by parsing the date out and adding the place holders as necessary.

If anyone is interested in how I did it let me know I will post the code.

Thanks.
by seanc217
Thu May 04, 2006 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Another Date question
Replies: 2
Views: 943

Another Date question

If I have a text string which is a date coming in from a sequential file as such : 1/1/2006 and I want to use the StringtoDate function on it, It appears that I will have to manipulate the date to 0 fill both the 1's so that is appears as such: 01/01/2006. Is this correct? Or is there are format for...
by seanc217
Thu May 04, 2006 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Errors
Replies: 7
Views: 5770

DataStage Errors

I have a job where I have an Oracle Enterprise Stage->Surrogate Key Stage->Transformer->Oracle Enterprise Stage. In my transformer I am converting integer values into dates the format is YYYYDDD. In my derivation I am using the following: if DSLink26.CIRAMST_DATE_LAST_BNOTICE =0 then setnull() else ...
by seanc217
Thu May 04, 2006 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting integer to date
Replies: 3
Views: 1310

Thanks for the hint on the function.
Here is my derivation. Does this look right?

if DSLink2.CIRAMST_DATE_LAST_BNOTICE =0 then setnull() else DateFromDaysSince(DSLink2.CIRAMST_DATE_LAST_BNOTICE[5,3],StringtoDate(DSLink2.CIRAMST_DATE_LAST_BNOTICE[1,4]:"-01-01"))

Thanks!!