Viewing 15 posts - 1 through 15 (of 23 total)
Yeah, I've seen it before on reboot with a custom service I built many years ago that seemed to connect too quickly.
Is this a service? If so, try auto...
February 28, 2011 at 10:16 am
This should give you everything you need.
http://www.mssqltips.com/tip.asp?tip=1523
Please note under the Database Mail heading, there is another link provided in giving you step by step for configuring email for the alerts.
February 28, 2011 at 9:34 am
You can create a custom alert for any error #...
View the error in the log, write down the number. Go to Alerts and add it manually. You will...
February 28, 2011 at 8:47 am
A good example of what I have personally run into many times over the years.
SELECT * on a table where many columns are involved, but the code only needs 2...
February 11, 2011 at 10:50 am
This seems a bit too extreme and doesn't really stop programmers from using more fields than necessary not to mention slowing down your system.
Work close with your programmers, force them...
February 11, 2011 at 10:13 am
I dont know, you can think of a million different performance impacting ways to stop stupid from happening to your data. Yet, I think the best course of action...
January 25, 2011 at 9:12 pm
da-zero (11/7/2010)
GilaMonster (11/6/2010)
da-zero (11/6/2010)
Throw the database away and start with a clean slate.Not funny in a disaster situation.
Absolutely true.
But I'm pretty confident this is not a disaster situation, but an...
November 10, 2010 at 7:54 am
I just did this a few days ago, but it may not be the route you want to go.
Basically, I just modified the data connection in visual studio. (database...
November 10, 2010 at 7:38 am
Under the server, security. right click the user account -> properties. Once the screen opens up for the user account, go to User Mapping. You can then...
November 3, 2010 at 9:31 am
So you have a specific code, then you want to see which items fall between a 7 day period for that code from the same table?
I'm not 100% on what...
November 3, 2010 at 9:24 am
Sorry, it's been a while.
So you are dealing with a million rows being inserted and this processor usage is after the fact? *the table in question is not locked and...
October 22, 2010 at 6:47 pm
Never mind about what the transaction is doing. *forgot you described this above.
Still though, have you checked the performance monitor?
Also, what is your space reserved / space used of...
October 5, 2010 at 9:37 am
You said this happens after a large transaction? What is the large transaction actually doing?
If you're performing a mass update or delete to a large table, it could...
October 5, 2010 at 9:29 am
CASE WHEN TUploadTo.WCFComplete = 1 THEN 'WC' ELSE 'WI' END AS result
September 29, 2010 at 7:07 am
Viewing 15 posts - 1 through 15 (of 23 total)