Viewing 15 posts - 12,346 through 12,360 (of 14,953 total)
Don't use an Instead Of trigger for this. It will block legitimate inserts and updates, unless you code around them. Much easier to do in an After/For trigger.
CREATE...
August 11, 2008 at 8:56 am
usman.tanveer (8/8/2008)
What if A1 is not present in the query?SELECT X1
FROM Temp
WHERE C1 = Value
I just did this test:
create table #T (
C1 int,
C2 int,
C3 int,
X1 int,
X2 int)
create index IDX_T_1 on...
August 11, 2008 at 8:46 am
Do you have access to the execution plans from 2000? If so, comparing the two plans would be the best place to start.
August 11, 2008 at 8:35 am
riga1966 (8/8/2008)
So this Execution Plan I posted is not good enough?
It can be worked with, but a plan saved as a plan gives a lot more information and is quite...
August 11, 2008 at 8:33 am
It should be easy enough to build something yourself in Reporting Services/Notification Services.
If not, RedGate has a beta product called SQL Response that might fit your need. Check it...
August 11, 2008 at 8:28 am
Looks to me like you're getting 110 deadlocks per second. That's quite a few.
August 11, 2008 at 8:23 am
There isn't one. Not native anyway. Exchange can connect to SQL Server and feed stuff in there (or so I understand, haven't actually used that). I read...
August 11, 2008 at 8:22 am
I've been using Vista since beta, and I guess I'm a serious minority, but I really like it.
The first machine I used it on was significantly more than "3 years...
August 11, 2008 at 7:45 am
The closest I get to physical fitness these days is walking my dogs 3-4 times per day. Between a bum knee, arthritic hips, heel spurs, a neck injury (caused...
August 11, 2008 at 7:31 am
I spotted the implicit conversion and was about to go into the details on it, but then realized Simon had already covered it.
Good question. Understanding implicit conversions is a...
August 11, 2008 at 7:11 am
The "replace Nth character" doesn't actually catch the Nth instance of a particular character, it just replaces the Nth character.
Try it on "Susy sells sea shells by the sea shore.",...
August 11, 2008 at 7:08 am
I haven't used the Red Gate Compare tool, but the ApexSQL Diff product is quite good for comparing structure, code and data between databases. I find it extremely helpful...
August 8, 2008 at 3:23 pm
If I'm not mistaken, Standard requires a server OS, not a desktop OS, just like Enterprise.
On XP, you can only install Express or Dev editions, to my knowledge. Might...
August 8, 2008 at 3:21 pm
Probably the first one, but it's hard to tell, because A1 isn't included in any of them, so it's going to have to at least do a bookmark lookup. ...
August 8, 2008 at 3:17 pm
I've seen an ad for a tool that would go through .NET code and document dependencies, but I seriously doubt there's anything that can go through your whole system and...
August 8, 2008 at 3:13 pm
Viewing 15 posts - 12,346 through 12,360 (of 14,953 total)