COGNOiSe.com - The IBM Cognos Community

IBM Cognos 10 Platform => Cognos 10 BI => Report Studio => Topic started by: ohiocort on 12 Nov 2013 01:46:03 PM

Title: Comparing two string dates (with time)
Post by: ohiocort on 12 Nov 2013 01:46:03 PM
I'm not sure how to take two string fields, both with date and time and get the difference. I've been looking around the forums and see how to cast a string to date YYYYMMDD but not sure how to take that one step further and include the time in that conversion.

Thoughts? Thank you, -Cort
Title: Re: Comparing two string dates (with time)
Post by: adik on 12 Nov 2013 02:26:33 PM
if you are using an oracle database you can use to_date([element], 'yyyymmdd') and then use the cognos function _days_between(day1, day2) to get the number of days between them
Title: Re: Comparing two string dates (with time)
Post by: ohiocort on 12 Nov 2013 02:48:16 PM
Thank you for the quick reply. Let me give some more details:

I have two textBlob data type fields that contain comments and other information but I can use an additional field to filter and make sure that it is two dates.

OLD VALUE                    NEW VALUE
1970-01-01 00:00:46    1970-01-01 00:08:14

Once I have the filter showing only date values, I wanted to get the time difference between the two but am unable to convert this to datetime.

Stuck In Cognos,
Cort
Title: Re: Comparing two string dates (with time)
Post by: adik on 13 Nov 2013 02:49:56 PM
so you want to display the difference as a date format? or you want to be able to compute the difference between the two date fields?
Title: Re: Comparing two string dates (with time)
Post by: TheCognosDave on 13 Nov 2013 02:54:43 PM
In SQL Server I'd get the difference in seconds by using the datediff() function like this:

SELECT Datediff(second,[NEW VALUE],[OLD VALUE]) as difference_in_seconds

Good luck !  ;)
Title: Re: Comparing two string dates (with time)
Post by: ohiocort on 19 Nov 2013 03:32:17 PM
My end goal is to compute the time difference (seconds or minutes) between these two text dates. So I can display that on the report.

Thanks for the help so far.
Title: Re: Comparing two string dates (with time)
Post by: Lynn on 20 Nov 2013 08:16:43 AM
You can cast each of your strings to a TIMESTAMP data type. Then create a query calculation that subtracts the two. You will get an interval type item that displays the difference. In your example it appears as "7 minutes 28 seconds", but it will vary depending on the two timestamps. If you select the item in the layout and use the data format for interval you can customize the display.

The attached XML spec is from the GO Sales (query) sample package, but I just created two query items with your example dates hard coded as strings to illustrate.

Hope this helps!
Title: Re: Comparing two string dates (with time)
Post by: ohiocort on 21 Nov 2013 03:38:06 PM
Thank you all for the help and suggestions. My first problem was dealing with a LOB data type. I wasn't able to cast it to char or date or anything. I ended up changing the datatype in the database to string so now I am able to convert it to a timestamp to get the difference between the two dates! 8)