Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 SSRS - Add a time to a date

Author  Topic 

sprotson
Yak Posting Veteran

75 Posts

Posted - 2013-01-14 : 05:17:36
I have a report that retrieves data from a stored procedure based on startdate (ie datetime format).

In the report I need to allow the user to choose two parameters, date and time.

Date is in datetime format and time is a string.

How do I combine these in SSRS to pass back to the stored procedure as datetime?

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-01-14 : 05:43:29
whats the format in which user enters time? as hh:mi:ss?

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

sprotson
Yak Posting Veteran

75 Posts

Posted - 2013-01-14 : 05:51:26
it is hh:mm format

I think I have managed to get it, but need to test against sample date.

I think it is - =cdate(Parameters!StartDate.Value & " " & Parameters!StartTime.Value)
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-01-14 : 05:55:15
whats the locale setting? if report language or browser locale settings are different from sql server setting passing dates like this can have issues. The safest way is to use convert function and convert dates to iso format before sending it as parameter to DB

see

http://visakhm.blogspot.in/2011/12/why-iso-format-is-recommended-while.html

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

sprotson
Yak Posting Veteran

75 Posts

Posted - 2013-01-14 : 06:04:11
Thanks, will look into that.

On another topic, is there a way to generate available values using an SQL query for a string of times?

00:00
00:05
00:10
etc

I don't fancy having to type in 24hrs of 5 minute intervals
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-01-14 : 06:34:12
quote:
Originally posted by sprotson

Thanks, will look into that.

On another topic, is there a way to generate available values using an SQL query for a string of times?

00:00
00:05
00:10
etc

I don't fancy having to type in 24hrs of 5 minute intervals


yes there's
see


;With CTE(N)
AS
(
SELECT 5
UNION ALL
SELECT N+5
FROM CTE
WHERE N+5<24*60
)

SELECT CONVERT(varchar(8),DATEADD(minute,N,0) ,108)
FROM CTE
OPTION (MAXRECURSION 0)



output
------------------------------
00:05:00
00:10:00
00:15:00
00:20:00
00:25:00
00:30:00
00:35:00
00:40:00
00:45:00
00:50:00
00:55:00
01:00:00
01:05:00
01:10:00
01:15:00
01:20:00
01:25:00
01:30:00
01:35:00
01:40:00
01:45:00
01:50:00
01:55:00
02:00:00
02:05:00
02:10:00
02:15:00
02:20:00
02:25:00
02:30:00
02:35:00
02:40:00
02:45:00
02:50:00
02:55:00
03:00:00
03:05:00
03:10:00
03:15:00
03:20:00
03:25:00
03:30:00
03:35:00
03:40:00
03:45:00
03:50:00
03:55:00
04:00:00
04:05:00
04:10:00
04:15:00
04:20:00
04:25:00
04:30:00
04:35:00
04:40:00
04:45:00
04:50:00
04:55:00
05:00:00
05:05:00
05:10:00
05:15:00
05:20:00
05:25:00
05:30:00
05:35:00
05:40:00
05:45:00
05:50:00
05:55:00
06:00:00
06:05:00
06:10:00
06:15:00
06:20:00
06:25:00
06:30:00
06:35:00
06:40:00
06:45:00
06:50:00
06:55:00
07:00:00
07:05:00
07:10:00
07:15:00
07:20:00
07:25:00
07:30:00
07:35:00
07:40:00
07:45:00
07:50:00
07:55:00
08:00:00
08:05:00
08:10:00
08:15:00
08:20:00
08:25:00
08:30:00
08:35:00
08:40:00
08:45:00
08:50:00
08:55:00
09:00:00
09:05:00
09:10:00
09:15:00
09:20:00
09:25:00
09:30:00
09:35:00
09:40:00
09:45:00
09:50:00
09:55:00
10:00:00
10:05:00
10:10:00
10:15:00
10:20:00
10:25:00
10:30:00
10:35:00
10:40:00
10:45:00
10:50:00
10:55:00
11:00:00
11:05:00
11:10:00
11:15:00
11:20:00
11:25:00
11:30:00
11:35:00
11:40:00
11:45:00
11:50:00
11:55:00
12:00:00
12:05:00
12:10:00
12:15:00
12:20:00
12:25:00
12:30:00
12:35:00
12:40:00
12:45:00
12:50:00
12:55:00
13:00:00
13:05:00
13:10:00
13:15:00
13:20:00
13:25:00
13:30:00
13:35:00
13:40:00
13:45:00
13:50:00
13:55:00
14:00:00
14:05:00
14:10:00
14:15:00
14:20:00
14:25:00
14:30:00
14:35:00
14:40:00
14:45:00
14:50:00
14:55:00
15:00:00
15:05:00
15:10:00
15:15:00
15:20:00
15:25:00
15:30:00
15:35:00
15:40:00
15:45:00
15:50:00
15:55:00
16:00:00
16:05:00
16:10:00
16:15:00
16:20:00
16:25:00
16:30:00
16:35:00
16:40:00
16:45:00
16:50:00
16:55:00
17:00:00
17:05:00
17:10:00
17:15:00
17:20:00
17:25:00
17:30:00
17:35:00
17:40:00
17:45:00
17:50:00
17:55:00
18:00:00
18:05:00
18:10:00
18:15:00
18:20:00
18:25:00
18:30:00
18:35:00
18:40:00
18:45:00
18:50:00
18:55:00
19:00:00
19:05:00
19:10:00
19:15:00
19:20:00
19:25:00
19:30:00
19:35:00
19:40:00
19:45:00
19:50:00
19:55:00
20:00:00
20:05:00
20:10:00
20:15:00
20:20:00
20:25:00
20:30:00
20:35:00
20:40:00
20:45:00
20:50:00
20:55:00
21:00:00
21:05:00
21:10:00
21:15:00
21:20:00
21:25:00
21:30:00
21:35:00
21:40:00
21:45:00
21:50:00
21:55:00
22:00:00
22:05:00
22:10:00
22:15:00
22:20:00
22:25:00
22:30:00
22:35:00
22:40:00
22:45:00
22:50:00
22:55:00
23:00:00
23:05:00
23:10:00
23:15:00
23:20:00
23:25:00
23:30:00
23:35:00
23:40:00
23:45:00
23:50:00
23:55:00



------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/
Go to Top of Page

sprotson
Yak Posting Veteran

75 Posts

Posted - 2013-01-14 : 07:01:39
Thanks
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2013-01-14 : 08:38:36
welcome

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -