Search found 1724 matches

by priyadarshikunal
Tue Sep 22, 2015 4:57 am
Forum: General
Topic: java.io.IOException error while installing Data stage 8.5
Replies: 2
Views: 2136

did you change the JAVA_HOME or did you install any other software which changes JAVA_HOME?

You should look at the pre-requisites as well thoroughly.
by priyadarshikunal
Wed Sep 09, 2015 11:00 pm
Forum: General
Topic: Is there a way to access the purged datastage logs ?
Replies: 3
Views: 2441

ArndW wrote:Once the log entries are removed they are permanently deleted and cannot be retrieved. ...
Unless you have a backup of that file, folder, file system or entire system. :wink:
by priyadarshikunal
Wed Sep 09, 2015 10:32 pm
Forum: General
Topic: Competitor for DataStage?
Replies: 8
Views: 4772

:lol:
by priyadarshikunal
Wed Sep 09, 2015 10:29 pm
Forum: General
Topic: Job Import issue
Replies: 6
Views: 2397

How are you importing those jobs? are you able to connect via designer?
by priyadarshikunal
Thu Aug 27, 2015 6:57 am
Forum: General
Topic: Job sequence scenario
Replies: 10
Views: 3882

you can check for job status of all upstream jobs in nested condition. Use unconditional triggers connected to sequencer (ALL) and check for job status for all 3 jobs in nested condition. You can put all permutation combination in the condition there.
by priyadarshikunal
Thu Aug 27, 2015 6:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multibyte Problem - Special Character - Oracle 11g
Replies: 6
Views: 4393

did you specify whether to use byte or char in oracle ddl? There are only two things here which seems to be causing the issue, rkashyap already mentioned one. And second is database, since you mentioned in your last post that you are using dev IIS, then only thing that changed is database, so where ...
by priyadarshikunal
Thu Aug 27, 2015 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Return values if they have a space ' ' ELSE don't return it
Replies: 10
Views: 4031

with a little correction

Code: Select all

If Index(lnk_Cast.BASEBALL," ",1) then <space found logic> else <space not found logic>

one should be "space not found logic" as it is an if-else block :wink:
by priyadarshikunal
Thu Aug 27, 2015 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: AlNum Function Giving Me Headaches
Replies: 4
Views: 2421

as per the expression you posted if the first character of the string is alpha numeric and the string is more than one character long then setnull() else take last 9 characters. which doesn't sound same as the example you provided. Can you be more clear on requirement?
by priyadarshikunal
Thu Aug 27, 2015 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multibyte Problem - Special Character - Oracle 11g
Replies: 6
Views: 4393

Also check If the column data type is defined as char or byte

i.e. columnA varchar2(20 char) or columnA varchar2(20 byte), you can also check what is the value defined for nls_length_semantics in oracle.
by priyadarshikunal
Sun Aug 23, 2015 5:12 am
Forum: General
Topic: Infosphere Data Architect Installation
Replies: 5
Views: 2854

Virtual machines do provide hardware independence and partitioning of resources for effective utilization but at a penalty of around 10% overhead. For CPU/IO intensive products such as Information server and databases, if VM needs to be used, I ask them to add 20% extra resources (hardware). You may...
by priyadarshikunal
Thu Aug 20, 2015 5:21 am
Forum: General
Topic: PVU Comparability of AIX vs Linux on 11.3.1 (or any version)
Replies: 10
Views: 6877

Do check the PVU calculator on IBM website on how the PVU calculated per core of different type of processors.
by priyadarshikunal
Thu Aug 20, 2015 4:36 am
Forum: General
Topic: Login Screen Never Appears
Replies: 4
Views: 3414

so, are you using a batch script to provide the credential? Else atleast the login screen should appear, even though It may just disappear after you provide the credentials.
by priyadarshikunal
Thu Aug 20, 2015 4:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejecting data without any logic from transformer to seqfile
Replies: 6
Views: 2374

Check the link order. Otherwise link should be last one.
by priyadarshikunal
Wed Aug 19, 2015 1:01 am
Forum: IBM QualityStage
Topic: NLS Map for Special Characters
Replies: 9
Views: 10084

can you get the hex dump of those characters?
by priyadarshikunal
Wed Aug 19, 2015 12:55 am
Forum: General
Topic: Login Screen Never Appears
Replies: 4
Views: 3414

If you have a low spec machine with less RAM or the machine is overly utilized it may take a lot of time for second screen to appear. Check DSDesign.exe in task manager, do you see increase in RAM usage of that process? which will mean that, it is still working to get resources. Else what rkashyap m...