Search found 1215 matches

by narasimha
Mon Dec 27, 2010 10:16 pm
Forum: Site/Forum
Topic: 30K for Craig
Replies: 7
Views: 7426

All I can say is ooooo .........Image
by narasimha
Thu Dec 09, 2010 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file
Replies: 6
Views: 3206

How would you want the in coming null to look in the sequential file. Based on your need change the transformation to reflect for individual columns or at a global level

IF ISNULL(DSLink.xxxx) THEN 'How you want it look in your sequential file' ELSE DSLink.xxxx.
by narasimha
Thu Dec 02, 2010 7:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output file full
Replies: 6
Views: 6704

A search on "Output file full" gave me 22 results.
The majority of them point to disk space filling up.
by narasimha
Wed Dec 01, 2010 5:01 pm
Forum: General
Topic: Migration from IIS 8.1 installation to IIS 8.5
Replies: 11
Views: 10349

Looks like IBM has not documented/published the migration path from Version 8.0.1 and later to Version 8.5 Below is the installation instruction provided in the "readme-migration.txt" To migrate from IBM InfoSphere Information Server, Version 8.0.1 and later versions, see http://www.ibm.co...
by narasimha
Wed Dec 01, 2010 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output file full
Replies: 6
Views: 6704

Can you provide the exact, complete error message. This can give more insight to what is happening.
by narasimha
Mon Nov 22, 2010 12:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running a .sql file
Replies: 4
Views: 2550

The default behavior while executing sql scripts is - To continue and take no action when a SQL error occurs.
In the beginning of your sql file put the below line to exit the script with failure.

Code: Select all

WHENEVER SQLERROR EXIT FAILURE;
HTH
by narasimha
Mon Nov 22, 2010 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sftp ing the files and deleting files on remote server.
Replies: 17
Views: 14853

Another way of doing this is to run sftp -b (Batch mode)
In the batch file you can write a get/mget followed by a rm
by narasimha
Fri Nov 19, 2010 12:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't login the Datastage Server and The connection is broke
Replies: 14
Views: 8587

Is this a one-time message or do you get this message consistently?
by narasimha
Thu Nov 18, 2010 9:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedures in Oracle connector stage
Replies: 13
Views: 20518

The below should work for you. Note the semi-colons.

Code: Select all

BEGIN DBMS_STATS.gather_table_stats(XXXXXXX); END;
by narasimha
Wed Nov 17, 2010 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedures in Oracle connector stage
Replies: 13
Views: 20518

Try using CALL instead of EXEC as below (without the semi-colon in the end)

CALL DBMS_STATS.gather_table_stats(XXXXXXX)
by narasimha
Sat Nov 06, 2010 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while viewing data from OCI Stage
Replies: 3
Views: 2483

I had the same issue - The solution is to introduce a new Environment Variable - DS_NO_FF/String/Variable/1
by narasimha
Wed Nov 03, 2010 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: create a file using sudo
Replies: 4
Views: 2364

I was thinking if there could be anything introduced in the "Filter Command" of the sequential file stage or something on that lines.
Looks like there is no option, but to invoke the job as a different user.

Thanks again
by narasimha
Wed Nov 03, 2010 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: create a file using sudo
Replies: 4
Views: 2364

I would want to implement this in existing server and parallel jobs.
Probably I should have been more clear/specific with my design, it is using sequential files (Majority of them are Server Jobs)

Source_Sequential_Stage -> Transformer -> Target_Sequential_File
by narasimha
Tue Nov 02, 2010 5:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: create a file using sudo
Replies: 4
Views: 2364

create a file using sudo

We have a secure location on our DataStage Server where I use the below approach to work with a file. sudo -u <user_thats_owns_the_location> touch <file_name> I can do it directly on the OS, but I would want to write to this location using a simple job. Source_File -> Transformer -> Target_File Any ...
by narasimha
Sat May 08, 2010 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2 GB limit on Oracle Bulk load Stage ?
Replies: 6
Views: 3031

If only I were an "IBM Information Champion" 8)