Viewing 15 posts - 361 through 375 (of 1,086 total)
ROFLOL
(I will note that for future reference...)
I wasn't born stupid - I had to study.
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...
I wasn't born stupid - I had to study.
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 I wasn't born stupid - I had to study.
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',...
I wasn't born stupid - I had to study.
October 20, 2005 at 3:35 pm
See if this helps....
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=228725#bm229100
I wasn't born stupid - I had to study.
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...
I wasn't born stupid - I had to study.
October 20, 2005 at 2:30 pm
Yeah..., I did kind of sidetrack us. I agree with RGR'us.
I wasn't born stupid - I had to study.
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...
I wasn't born stupid - I had to study.
October 20, 2005 at 1:48 pm
I wasn't born stupid - I had to study.
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...
I wasn't born stupid - I had to study.
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...
I wasn't born stupid - I had to study.
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...
I wasn't born stupid - I had to study.
October 20, 2005 at 9:40 am
Except I have it backwards... Oh, dopey me....
Glad this helps...
I wasn't born stupid - I had to study.
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).
I wasn't born stupid - I had to study.
October 20, 2005 at 9:27 am
Viewing 15 posts - 361 through 375 (of 1,086 total)