Viewing 15 posts - 2,356 through 2,370 (of 6,486 total)
I'll second the "upgrade to 2005" opinion. That being said, once you DO, consider changing the behavior to take in a SINGLE "large" XML with all of the records...
October 29, 2008 at 10:40 am
A few thoughts:
- The point of being in FULL recovery is to do point in time restores. If you DON'T want to do point in time restores, then...
October 29, 2008 at 10:35 am
The caveat I usually have with the NOEXPAND hint is about the same as I would with most hints like that: sometimes they hurt more than they help. In...
October 29, 2008 at 10:21 am
Keep in mind that you may find that "compatibility" extends only to the client tools and main database engine components if you do NOT have "professional" (or in Vista's case...
October 28, 2008 at 9:12 pm
Without some examples and possibly the offending code - it's probably going to be tough to see what the issue is. Can you post some specifics?
Also - what build...
October 28, 2008 at 5:18 pm
An UPDATE is going to cause an exclusive lock no matter what. Of course - it should be only for the length of time it takes to actually update...
October 23, 2008 at 10:22 am
Unless I'm missing something, you're setting up a query that ultimately can't be optimized using regular indexes.
Indexing isn't going to help when you're doing a WHERE clause with a leading...
October 23, 2008 at 10:17 am
ALZDBA (10/22/2008)
rbarryyoung (10/22/2008)
At my blog (in my signature, below) you will find my slide set and code examples of traps to avoid when setting up service Broker.
Very nice presentation indeed...
October 22, 2008 at 3:24 pm
roger.plowman (10/22/2008)
Even with scripting languages...
October 22, 2008 at 10:18 am
Jeff Moden (10/21/2008)
Shifting gears a bit here... What a PITA.... I hate it when they do stuff like...
October 21, 2008 at 7:13 pm
Since you're not showing some fields you're using hte group by - there's no obvious way to resolve the duplicates. The bottom line is that you need to come...
October 21, 2008 at 6:49 pm
Jeff Moden (10/20/2008)
CREATE TRIGGER tr_your_trigger_name
ON [YourTable]
FOR INSERT,UPDATE
AS
IF @@ROWCOUNT =...
October 21, 2008 at 6:42 pm
Actually - that kind of pace is what you'd expect on a continuous integration scenario. At least to all environments except for Prod (where you probably want it a...
October 21, 2008 at 3:27 pm
There's no hard and fast rule about never using IN, so be careful when you see such absolutes being advanced. In 2005 especially - take a look at the...
October 21, 2008 at 3:21 pm
You should be able to go into IIS admin, and just reset the web folder this is based on to "anonymous access". Keep in mind that this may get...
October 20, 2008 at 3:29 pm
Viewing 15 posts - 2,356 through 2,370 (of 6,486 total)