Viewing 5 posts - 1 through 5 (of 5 total)
Hi,
You need to make sure you are returning something in your stored procedure.
Please see the following link for an example, under "Single Result Set".
March 24, 2017 at 1:34 am
SELECT IdTable.ID ,
ISNULL(SUM(DATEDIFF(DAY, ReportedDate ,CompletedDate)),0) AS DateDifference
FROM dbo.IDTable IdTable
LEFT JOIN dbo.ReportTable diff ON diff.ID = IdTable.ID
GROUP BY IdTable.ID
March 12, 2017 at 11:49 pm
Hi,
You can have a look at the following links:
https://technet.microsoft.com/en-us/library/ms175528(v=sql.105).aspx
http://www.sqlskills.com/blogs/kimberly/prepared-statements-and-caching/
I hope these help.
August 25, 2016 at 2:33 am
What I'd like to know is how did it get this way? This is a desktop computer which I do regularly turn off to open it up and blow out...
August 10, 2016 at 5:19 am
You can check that the SQL Server service is running in SQL Server Configuration Manager.
August 8, 2016 at 1:27 am
Viewing 5 posts - 1 through 5 (of 5 total)