Search found 37 matches

by dsa
Sat Jan 19, 2013 12:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between 2 dates
Replies: 2
Views: 2038

Thanks Craig. It helped.
by dsa
Sat Jan 19, 2013 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between 2 dates
Replies: 2
Views: 2038

Difference between 2 dates

Hi,

I need to get number of days between two dates in transformer. One of them is having format: 12/25/2009 and other one is like 1/21/2000 12:00:00.000000 AM.

Basically I need to implement TRUNC(DATE) functionality of Oracle.
by dsa
Tue Jan 11, 2011 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strings with Quotes in Oracle Connector-Stage
Replies: 6
Views: 7775

chulett wrote:Escape the quotes. What actually works seems to vary with people and their specific version, but the first thing I'd try would be the standard "" if "quoting the quotes" didn't work for you.
Could you please explain a bit more how did you achieve it?
by dsa
Thu Jan 06, 2011 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MONTH & YEAR FROM DATE
Replies: 10
Views: 5667

ray.wurlod wrote:

Code: Select all

Right("00":MonthFromDate(InLink.TheDate) : "-" : Right(YearFromDate(InLink.TheDate),2)
...
Ray,

Should we use:

Right("00":MonthFromDate(InLink.TheDate),2) : "-" : Right(YearFromDate(InLink.TheDate),2)

??? as the requirement is MM-YY?
by dsa
Wed Jan 05, 2011 6:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage paralle job hanging
Replies: 4
Views: 3215

Hi,

This topic has ben marked as resolved. Could you please tell me how did you resolve it?
by dsa
Wed Jan 05, 2011 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Error Partitions...
Replies: 7
Views: 6173

chulett wrote:Space issue?
Hi Craig,

I was just wondering how did you identify that it was a space issue?
by dsa
Sun Nov 28, 2010 2:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to reference input columns listed in schema file
Replies: 7
Views: 4297

Just declare "dollar_cd" in the input link of the transform stage with the appropriate data type length and then you can work with that column, assuming that it is being delivered via RCP. You can che ... Hi Arndw, Do we really have to declare it again as we already have RCP enabled, so i...
by dsa
Sun Nov 28, 2010 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Unix script in parallel from multiple jobs
Replies: 4
Views: 3483

Hi,

You have marked this topic as resolved. Could you please let us know how did you make sure that deadlock situation doesn't come?
by dsa
Fri Oct 15, 2010 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: self join
Replies: 4
Views: 2942

got it

thanks!!!
by dsa
Fri Oct 15, 2010 11:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: self join
Replies: 4
Views: 2942

I think merge and reject would do it.... I am not sure why funnel ad aggregator are needed.
by dsa
Fri Oct 15, 2010 11:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join & lookup
Replies: 9
Views: 3633

Thanks for clearing my doubts !!!
by dsa
Fri Oct 15, 2010 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: self join
Replies: 4
Views: 2942

self join

Hi, Suppose I have data which has 3 columns - emp_id, emp_name and mgr_id where mgr_i is emp's manager's id. I need to know how many employees are there who does not manage anyone. One approach might be self join but is anybody having any idea how it can be implemented in datastage without using sel...
by dsa
Fri Oct 15, 2010 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join & lookup
Replies: 9
Views: 3633

oh

so join uses permanent memory which is also not resource disk?
by dsa
Fri Oct 15, 2010 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deleting datasets
Replies: 2
Views: 1923

deleting datasets

Hi All,

If I need to delete a dataset (data file as well as header file what should be given in orchadmin command?

orchadmin rm dataset_name.ds?

would this delete both of them?