Viewing 6 posts - 1 through 6 (of 6 total)
.Net 2005 introduces a much easier way of doing this... a SqlDataSource .
The SqlDataSource object allows you to retrieve the parameter data automatically. Here's how: Put a SqlDataSource object...
March 22, 2006 at 3:44 am
The best way to utilize a recordsets output from a stored procedure is through a function. I recommend that instead of having SP#1 call SP#2 for data, that SP#2 be...
September 14, 2005 at 12:07 am
This is a ramification of the sqlslammer fix which was applied by the early SP package. If you had no SP's applied, then SP4 would install seemlessly.
To resolve the error:...
September 11, 2005 at 9:44 pm
Yes, you are retrieving the data exactly as SQL Server has stored it physically on disk.
You can eliminate the problem by either:
a) When inserting the data, order it. So...
September 2, 2005 at 2:26 am
Could be the security setting are out of synch.
In Tools/Internet Options, Security tab. Move the "Security for this zone" verticle slider bar in any direction, then select "Default level".
...
September 2, 2005 at 2:18 am
Presuming you simply want to pass in one parameter you could do:
CREATE PROCEDURE dbo.SPName @v_Dt as datetime
AS
Select WhatEver from dbo.YourTable
where DateCol >= @v_Dt and DateCol < DATEADD(m, 1, @v_Dt)
September 2, 2005 at 2:11 am
Viewing 6 posts - 1 through 6 (of 6 total)