Search found 33 matches

by jyothisdasms
Thu Jan 19, 2012 2:09 am
Forum: General
Topic: Expiry date issue in Datastage administrator
Replies: 7
Views: 3060

I am not able to access any projects.

I have installed server in Windows XP.Is that a problem?
by jyothisdasms
Mon Jan 09, 2012 1:55 am
Forum: General
Topic: Expiry date issue in Datastage administrator
Replies: 7
Views: 3060

I did not edit the UV.ACCOUNT table.
by jyothisdasms
Sat Jan 07, 2012 9:41 am
Forum: General
Topic: Expiry date issue in Datastage administrator
Replies: 7
Views: 3060

Expiry date issue in Datastage administrator

Hi, I recently installed datastage 7.5 server and client in my Dektop. My OS is windows XP. After installation , when i am trying to connect to a Project(sampleproj) through the Administrator getting the following error message. "Failed to attach to 'sampleproj'. Project 'sampleproj' expiry dat...
by jyothisdasms
Mon Oct 24, 2011 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting some ASCII nulls in file
Replies: 3
Views: 2357

Try to use $APT_STRING_PADCHAR=0x20
by jyothisdasms
Tue Sep 20, 2011 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transpose Row to column from two files
Replies: 10
Views: 3727

Add a join stage and join the two ouputs instead of keeping the files.Make the dummy field as the key
Then you will get the o/p as

Key col1 col2
1 header trailor

Hope it will help you
:)
by jyothisdasms
Tue Jul 12, 2011 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Stage-Warnings
Replies: 4
Views: 3065

Hi, I solved the issue by adding some dummy data when there is no rows in the history table. Now i am getting the output ,when there is a change in the existing records(update) in the history table and if any new records(insert) are coming from the master table. Is there any way to find out the reco...
by jyothisdasms
Tue Jul 12, 2011 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Stage-Warnings
Replies: 4
Views: 3065

SCD Stage-Warnings

Hi, I am trying to implement SCD2 using the SCD stage. My source tables are like 1.table_XX 2.table_XX_History. I am using the history table(table_XX) as the reference I am trying to find out the modified/New records.But for the first run when the history table is empty ,i am getting the warnings li...
by jyothisdasms
Tue May 31, 2011 3:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer compilation eror
Replies: 12
Views: 10904

Re: transformer compilation eror

Hi all, I am very new to data stage.I got a compilation error when i was desining a small job on transformer.I am using datastage 8.0 and visual studio 2008. I have set LIB and INCLUDE environment variable in my wnidows environment.could any body help me in this issue What is the ERROR? :evil:
by jyothisdasms
Mon May 30, 2011 12:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data insert multiple times in target database
Replies: 9
Views: 6101

Create a lookup with the target database and insert the records only if the key values are not present in the target.Pull out the reject link for this.
by jyothisdasms
Mon May 30, 2011 12:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need help in logic
Replies: 9
Views: 9905

Use a transformer stage with some stage variables like Stagevarnew Stagevarprev Map the Stagevarnew to the Stagevarprev.Assign the key value(Here first column) to the Stagevarnew.Compare both stage variables for the group by Process.add/find out the difference for the rows having same key values. Mi...
by jyothisdasms
Mon May 30, 2011 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to read from a space delimited sequential file
Replies: 9
Views: 7836

Read the whole file in one field without giving any delimitter.
Then use the change function to convert the two consecutive space into a single space.Then you can split the records using a Coulmn import stage giving space as delimitter

Let me know the results !!
by jyothisdasms
Mon May 30, 2011 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Numbers issue
Replies: 9
Views: 4937

Try by changing the Execution mode as "sequential" in transformer stage.

In transformer stage :- STAGE ---->Advanced----->Execution mode

Change that to Sequential.

Please let me know the results.
by jyothisdasms
Tue May 24, 2011 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in job logic
Replies: 32
Views: 11455

Define two variables

StgVar1=stgVar2

StgVar2=Stgva2+1------->Initial Value=1


Try atleast for 5 minutes.
Then reply.
:)
by jyothisdasms
Tue May 24, 2011 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in job logic
Replies: 32
Views: 11455

Define two variables

StgVar1=stgVar2

StgVar2=Stgva2+1------->Initial Value=1


Try atleast for 5 minutes.
Then reply.
by jyothisdasms
Tue May 24, 2011 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help in job logic
Replies: 32
Views: 11455

Generate a new keycolum for each file .You can make use of a transformer for that.Declare a stage variable.Make its initial value as 1.Then increase its value by one for each row.so that it's value will come as 1 2 3.... Make the same logic for both the files.Then your inputs will become Input1 Key ...