Search found 1213 matches

by SURA
Tue Sep 20, 2016 7:06 pm
Forum: General
Topic: dscmdexport using command activity diff dsx size
Replies: 7
Views: 3988

dscmdexport using command activity diff dsx size

Hello All When i execute the Datastage job to export the Datastage project, it ran successfully, but the dsx file size is 42,018 KB. I copied the same command from the Datastage director, executed in the command line. All good, but this time the dsx file size is 244,335 KB. I would like to know why ...
by SURA
Tue Sep 20, 2016 6:10 pm
Forum: General
Topic: Annotations: Cannot change Border to invisible.
Replies: 8
Views: 4907

I haven't worked in 11x , still......

Is it happening for this job alone / for all the jobs?

Try to create a new job (without any stages / params) and try it.
by SURA
Sat Sep 17, 2016 12:31 pm
Forum: General
Topic: File properties as source columns
Replies: 11
Views: 3706

chulett wrote:MKS Toolkit was no longer ...
This is really a good point. I always use unix commands, but i need to think twice before us it! At some point it may hit me back.
by SURA
Sat Sep 17, 2016 12:28 pm
Forum: General
Topic: File properties as source columns
Replies: 11
Views: 3706

I know it is there in 11.3, but just checked the latest version and it seems still using.


http://www.ibm.com/support/knowledgecen ... rsion.html
by SURA
Sat Sep 17, 2016 4:52 am
Forum: General
Topic: File properties as source columns
Replies: 11
Views: 3706

You have MKS tool kit. So you can still run most of the unix commands. One way of doing; get the modified time stamp using command activity stages, cleanse the command output for both files and compare.

In the last project i did the same validation.
by SURA
Wed Sep 14, 2016 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sql stored procedure stage job
Replies: 2
Views: 1818

It looks like permission issue.
by SURA
Wed Sep 14, 2016 4:51 pm
Forum: General
Topic: Sequence - not triggering to the next stage
Replies: 8
Views: 3854

Code: Select all

Powershell.exe -noprofile -executionpolicy bypass -File 
I have included the above options which allowed the Datastage to trigger the script and moved to the next step.
by SURA
Mon Sep 12, 2016 6:12 pm
Forum: General
Topic: Sequence - not triggering to the next stage
Replies: 8
Views: 3854

Thanks Criag.

I have modified the executing command to bypass the policy and it is working now as expected.

Thank you so much for your guidance.
by SURA
Mon Sep 12, 2016 12:22 am
Forum: General
Topic: Sequence - not triggering to the next stage
Replies: 8
Views: 3854

Are you taking about the command output / return value / command name?
by SURA
Sat Sep 10, 2016 11:54 am
Forum: General
Topic: Sequence - not triggering to the next stage
Replies: 8
Views: 3854

Sorry for not explaining it properly, though your understood correctly.

I thought this stage bring the trigger status back irrespective of Success or failure.

Anyhow thanks.
by SURA
Thu Sep 08, 2016 10:57 pm
Forum: General
Topic: Sequence - not triggering to the next stage
Replies: 8
Views: 3854

Sequence - not triggering to the next stage

Hello All Newly developed Project, just migrated to PROD. As a part of the Master Sequence, it trigger a PowerShell script using Execute Command Activity stage. Triggers is unconditional and was running fine for a day. All of the sudden in the Datastage server , it seems the IT management guys might...
by SURA
Mon Sep 05, 2016 8:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Download zip file from http link
Replies: 4
Views: 2812

Code: Select all

wget -O file.tar "http://link"
You can try this.
by SURA
Mon Sep 05, 2016 6:55 pm
Forum: General
Topic: DataStage jobs are progressing very slowly
Replies: 4
Views: 2301

Re: DataStage jobs are progressing very slowly

testuser33 wrote:Even a reboot does not help.
On top of the Rays comment, please clear the &PH& etc. I have seen the issue due to not cleaning it.
by SURA
Thu Sep 01, 2016 11:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Alphanumeric sequence using DS
Replies: 6
Views: 3463

I am not sure whether this will work for you or not, but still it may help for someone. This solution is using Oracle, but you will get the same output. Then up to you to decide whether you need to use it or not! WITH data AS (SELECT Chr(65 + LEVEL - 1) str FROM dual CONNECT BY LEVEL <= 99) SELECT s...
by SURA
Tue Aug 30, 2016 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File read limit
Replies: 10
Views: 6110

Yes, that's right. If i recall correctly , as i have mentioned in my initial thread, in total 18 mil+ records. But when i run the first load ETL successfully loaded 12 million records, but didn't given any warnings or error about not loading the rest of the records. Is it how the ETL tool will behav...