Viewing 15 posts - 46,336 through 46,350 (of 59,095 total)
Or, you can do something similar to what's in the following link...
http://www.mssqltips.com/tip.asp?tip=1643
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:16 am
feodon (12/29/2008)
What if we have a more complicated text ,
It worked with simple texts ,
but when I copied fore...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:10 am
Ok... there's a couple of problems with that... first, you're updating 3 of the 4 indexes on the table. Like I said, that's gonna slow things down quite a...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 5:05 am
Huh... on my machine, WHERE EXISTS ties the INNER JOIN. Guess it goes to show... "It Depends".
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 4:56 am
Don't waste your time changing that code from temp tables to permanent tables. The real problem is that it has a cursor in it that processes a wad of...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 29, 2008 at 4:54 am
Christian Buettner (12/28/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 6:11 pm
feodon (12/28/2008)
I have 2 questions from you , and I think that these are similar to each other from different aspects
At first
How can we insert a big text...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 2:33 pm
SQL Server uses BCP to do replication... that should be the answer right there. And, if you use the NATIVE mode (like replication does), you don't have to worry...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 2:31 pm
Thanks, Chris. Yeah, I know it looks unusual... WITH is the only place where a semi-colon is actually required before something and since I don't use semi-colons anywhere else...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 1:10 pm
If you don't want any of the jobs to run, just stop the agent.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 12:37 pm
Heh... of course, there's gonna be as many ideas as there are people on the forum. And, if you really want to make it simple, just put all the...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 12:05 pm
Heh... that's why I wrote the test code... I don't have to say *may* that way. 😛
I just didn't want people to walk away from this post thinking that the...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 12:01 pm
But, it's not... run the test code I made.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 10:30 am
WHERE IN and WHERE EXISTS naturally do the equivalent of a DISTINCT and both have identical execution plans and both take the same amount of time and resources to execute...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 10:17 am
That's a pretty good layout... I like that. Especially when you make them all have the same layout. And, although it hasn't been mentioned, there is no need...
--Jeff Moden
Change is inevitable... Change for the better is not.
December 28, 2008 at 9:05 am
Viewing 15 posts - 46,336 through 46,350 (of 59,095 total)