Search found 5168 matches

by kumar_s
Mon Mar 27, 2006 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reset the job and run
Replies: 6
Views: 1063

A question with the answer!
Yes the option 'reset if required and run' will help you to reset the aborted job if the sequence made to rerun.
Do a search on this topic or go through the Datastage Designer manual.
by kumar_s
Mon Mar 27, 2006 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX job aborted
Replies: 8
Views: 5409

Was your server overloaded?
How many jobs were triggered parallely at that moment?
by kumar_s
Mon Mar 27, 2006 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pros and cons of using Transactional Model for DW
Replies: 3
Views: 1127

Queries used from OLAP tools used for Business Analysis purpose might require would become costly. Sometimes not feasible. Queries need to trace hell lot of informations for getting a very simple answer for a business question. You can save lot of money, material , man power and resource in spending...
by kumar_s
Mon Mar 27, 2006 1:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unknown client library
Replies: 16
Views: 4151

What is the error you get when you try to view from the client?
What you mean 'view data on server' is it you are trying from the client where the server resides?
by kumar_s
Mon Mar 27, 2006 1:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Env Variables for Default Conversion
Replies: 2
Views: 864

Unhandled String truncation should through out an waring. Was the message been handled?
by kumar_s
Mon Mar 27, 2006 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting a dataset
Replies: 15
Views: 14470

Is it for HP-UX or AIX?
by kumar_s
Mon Mar 27, 2006 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: invalid external function
Replies: 3
Views: 1997

What is the Object type you specified.
Object or Library?
Assign to Object and give you object file with the path in the library path.
by kumar_s
Sun Mar 26, 2006 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX installation
Replies: 2
Views: 732

Re: PX installation

dssiddu wrote:Hi all

Could you please tell me how to install Parallel extender on standalone machine having Windows Env. And also know which are the other softwares(c++ complier or else vb.net) required for this.

treat urgent..

Advance thankfull
:idea:


Its quite cheap. 500$ per instant installaion :wink:
by kumar_s
Sun Mar 26, 2006 10:56 pm
Forum: General
Topic: Recompiling Jobs for All Projects
Replies: 2
Views: 2446

'dscc' from client end can be used for the automated purpose.
It would be enough to get the status of the jobs which are in 'running' state and recompile only those.
by kumar_s
Sat Mar 25, 2006 10:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple source files single ETL
Replies: 33
Views: 8463

For such case, the following command can be used.

Code: Select all

head -$(expr $(wc -l $FILE | awk '{ print $1 }') \- 1) $FILE


It gives the file without trailer.

tail +1 gives file with out header. Both commands can be piped.
by kumar_s
Sat Mar 25, 2006 5:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs aborted in the middle of dataloading into warehouse
Replies: 6
Views: 2383

First try to load into a sequential file and make sure that you dont have any constraints set in your jobs. Like 'Abort after' or 'Read first n'... If no, check the database if you can able to load the same set of data manually . Make sure after 5000 records, it doesnt violate any referntial constra...
by kumar_s
Sat Mar 25, 2006 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to integer
Replies: 15
Views: 4464

Use MantissaFromDecimal or need to pad the string of 0s to the left of the existing number manually after calculating the length (digint) of the existing number.
by kumar_s
Sat Mar 25, 2006 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove all spaces from a string
Replies: 7
Views: 2002

Sorry! In fact is substring() like that record_type:string[1] = substring(record_data,1,1) and I have this message : Error parsing modify adapter: Error in binding: Parsing parameters "" for conversion "string=substring[0,0](string)": Expected integer, got: <eof> Expected destination field selector...
by kumar_s
Sat Mar 25, 2006 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp with milliseconds in PX job
Replies: 5
Views: 1270

May I know is TZ environmential variable for PX?
Also I guess System() function is not a PX funciton.
by kumar_s
Sat Mar 25, 2006 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify function substring()
Replies: 3
Views: 1397

Try
record_type:string[1] = substring[1,1](record_data)