Viewing 15 posts - 361 through 375 (of 1,086 total)
ROFLOL
(I will note that for future reference...)
October 20, 2005 at 5:35 pm
SELECT CONVERT( varchar, SomeDate, 101) FROM SomeTable. This uses a function as does Remi's [RGR'us] and it is SET BASED.
Think of this solution in the same manner... (ssshhhh..., don't mention...
October 20, 2005 at 4:41 pm
I am a bit lost on this statement:
--add rabies tag service
EXEC @return = AddService @animalID=@animalID, @serviceID=@serviceID
Might you want to be using
--add rabies tag service
SELECT @return = AddService
October 20, 2005 at 4:35 pm
Tested it and it needed a couple of 'slight' tweaks:
DECLARE @TableSource TABLE( [File] varchar(5),
Extension varchar(5),
Version integer,
Type varchar(10))
INSERT INTO @TableSource
SELECT 'AA',...
October 20, 2005 at 3:35 pm
See if this helps....
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=228725#bm229100
October 20, 2005 at 3:07 pm
AAAAAgreed! I cannot believe that people in positions of authority often write so poorly! Obviously, they are not checking their own work, yet they will most assuredly, (I checked this...
October 20, 2005 at 2:30 pm
Yeah..., I did kind of sidetrack us. I agree with RGR'us.
October 20, 2005 at 1:50 pm
OMG! Was it that long ago? I am getting old...
I was in Raleigh, (250 miles inland) and it whalopped us! We had...
October 20, 2005 at 1:48 pm
Oh...., so devout aetheists? Are they in the same category?
October 20, 2005 at 1:44 pm
Thanks PW. I am set in my ways did not know this... I will use this approach now...
October 20, 2005 at 9:56 am
Why did you chose Dynamic? Try Fast_Forward and see if it works....
(made a quick read about Dynamic in BOL and not sure if the Commit Transaction is causing the...
October 20, 2005 at 9:54 am
Defines the attributes of a Transact-SQL server cursor, such as its scrolling behavior and the query used to build the result set on which the cursor operates. DECLARE...
October 20, 2005 at 9:40 am
Except I have it backwards... Oh, dopey me....
Glad this helps...
October 20, 2005 at 9:32 am
Post the code for the Cursor, it may be declared as non-compliant with what you want to do. (My guess is, you may not need a Cursor).
October 20, 2005 at 9:27 am
Viewing 15 posts - 361 through 375 (of 1,086 total)