Search found 358 matches

by loveojha2
Mon Feb 27, 2006 2:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: @NULL displayed in red in transformer
Replies: 5
Views: 1298

Check your [serveronly-system-variables] inside DSParams,
Can you see @NULL in that list,
If it is not there then add it there.
by loveojha2
Wed Feb 22, 2006 9:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Anybody working in Peoplesoft Upgrade Project
Replies: 4
Views: 2135

Pls find the query below: 1 select count(*) from table where to_char(dttm_sec)>to_char('2005-03-30 14:26:51'); [/size] Should be select count(*) from table where to_char(dttm_sec,'yyyy-mm-dd hh24:mi:ss')>to_char('2005-03-30 14:26:51','yyyy-mm-dd hh24:mi:ss'); 2 select count(*) from PS_LEDGER where ...
by loveojha2
Tue Feb 21, 2006 9:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Anybody working in Peoplesoft Upgrade Project
Replies: 4
Views: 2135

Now the where clause given in the source DRS looks like this DTTM_SEC > %DateTimeIn('#LastModifiedDateTime#')[b/] But if I give like this it's throwing an error saying ORA-01841: (full) year must be between -4713 and +9999, and not be 0 Can you please paste what is the value that is coming from #La...
by loveojha2
Wed Feb 15, 2006 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prob in Fixed width generation
Replies: 4
Views: 1349

ArndW wrote:try using an empty string ("") instead of the @NULL value.
May be a Zero would be more appropriate, since he is using it in an aggregator. :wink:
by loveojha2
Wed Feb 15, 2006 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL query with IN clause
Replies: 14
Views: 4673

Then you can try doing it through a named pipe. :lol:
by loveojha2
Wed Feb 15, 2006 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL query with IN clause
Replies: 14
Views: 4673

You can try replacing the comma(,) with a Char(10):Char(13)(which is CRLF) and writing it to a sequential file and reading it back into a Hashed file and using Hashed file for lookup.
by loveojha2
Tue Feb 14, 2006 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL query with IN clause
Replies: 14
Views: 4673

I think you are using a Lookup (for the values coming from XML)

In that case

Code: Select all

select * from emp where empname in (?)
should be

Code: Select all

select * from emp where empname =?
by loveojha2
Sun Feb 12, 2006 9:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob timeout issue
Replies: 5
Views: 5777

81002 - Looks like its not a timeout issue, it is probably a issue related with Broken Connection.


Used

Code: Select all

SELECT * FROM SYS.MESSAGE WHERE @ID = '081002';
by loveojha2
Fri Feb 10, 2006 12:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MailNotification other than jobstatus 1
Replies: 6
Views: 1480

Use the following trigger condition

Code: Select all

JobActivityName.$JobStatus <>1
(Custom)

This should work fine.
by loveojha2
Tue Feb 07, 2006 11:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Date stored in Shared container
Replies: 8
Views: 2135

Hey Anand as I said it would work well even with %datetimein('').
No need for going into Routine.

In fact

Code: Select all

%DateTimeIn('0000-00-00 00:00:00') > %DateTimeIn('')
is true.

So it is sure to run for all the rows (Initially), if it is coming as ''.
by loveojha2
Tue Feb 07, 2006 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Date stored in Shared container
Replies: 8
Views: 2135

Re: Problem with Date in Shared container

The last modified date is stored in the shared container. We have a where clause in the source DRS as Dttm_stamp_sec> %datetimein(#LastModifiedDateTime#) I need to convert the date of %datetimein(#LastModifiedDateTime#) to 'yyyy-mm-dd hh:mm:ss' format As i am not able to do it, we are getting error...
by loveojha2
Fri Feb 03, 2006 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the result of commands executed through Admin.
Replies: 3
Views: 1404

How to get the result of commands executed through Admin.

Hi All, Thanks for the help so far. :) Is there any direct way provided by Asential through which we can get the results from the commands executed at the Datastage Adminstrator within a file or atleast within the clipboard. If there is not, is there any trick by which we can achieve the same. Thanks
by loveojha2
Mon Jan 30, 2006 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Joining A sequential file and Database table
Replies: 11
Views: 4058

raj_konig wrote:Thanks Arnd.

But I am not trying to lookup but to join.

And even tried Merge. BU this is not accepting any inputs.

rajesh
But what is your Join criteria or is it like a cartesian product?