Search found 1215 matches

by narasimha
Wed Jan 07, 2009 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove duplicate from a file on local
Replies: 4
Views: 2069

Depends on how huge it is ...
Try downloading a free version of TextPad.
There is a feature to sort the delete duplicate lines.
by narasimha
Tue Jan 06, 2009 6:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: analyze.shm
Replies: 27
Views: 11841

attu wrote: No. of groups (modulus) .... 12003 current ( minimum 1, 0 empty,
3896 overflowed, 1 badly )
Not sure what the meaning of "badly" is in the above context?
by narasimha
Tue Jan 06, 2009 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: analyze.shm
Replies: 27
Views: 11841

attu,

That would depend on your requirement.
There is a small application called HFC.exe available on your Datastage Installation CD. This can help you tune your hashed file.
by narasimha
Tue Jan 06, 2009 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: analyze.shm
Replies: 27
Views: 11841

First establish a pointer in the VOC by issuing the command

Code: Select all

SETFILE /dsadm/hash/myhashfile myhashfile;
Next

Code: Select all

ANALYZE.FILE myhashfile;
by narasimha
Tue Jan 06, 2009 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine locked
Replies: 10
Views: 3256

As already pointed by Craig, you don't need to delete the job logs.
If you are able to open your job, you should be good now, enjoy!
by narasimha
Tue Jan 06, 2009 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine locked
Replies: 10
Views: 3256

Re: routine locked

reachmexyz wrote: So in the director, i opened the clean up resources and tried to logout the process. How many times i do it still show up.
Try logging in as admin and repeat this process.
by narasimha
Mon May 19, 2008 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating hashed file takes too long
Replies: 11
Views: 4862

To test if the hashed file is the real culprit - split your job into two.
First job - Write your output into a sequential file.
Second job - Read from the sequential file and write to the hashed file.
This way you can identify, whether its your job design or the hashed file is the bottleneck.
by narasimha
Wed May 07, 2008 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: a non-numeric character was found where a numeric was expect
Replies: 12
Views: 12070

Re: a non-numeric character was found where a numeric was ex

satyame171 wrote: "a non-numeric character was found where a numeric was expected" .
The solution is in your error message. You might be trying to insert a non-numeric character where a numeric character was expected.
Check for consistency in your source data, see if you need to do any conversions.
by narasimha
Wed May 07, 2008 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to import ODBC table definitions
Replies: 3
Views: 2789

I would start by looking for the database entries in the uvodbc.config and .odbc.ini file
by narasimha
Wed May 07, 2008 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Division
Replies: 2
Views: 1362

For starters - check your Precision and Scale values.
by narasimha
Wed May 07, 2008 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using database sequence
Replies: 10
Views: 3103

Delete the column id and use the below query.

Code: Select all

INSERT INTO MYSCHEMA.TEST1 (id,name) VALUES (NEXTVAL FOR MYSCHEMMA.X_SEQ,:1)
by narasimha
Wed May 07, 2008 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring to grab last three
Replies: 4
Views: 1382

Assuming '%' is your delimiter, use

Code: Select all

Field(Arg1,'%',3)
by narasimha
Wed May 07, 2008 3:16 pm
Forum: General
Topic: DUAL MONITOR EDIT DERIVATION ERROR
Replies: 2
Views: 5276

I second your finding. I just got curious and checked it out with my similar setup.
by narasimha
Wed May 07, 2008 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: source with no date column and target is a sequential file
Replies: 4
Views: 2304

Ray meant, that you need to handle the NULL's.
Check out some of the NULL Handling functions available.
by narasimha
Wed May 07, 2008 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring to grab last three
Replies: 4
Views: 1382

Right(Arg1,3)
Or did I miss something from your requirement?