Viewing 15 posts - 361 through 375 (of 1,363 total)
Try checking the 'Schema Changes History' report for that database. It might be having the information you are looking for. Its same as checking default trace output.
Manu
August 24, 2009 at 7:36 pm
Consider watching these two counters: SQLServer:Memory Manager: Total Server Memory (KB) and SQLServer:Memory Manager: Target Server Memory (KB). The first counter, SQLServer:Memory Manager: Total Server Memory (KB), tells you how...
August 24, 2009 at 7:24 pm
Run under master database on secodary server:
sp_help_log_shipping_monitor_secondary
@secondary_server = 'secservername',
@secondary_database =secondarydatabase
sp_help_log_shipping_secondary_database @secondary_database ='secondarydbname', @secondary_ID = 'outputfromabovequery'
MJ
August 24, 2009 at 5:39 pm
You can detach the model and the msdb database (with trace flag 3608 (-T3608) but you shouldn't even try it as it won't allow you to attach again.
See: http://www.sqlmonster.com/Uwe/Forum.aspx/sql-server/13428/sql-dont-start-after-detach-model-and-msdb
MJ
August 20, 2009 at 6:59 pm
What versions of .net are installed on the system?
MJ
August 19, 2009 at 7:18 pm
First verify the "Distribute Transaction Coordinator" Service is
running on both database server computer and client computers
1. Go to "Administrative Tools > Services"
2. ...
August 19, 2009 at 6:33 pm
Better reduce the max server memory limit.
MJ
August 14, 2009 at 2:33 pm
I was just trying to show him how "online piecemeal restore" works. I agree with Steve that mirroring can be a good option here.
MJ
August 14, 2009 at 11:37 am
On Server1:
Created a test database with PRIMARY and user filegroup.
CREATE Database TestFG
ON PRIMARY
(Name=TestData
,Filename='C:\SQL2008\Data\TestData.mdf'
)
,FILEGROUP TestFG
(Name=TestData_FG
,Filename='C:\SQL2008\Data\TestData_FG.ndf'
)
LOG ON
(Name=TestLog
,Filename='C:\SQL2008\Data\TestLog.ldf'
);
Took backup of the empty database.
BACKUP DATABASE TestFG
TO DISK='C:\SQL2008\Backup\TestFg.Bak'
Take transactional backup.
BACKUP LOG TestFG TO DISK= 'C:\SQL2008\Backup\TestFg.bak'
Server...
August 13, 2009 at 9:37 pm
August 13, 2009 at 4:09 pm
Could not find an entry for table or index with partition ID %I64d in database %d. This error can occur if a stored procedure references a dropped table, or metadata...
August 13, 2009 at 1:27 pm
Better turn it ON unless you see performance degradation due to update stats running on server during peak hours.
http://blogs.msdn.com/ianjo/archive/2005/11/10/491549.aspx
MJ
August 13, 2009 at 1:20 pm
SET NOCOUNT ON
-- declare all variables
DECLARE @sTableName SYSNAME
DECLARE @sSQL sql_variant
DECLARE @sSQL1 Varchar(220)
DECLARE @iRowCount INT
DECLARE @t_TableNames_Temp TABLE
(table_name SYSNAME)
INSERT @t_TableNames_Temp
SELECT name
FROM master..sysdatabases where name not in('northwind','pubs')
ORDER...
August 13, 2009 at 1:09 pm
Viewing 15 posts - 361 through 375 (of 1,363 total)