I am trying to run an update stored procedure that will add 1 revision to the
rev field and return the Value back to my Application. My number is
incrementing by 2 and not 1.
Here is my Stored Procedure
CREATE PROCEDURE dbo.sp_Update_file
@kbid big,
@filename nvarchar(50),
@rev big OU...
more >>
Hi,
I am trying to perform an interpolation of counts between event dates...my
data looks like this:
Event Date Count
1/1/06 13
1/17/06 9
2/3/06 7 etc...
The spacing of event date is not always equal thus I need to be able to do
something like this: ...
more >>
There is a sql function like this below:
Create Function dbo.abc
(@ParamOne decimal, @ParamTwo decimal)
RETURNS Bit
AS
BEGIN
DECLARE @Result bit
if abs(@ParamOne-@ParamTwo)<0.01
SET @Result=1
else
SET @Result=0
RETURN ...
more >>
Hi,
I've heard a rumour that the *= notation is no longer supported in SQL
Server 2005. I've searched through the knowledge base but can't find any
articles on it. If anybody who currently has 2005 could confirm whether it
is or isn't supported that would be great.
Thanks,
David.
...
more >>