Search found 19 matches

by sribuz
Thu Dec 18, 2008 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to know more about performance tuning
Replies: 14
Views: 6144

[quote="kandyshandy"] Next question might be how to do this? Auto partitioning takes care of this in most of the stages but we might be forced to do hash partitioning for some cases where each partition may not have "likely" same no. of records. BTW, what are you trying to achiev...
by sribuz
Wed Dec 17, 2008 6:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to know more about performance tuning
Replies: 14
Views: 6144

Kumar_s, I understand you say.. Prefer single node config for simple design jobs like below.. text_file->transformer->database or database->copy->database which donot have much transformation. How can we increase the performance of jobs having simple design ? other than playing with array & tran...
by sribuz
Wed Nov 19, 2008 1:12 pm
Forum: General
Topic: replace string
Replies: 2
Views: 1543

You can find your answer in this Thread.
by sribuz
Mon Nov 17, 2008 7:26 pm
Forum: General
Topic: Premium Membership
Replies: 4
Views: 2600

Thanks Craig, [b]My second question was to only to know more about first question.[/b] And the thread I was looking was marked resolved and I doubt that new reply was added in between the the times I checked. I totally agree that premium account is only meant for viewing premium content and not for ...
by sribuz
Mon Nov 17, 2008 3:03 pm
Forum: General
Topic: Premium Membership
Replies: 4
Views: 2600

Is premium content marked replies really premium content.

I have a question related to premium content and donot want to start a new thread for this... 1) I have a premium account, I see the premium content marked on the side of the replies and I think few of those replies can be seen as a participant. I mean not all premium content marked replies are not ...
by sribuz
Tue Jan 15, 2008 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in Oracle Stage > dboptions
Replies: 9
Views: 3927

Got my problem Solved

Oracle Dbase password got expired and was in grace period.

Thanks for Helping.
by sribuz
Tue Jan 15, 2008 12:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Email Files From scheduled jobs
Replies: 1
Views: 1066

Email Files From scheduled jobs

Hi, I developed a job which creates a file with date appending its name. something like filename_2008-01-15.txt filename_2008-01-08.txt so on.. I have used a notification activity stage in sequence job and would like to attach these files. how do I do that ? I tried using Job parameter pram1 with va...
by sribuz
Tue Jan 08, 2008 12:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in Oracle Stage > dboptions
Replies: 9
Views: 3927

I should have thought #$EnvironmentVariable# is what's required - which would also explain the 'unexpected "$"' message. ... now I am getting error as Incorrect dboption list; it failed on Expected "," or "}", got: "#", line 1. when I run job again its giving...
by sribuz
Mon Jan 07, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in Oracle Stage > dboptions
Replies: 9
Views: 3927

Double check your password field. It shouldn't display anything like "#$password#"; it should always have something like "******" especailly for PX job. I defined password in environment variables and there its value is encrypted and displayed as ******* I am using that environm...
by sribuz
Mon Jan 07, 2008 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in Oracle Stage > dboptions
Replies: 9
Views: 3927

Minhajuddin wrote:$ is a special character and you can't use it just like that in your password.
The documentation mentions what you need to do when you have special characters in your password.
I am using evironment variable there, not '$' as a character in password.
by sribuz
Mon Jan 07, 2008 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in Oracle Stage > dboptions
Replies: 9
Views: 3927

error in Oracle Stage > dboptions

Hi, I created a job with Oracle stage as source in EE 7.5. In Oracle stage properties were set as Output>Connections>dboption mode>auto generated and I defined db password in environment variables. so it generated Connection>DB Options={user=username,password=#$password#} when I run the job it abort...
by sribuz
Thu Jan 03, 2008 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ftp
Replies: 5
Views: 2081

Hi, I am working on EE 7.5

can you tell me how to write script in unix to SFTP a file
by sribuz
Thu Dec 27, 2007 6:59 pm
Forum: General
Topic: New Year Wishes
Replies: 15
Views: 6438

Used like a wild card :wink:
by sribuz
Thu Dec 27, 2007 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the correct "CENTURY" if from 2-digit Y
Replies: 6
Views: 4486

yearcut off works

Thanks craig, I was having same problem with timestamp and after looking at your reply used %2000yy instead of %yy and got the correct output.
by sribuz
Wed Dec 26, 2007 3:17 pm
Forum: General
Topic: Deleting header of Data file In UNIX
Replies: 7
Views: 2820

Re: ArndW

ArndW wrote:I'm no sed expert, but you could put in

Code: Select all

sed -e 's/\o014/\o015/' -e "/Header Start/,/End Word/d"
...

Tried the sed command given by you, still deleting the record before the header.