Search found 516 matches

by rkashyap
Sat Apr 22, 2017 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SFDC sparse lookup with upstream Transformer.
Replies: 2
Views: 3211

IBM has informed us ... We should prioritize the patch JR47138 implementation based on the work effort since its not a simple fix and might need some design changes so, it might be considered for the next release of IS. We will workaround this issue by either: - Avoiding upstream transformer from SF...
by rkashyap
Sat Apr 22, 2017 6:21 am
Forum: General
Topic: Duration for installation of IS11.5
Replies: 6
Views: 4514

Re: Duration for installation of IS11.5

I meant the duration of the installation of entire IS with most pre-requisites are taken care (though there seems to be a lot) Installation/configuration of DataStage involves four steps. 1. Install the prerequisite software required. 2. Configuring prerequisite software and OS environment for Info...
by rkashyap
Thu Apr 20, 2017 7:43 am
Forum: General
Topic: Duration for installation of IS11.5
Replies: 6
Views: 4514

Re: Duration for installation of IS11.5

What will be the topology?

By installation do you mean length of the entire projects or simply installation of software (after all the prerequisites are done)?
by rkashyap
Wed Apr 05, 2017 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Import Stage - Carriage return in free-text field
Replies: 2
Views: 2384

Carriage return => Char(13). Can you try running following derivation on FREE_TEXT_FIELD in the transformer.

Code: Select all

Ereplace(in_rec.FREE_TEXT_FIELD, Char(13) ," ",0,1)
by rkashyap
Wed Apr 05, 2017 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write Mode : Delete and Insert fails
Replies: 2
Views: 2492

Could there be multiple records with same key values in incoming data?

What are values of 'Auto Commit mode', 'Array size', 'Transaction record count'?

Test after changing array size to 1.
by rkashyap
Wed Apr 05, 2017 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting Question
Replies: 10
Views: 4019

What is your source?
by rkashyap
Fri Mar 31, 2017 7:17 am
Forum: General
Topic: Frequent DataStage Designer Hang/Freeze
Replies: 5
Views: 3947

What is the RAM allocation on the client machine? Are DataStage Prod and Dev server located in same Data center?
by rkashyap
Fri Mar 31, 2017 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel startup failed
Replies: 3
Views: 2707

Re: Parallel startup failed

Text states
topdsx wrote:Look for error messages in the preceding output.
What are the error messages in the preceding output?
by rkashyap
Thu Mar 30, 2017 1:46 pm
Forum: General
Topic: Finding out XMETA database type
Replies: 4
Views: 4032

You can also look in database.properties file. Location of this file varies by version, it may be ... /opt/IBM/InformationServer/ASBServer/bin/sql/ or /opt/IBM/InformationServer/ASBServer/conf/.
by rkashyap
Wed Mar 29, 2017 8:20 pm
Forum: General
Topic: Where to Get the Full Summary of Sequence
Replies: 4
Views: 2675

Monitoring data captured in DSODB can be configured in DSODBConfig.cfg file. (Default directory: /opt/IBM/InformationServer/Server/DSODB/DSODBConfig.cfg) Add following entry in DSODBConfig.cfg (ideally in "Job Log Events" section) to capture "Summary of sequence run" CaptureLog=I...
by rkashyap
Tue Mar 28, 2017 10:37 am
Forum: General
Topic: Load Azure Redis Cache using DataStage
Replies: 0
Views: 2092

Load Azure Redis Cache using DataStage

Can you please share your thoughts/experiences on loading Azure Redis Cache using DataStage.
by rkashyap
Mon Mar 27, 2017 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connector Schema
Replies: 1
Views: 2295

It will be ideal to fully qualify the table name. However, if that is not desirable/possible, then followthis link to see various options for handling unqualified table names.
by rkashyap
Fri Mar 24, 2017 7:37 am
Forum: General
Topic: Finding jobs that uses particular Transformer funtion
Replies: 2
Views: 2441

I have used following query to research a similar issue. Transformer function can be parsed from text in last column i.e."expression_xmeta" SELECT a.dsnamespace_xmeta AS Project_Nm, a.category_xmeta As Folder_Nm, a.name_xmeta AS Job_Nm, b.name_xmeta AS Stage_Nm, d.name_xmeta AS Link_Nm, e....
by rkashyap
Thu Mar 16, 2017 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove header while getting data through file stage
Replies: 3
Views: 2395

You can use External Source stage for solving this issue. Will you be removing header from a single file or from multiple files? If from a single file, then set value of "Source Program" to tail -n +4 <path>UKRIPR*.txt and if from multiple files, then to for i in <path>UKRIPR*.txt; do tail...
by rkashyap
Thu Mar 16, 2017 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting columns to rows
Replies: 4
Views: 3805

Usually yes, but OP's example has variable no of columns to be pivoted!