Viewing 15 posts - 106 through 120 (of 286 total)
Thanks for the question.
I did wonder if going beyond the bound of the int datatype would cause it to fall over, but no. You have to go far beyond that:
DECLARE...
March 29, 2011 at 1:57 am
rmechaber (3/28/2011)
I had always used the ANSI syntax thinking it was multilanguage, only to discover later that it wasn't. The reason I'd never noticed is probably that almost all our...
March 28, 2011 at 7:38 am
rmechaber (3/28/2011)
I had always used the ANSI syntax thinking it was multilanguage, only to discover later that it wasn't. The reason I'd never noticed is probably that almost all our...
March 28, 2011 at 7:29 am
rmechaber (3/28/2011)
Tom Thomson: it would be interesting if you still have access to those databases to poke around...
March 28, 2011 at 6:57 am
rmechaber (3/28/2011)
I'd still like to see someone try this out on a SQL 2000 box:
SET LANGUAGE british
SELECT CAST('2003-02-28' AS datetime)
Similar error: "The conversion of a char data type to a...
March 28, 2011 at 6:25 am
Donny-1012435 (3/28/2011)
I have SQL 2008, but got the Incorrect Syntax near '=' error.Btw, I have both 2005 and 2008 on my PC.
Perhaps your database is in 2005 compatibility mode? Or...
March 28, 2011 at 3:51 am
Christian Buettner-167247 (3/28/2011)
Tom.Thomson (3/27/2011)
March 28, 2011 at 3:24 am
Nice question, thanks. Took me a while to work out what was being asked!
March 28, 2011 at 1:30 am
Thanks for the question. Reading the article, I now understand RAID 2, 3 and 4 as well.
But won't we all be using ZFS in a few years anyway? 😉
March 25, 2011 at 3:40 am
John.Liu (3/13/2011)
March 24, 2011 at 9:34 am
I've tried it out locally, and get about the same time for all of them (< 1s)
The last 2 have identical query plans apart from the variable declaration and identical...
March 24, 2011 at 9:29 am
Paul_Harvey (3/24/2011)
Oh that's brillant! And it works perfectly.Thanks very much for your help on this.
🙂
No problem, glad to help 🙂
March 24, 2011 at 7:37 am
Paul_Harvey (3/24/2011)
ALTER TRIGGER [dbo].[trClearBounced]
ON [dbo].[Contact]
AFTER UPDATE
AS
IF ( UPDATE (Email) )
BEGIN
Update contact
SET bounced = 0
FROM...
March 24, 2011 at 7:21 am
Paul_Harvey (3/24/2011)
Great. Thanks for the pointer. I'll try to get the trigger working now.Wish me luck!
Luck's got nothing to do with it. Armed with BOL and these forums,...
March 24, 2011 at 6:54 am
You should be able to use an update trigger to do what you want. You'd use the IF UPDATE(<column_name>) syntax to only set the flag if the email column was...
March 24, 2011 at 6:19 am
Viewing 15 posts - 106 through 120 (of 286 total)