Viewing 15 posts - 736 through 750 (of 872 total)
bdragoo (3/5/2008)
We're moving data centers, and we're just restoring the master database to our new instance of SQL 2005....unless that is for some reason unnecessary, as I'm restoring all the...
March 5, 2008 at 1:38 pm
byron.baker (3/5/2008)
I would like SQL Server to use approximately 2gb instead of 330...
March 5, 2008 at 1:34 pm
Oh whoops, I just read again ... you're trying to restore, not move ...
Can't say I've ever had to restore the master db, I've rebuilt, but not restored. Out of...
March 5, 2008 at 1:22 pm
This sounds so familiar ... it's been a couple years, but I remember it being something about msdtc or mdac running ... Can't seem to find anything on Google about...
March 5, 2008 at 1:16 pm
You need to start in minimal config mode (/f) and skip recovery on all db's except master (/T3608).
Basically, stop SQL and then
NET START MSSQLSERVER /f /T3608
March 5, 2008 at 1:09 pm
x86 or x64 SQL Server will use the pagefile after it has reached its maximum available memory regardless. I just don't understand how/why x64 would automatically use the pagefile if...
March 5, 2008 at 9:32 am
EdVassie (3/5/2008)
March 5, 2008 at 8:46 am
yann.larvor (3/5/2008)
hello,when i'm programming a maintenance plan with reindexation on sql serveur 2000. Could you say me if statistic is updating ?
yann.
Not sure I follow, but are you asking to...
March 5, 2008 at 8:39 am
I believe there are some freeware tools out there that could assist with such a thing ...
If I were to do it though? I'd say create a procedure to run...
March 5, 2008 at 8:35 am
This should get you started in the right direction ...
SELECT * FROM msdb.dbo.sysmail_log
March 5, 2008 at 8:32 am
If you leave the default trace running (on by default), you can view a built in report. Right click database -> Reports -> Standard Reports -> Schema Change History.
Yet if...
March 5, 2008 at 8:28 am
I do that in my procs, but never with views ... I just updated it to include the view.
It still needs some work though ...
March 5, 2008 at 6:38 am
You can filter a view ...
Personally, I prefer procs and views as you can create a wrapper process to keep them in a "admin" or "dba" database on all your...
March 4, 2008 at 2:33 pm
What is it that the users are attempting to do?
By default (someone correct me If I'm wrong, as there is no documentation on this xproc), only sysadmins, msdb dbo's (?),...
March 4, 2008 at 1:57 pm
ALZDBA (3/4/2008)
this comes from http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2892190&SiteID=1
(I don't have my own scripts available for the moment)
--...
March 4, 2008 at 1:19 pm
Viewing 15 posts - 736 through 750 (of 872 total)