Search found 353 matches

by chandra.shekhar@tcs.com
Fri Nov 04, 2011 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job failure issue
Replies: 4
Views: 4278

Thanx Ray,

I guessed that more than 1 records were trying to insert at the same time, so thats why the insert statement failed to execute.
Can this also might be one of the reason??
by chandra.shekhar@tcs.com
Fri Nov 04, 2011 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job failure issue
Replies: 4
Views: 4278

Job failure issue

Hi, One of my jobs aborted giving the following error:- "An insert, update, or delete statement failed to run. (CC_DB2DBStatement::processRowStatusArray, file CC_DB2DBStatement.cpp, line 2,367)". I dont know what this is? I reset my job and restarted it and surprisingly it ran suucessfully...
by chandra.shekhar@tcs.com
Fri Nov 04, 2011 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Issue in ODBC Enterprise
Replies: 10
Views: 4169

Performance Issue in ODBC Enterprise

Hi,

I am using an ODBC Enterprise in one of my job. I was wondering what might be the most effective value of "Fetch Array Size" so as to increase my job performance?
Or does this effective value is dependent on some factors?
by chandra.shekhar@tcs.com
Thu Oct 13, 2011 4:04 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: What are the most useful reports to judge the loaded table?
Replies: 3
Views: 3676

Re: What are the most useful reports to judge the loaded tab

Actually we are new to the Information Analyzer. Its challenging task to us to generate few reports based on the loaded data. Decision can be made by the business users by viewing those reports. What are the most useful reports for making such type of decisions? Kindly answer the following question...
by chandra.shekhar@tcs.com
Mon Sep 19, 2011 6:33 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Temp space getting Full
Replies: 4
Views: 4276

Re: Temp space getting Full

Change following points in configuartion file.

1>scratch disk path: make sure you have sufficient space over there.


Thanks
Anil
by chandra.shekhar@tcs.com
Mon Aug 22, 2011 4:39 am
Forum: General
Topic: how we delete 3rd row from one table
Replies: 14
Views: 5022

@pandeesh
I know what you are trying to say, but the bottomline is that the query works. :)
by chandra.shekhar@tcs.com
Mon Aug 22, 2011 4:30 am
Forum:
Topic: Error while opening a folder in Director
Replies: 5
Views: 1746

Hi pandeesh,
Can you plz explain it as I have no idea about REINDEX.
by chandra.shekhar@tcs.com
Mon Aug 22, 2011 4:24 am
Forum: General
Topic: how we delete 3rd row from one table
Replies: 14
Views: 5022

Let KEY_1 is ur PK(or any distinct column) and ABCD is your table,
then this might help

delete from ABCD where key_1 in
(select key_1 from (
select key_1 from ABCD
fetch first 3 rows only)
order by 1 desc
fetch first row only)

@everybody
For every Question there's an answer. :P
by chandra.shekhar@tcs.com
Mon Aug 22, 2011 1:08 am
Forum:
Topic: Error while opening a folder in Director
Replies: 5
Views: 1746

Error while opening a folder in Director

Hi, We are struggling with an absurd problem with Director. For some specific folders, the Director is unable to show the list of jobs and throws the following error and then crashes. Run time error '457'; This key is already associated with an element of this collection. We dont know how to solve t...
by chandra.shekhar@tcs.com
Wed Aug 03, 2011 8:20 am
Forum: General
Topic: export dependent jobs,td's etc using istool
Replies: 4
Views: 2562

Use following command.IT wil work. I have tested sucessfully. ./istool export -domain serverIP:9080 -verbose -username ****** -password ****** -archive "AAAA" -datastage '-includeexecutable "servername/project name /*/jobname.*"' where *****- means username/password AAAA- means p...
by chandra.shekhar@tcs.com
Wed Jul 27, 2011 5:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSatge Backup
Replies: 2
Views: 1910

DataSatge Backup

Dear Team,

As a best practice we would like to have regular datastage project backup using unix script.

we are using AIX 6X.

Kindly provide me backup script else command for the same.


Thanks and regards,
Kishor
by chandra.shekhar@tcs.com
Mon Jul 11, 2011 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HASH TABLE
Replies: 4
Views: 1926

HASH TABLE

Need basic knowledge of HASH TABLE.

Kindly suggest me how to use hash table in DS8.1

Thanks
Kishor
by chandra.shekhar@tcs.com
Thu Jul 07, 2011 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: configuration file
Replies: 4
Views: 2359

Re: configuration file

Yes you can use the different node for your particular stage. consider you have one configuration file having 10 nodes out of that 6 node you can use for particular stage using pools "DB2" and remaing 4 nodes for other stages(default). In particular stage,click on stage icon --> advance se...
by chandra.shekhar@tcs.com
Thu Jul 07, 2011 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find rejected record count without reject link.
Replies: 3
Views: 2080

Re: How to find rejected record count without reject link.

we want below information:

1> How many records are rejected( we are using db2 connector ,no reject link)
by chandra.shekhar@tcs.com
Thu Jul 07, 2011 1:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find rejected record count without reject link.
Replies: 3
Views: 2080

How to find rejected record count without reject link.

Hi, As per the business requirement ,we have to find the rejected record count. my job as follows: src_db2_connector----->transformer----->Tgt_db2_connector(Upsert mode) | | -------------exception_tgt_db2 connector Tgt table having primary key. when duplicate records are come job will abort. we dont...