Viewing 15 posts - 121 through 135 (of 361 total)
AGREE
with the SQLGuru.
Auto update stats is not adequate.
There's a whole complicated selection algorithm for stats updating based on the rowcount and rowmodctr from sysindexes.
http://support.microsoft.com/kb/195565
It doesn't catch everything, that's for...
February 5, 2010 at 2:00 pm
I think some of the information you want is in the default trace which is always running on SQL Server.
Not really sure because you were not all that descriptive in...
February 5, 2010 at 1:13 pm
I know of very few DBAs who are not detail oriented.
Detail is part of the calling of the profession, and it calls each of us tightly wound, detail-oriented control freaks...
February 5, 2010 at 11:18 am
Are you talking about a SQL Trace?
you can select out of a trace by using this method:
http://www.sqlservercentral.com/Forums/Topic859816-146-1.aspx#bm859881
February 5, 2010 at 10:58 am
shew (2/4/2010)
This shows some nice possibilities for us. Apparently, something is auto-deleting the old files (and I am having them restored).
Do you know how to configure the auto-deletion so that...
February 5, 2010 at 9:36 am
That looks like a user-defined error message.
How are you being alerted of this message?
Maybe there's a monitoring script that has faulty logic in it.
February 4, 2010 at 11:26 am
query the default trace I think will get you that
SELECT *
FROM fn_trace_gettable('d:\drive\path\to\default\trace',1)
inner join sys.trace_events te on tr.eventclass = te.trace_event_id
WHERE category_id =...
February 4, 2010 at 11:13 am
Since your db2 is in standby it's going to be useless to you for anything.
You'll have to either use log shipping or replication to move that data to your secondary...
February 4, 2010 at 10:45 am
Mirrored SAN and HA clustering across sites would be a hardware solution.
For builtin solutions with SQL Server I would tend to think that log shipping would be the simplest.
Replication...
February 4, 2010 at 10:08 am
xp_cmdshell can be a safe and useful thing to turn on.
Don't create a proxy account and don't grant anyone into SA that shouldn't be.
wow... that was easy.
and the first...
February 3, 2010 at 7:34 pm
If the wind ain't broke... don't fix it.
Nice article. I'm using synonyms like so many others.
It works better with SQL Compare.
February 3, 2010 at 4:03 pm
post your max server memory settings from SQL and also post your available memory at the OS level.
Is SQL the only thing running on the machine?
Oh, and your allocated disk...
February 3, 2010 at 3:36 pm
When you say no other users could get in do you mean they couldn't connect, or they were locked out of a table or DB and couldn't function?
It might help...
February 3, 2010 at 3:31 pm
I didn't have an article, but the logical steps are:
secure IP addresses from networking
secure DNS cnames
assign IP's to NIC on SQL Server
test Cnames
use SQL Server configuration manager adn go to...
February 1, 2010 at 2:50 pm
Viewing 15 posts - 121 through 135 (of 361 total)