Viewing 15 posts - 2,431 through 2,445 (of 2,640 total)
I'd isolate the web and sql to seperate boxes - putting them together is not a good solution for either performance or security.
As to the rest it depends upon the...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 5, 2005 at 4:43 am
All of this is good but many suggestions would struggle with say 60 servers to manage.
In General the DBA has to define what is right for their environment - defining...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 5, 2005 at 4:35 am
Sounds unlikely to me, however, I'd look to make sure things like auto close are off.
You might note that some maint options will put the database into single user so...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 5, 2005 at 2:33 am
I usually update stats every night. I generally turn off auto-update stats preferring to manually update them, my thinking is that if stats do need updating automatically there's probably a...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 5, 2005 at 2:12 am
As far as I know you cannot restore a 2k backup into 7.0 - sadly I don't have a 7.0 version to test. The only way it might work is...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 5, 2005 at 2:01 am
Although multiple filegroups on a single array may prove detrimental.
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 4, 2005 at 10:44 am
W2003 should have the PAE enabled by default, however you might need to check with your platform support/ see how much memory is reported in sysperfinfo or the sql error...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
April 4, 2005 at 10:40 am
sqlservr.exe -c -m ( from the appropriate directory )
use master
go
restore database master from tape = '\\.Tape0'
from disk file='xxxx.bak'
It's in BOL - just follow the instructions.
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 31, 2005 at 10:33 am
You actually have a covered index which can often perform equally with a clustered index, you might want to examine your i/o count however, often using a nc index will...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 31, 2005 at 10:23 am
When you change the database collation it does not recollate the existing objects.
To recollate a database the safest method is to create a copy of your database to be...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 31, 2005 at 10:05 am
For one you'll have a job that most ( including many IT ) people will never understand and will have fallen asleep before you finish explaining ![]()
I'm...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 29, 2005 at 6:54 am
run this:-
select * from master.dbo.sysperfinfo where counter_name like '%server memory%'
The two figures show the memory available and the memory sql server will/does use. In general you wouldn't really use more...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 29, 2005 at 6:44 am
When you set the max cpu's for sql server it limites sql server to this number of processors, "everything else" can still use all the procs if "everything else" is...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 29, 2005 at 6:30 am
exec dbo.sp_configure 'min server memory',3072
exec dbo.sp_configure 'max server memory',3072
exec dbo.sp_configure 'awe enabled',1
reconfigure with override
go
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 29, 2005 at 6:24 am
The counters are updated in real time in sysperfinfo. You do need to check out how to extract the information and the format/method in which it is stored.
There were...
[font="Comic Sans MS"]The GrumpyOldDBA[/font]
www.grumpyolddba.co.uk
http://sqlblogcasts.com/blogs/grumpyolddba/
March 24, 2005 at 6:36 am
Viewing 15 posts - 2,431 through 2,445 (of 2,640 total)