Viewing 15 posts - 451 through 465 (of 588 total)
Not sure a link for MSDE vs Express is a good link, but..
I found this which indeed supports your claim:
http://www.microsoft.com/technet/technetmag/issues/2007/05/SQLQA/
Excerpt:
Q In...
May 8, 2007 at 1:38 pm
Steve and Lowell,
are you absolutely sure about that? I don't see anywhere in SQL that it differentiates between multiple cores and multiple CPU's. Which would indicate to me that it...
May 8, 2007 at 12:02 pm
I would use a SQL step, just do a group by those columns that would determine that they are duplicate and use having a count > 1. Simple example:
May 8, 2007 at 9:16 am
Check the sysservers table in master. srvid = 0 is the local server instance.
To change it should be able to use sp_dropserver and sp_addserver, but make sure to check this out...
May 8, 2007 at 6:00 am
"Cascading Referential Integrity Constraints" in Books Online should be a starting point.
May 7, 2007 at 2:15 pm
Have you lookd at the front end code that calls the offending stored procedure? At various times I have found front end developers having put transaction around a call to...
May 4, 2007 at 6:03 am
You said it parses fine, but does it actually run? There are a few things that will let the query parse fine, but not run.
May 4, 2007 at 5:59 am
Under the job create two schedules, one for each day. The option is when you select Monthly under the dropdown for Frequency.
May 3, 2007 at 3:06 pm
I use DDL triggers to log changes to the database, with no noticed performance degradation. Yesterday it wrote 10196 changes to my logging table.
Don't ask why we have that...
May 3, 2007 at 2:09 pm
Try/catch should pick that up. I'm thinking there is something else causing it to leave the transaction open. If you look under try...catch in BOL there are some examples of...
May 3, 2007 at 12:49 pm
Is the mail server set up correctly? With the setup here the mailserver has to be set up to allow requests from the IP address of our SQL Servers.
May 3, 2007 at 12:38 pm
At my previous company I had a couple of databases in the 150-250 GB range, always just used SQL to back them up to disk and never had a problem. ...
May 2, 2007 at 2:14 pm
In 12 years of being a DBA, I think maybe for a year out of that have I only been one or the other. The rest I do both the...
May 2, 2007 at 1:50 pm
4-6 hours a day? Seems a tad much if the system is not having a particularly bad day, as in maybe 4 - 5.95 hours too much.
Now, on bad days,...
May 2, 2007 at 1:43 pm
Not sure this is what you are looking for, but DBCC Inputbuffer will at least give you something...
May 2, 2007 at 1:29 pm
Viewing 15 posts - 451 through 465 (of 588 total)