Viewing 15 posts - 916 through 930 (of 1,365 total)
Set the database file autogrowth in increments like 100 MB, 200 MB based on what is suitable and acceptable as per your server disk subystem.
MJ
December 2, 2008 at 1:15 pm
Eric, have a look at new roles available for managing dts:
http://technet.microsoft.com/en-us/library/ms141053(SQL.90).aspx
HTH,
MJ
December 1, 2008 at 4:29 pm
Try this:
DECLARE @database_name SYSNAME
DECLARE @iRowCount INT
DECLARE @t_TableNames_Temp TABLE
(table_name SYSNAME)
drop table #file_check
create table #file_check(DBName sysname,MDFFile sysname,LDFFile sysname)
INSERT @t_TableNames_Temp
SELECT name
FROM SYSDATABASES
WHERE name not in ('pubs','northwind','tempdb')
ORDER...
December 1, 2008 at 2:30 pm
You don't need to change anything on system database. As somebody posted only change it for user databases one by one.
MJ
December 1, 2008 at 9:09 am
Check section named "To rebuild system databases for a default instance of SQL Server 2005 from the command prompt" at http://msdn.microsoft.com/en-us/library/ms144259(SQL.90).aspx
Manu
November 30, 2008 at 6:23 pm
Under Run type services.msc and under the services console chek fr SQL Server service...
Mj
November 30, 2008 at 12:03 pm
Use:
EXEC sp_configure 'show advanced options', '1'
RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'min server memory', '0'
EXEC sp_configure 'max server memory', '3000'
RECONFIGURE WITH OVERRIDE
EXEC sp_configure 'show advanced options', '0'
RECONFIGURE WITH OVERRIDE
HTH.
MJ
November 29, 2008 at 5:37 pm
Do this:
From: http://support.microsoft.com/kb/942861
To work around this problem, disable the TCP Chimney Offload feature.
To do this, follow these steps:
Click Start, click Run, type cmd, and then press ENTER.
At the command...
November 29, 2008 at 4:01 pm
Bad suggestion from me. I forgot tht in 2005 mssqlsystemresource governs everything. Would be fine if you restore over the existing master database in any fresh test instalation.
Experts,
Please comment. I...
November 28, 2008 at 9:03 am
I did two changes and it worked:
domainvarcharno20--Increased length of domain column
Second:
WITH(FIELDTERMINATOR = ',',ROWTERMINATOR = '')--Changing row terminator.
MJ
November 27, 2008 at 2:59 pm
If you have backup of yesterdays master database then restore it on test server(with new name and like normal database) and check this under the restored database:
select * from sys.server_principals
select...
November 27, 2008 at 2:32 pm
Find it in the doc attached. Hope you have the backups of system databases with you.
MJ
November 27, 2008 at 12:16 pm
Then try restarting it in single user mode by following the steps mentioned under this article:
http://blogs.techrepublic.com.com/window-on-windows/?p=390
HTH,
MJ
November 26, 2008 at 9:41 am
That means you are not sysadmin there. Right?
MJ
November 26, 2008 at 9:28 am
Viewing 15 posts - 916 through 930 (of 1,365 total)