COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => Topic started by: BIsrik on 22 Sep 2005 06:02:03 AM

Title: [solved]time from date-time and from string
Post by: BIsrik on 22 Sep 2005 06:02:03 AM
Hi is i want to extract time part from the date-time datatype in RS and also convert a string like '08:00' to time. How will i do it...

Actually i want to compare the extracted time part of a date-time column with a time converted from a string as shown above..

the expression would be like this...

Ctime(date-time) = Ctime('08:00')

Any help for this..

Srik

Title: Re: time from date-time and from string
Post by: sir_jeroen on 22 Sep 2005 06:08:17 AM
what's the underlying database?

With Oracle it's:
TO_CHAR(SYSDATE, 'HH:MM:SS') AS TimeAsText
Title: Re: time from date-time and from string
Post by: BIsrik on 22 Sep 2005 07:49:00 AM
its oracle. Then what shall i use for converting a string like 08:00 to time. Basically i want to do similar to this one..Ctime(Datetime column)=Ctime('08:00')

Srik
Title: Re: time from date-time and from string
Post by: sir_jeroen on 22 Sep 2005 09:52:59 AM
Have you tried: TO_DATE(TO_CHAR(SYSDATE, 'HH:MM:SS'),'HH:MM:SS' )?

Look in:


http://www.techonthenet.com/oracle/functions/

Could you plz... mark this topic as closed when it's been solved
Title: Re: time from date-time and from string
Post by: BIsrik on 23 Sep 2005 01:29:48 AM
yeah i have tried that b4. During to_date function RN gives an error saying there is no valid month..

Srik
Title: Re: time from date-time and from string
Post by: Draoued on 23 Sep 2005 02:55:33 AM
Try with MI instead of MM.

so TO_CHAR(SYSDATE, 'HH24:MI')
Title: Re: time from date-time and from string
Post by: BIsrik on 23 Sep 2005 03:00:11 AM
extacting time from date-time is achieved. But how to convert it to a time format..I am not getting an alternative for that...help me on that...

Srik
Title: Re: time from date-time and from string
Post by: Draoued on 23 Sep 2005 03:21:40 AM
In order to be sure I understand properly your need.
You have some kind of prompt where User can type in a time
and then filter based on that .


Have you tried this :
TO_CHAR(SYSDATE, 'HH24MI')  = #prompt("Time")#

Then for the TIME prompt you put a Format or a mask , which displays it with the ":" in the middle, but don't use it for the filtering.
Then you are filtering on a String and not Time field.

select TO_CHAR(SYSDATE, 'HH24MI') from dual
This returns   1457 as string.
Title: Re: time from date-time and from string
Post by: BIsrik on 26 Sep 2005 04:24:08 AM
ok you can consider that way also. Actually there is no prompt for time. There is a field of date-time datatype. I need to extract the time from that and compare with a time [which is constant value]. I can't do the comparison on the charecters as they might tend to problem.

For this reason i want to convert the string to a time field. we have function Ctime which handles that.. How should that logic be applied in the RN...

Srik
Title: Re: time from date-time and from string
Post by: BIsrik on 26 Sep 2005 05:48:49 AM
Ok i got the way of achieving this...I first took the date part from the date-time, concated with the constant string and converted it back to the date-time. i then added the filters..

Thanks for all ur suggestions.

Srik