Viewing 15 posts - 241 through 255 (of 1,158 total)
Sounds like the read only file system property is set to true on one of the files you are trying to attach.
November 8, 2012 at 4:36 am
Backup restore is usually the preferred method.
For larger DB's I use logshipping which takes a small amount of preparation but can be setup well in advance of any DB moves
Orphaned...
November 6, 2012 at 10:21 am
Only if you are running a detailed trace.
In most environments capturing every script/query is a massive overhead simple because of the TPS.
October 17, 2012 at 4:42 am
sreenubabu.s (10/13/2012)
can we configure below logshipping setupPrmiary: SQL Server 2008
Secondary Server 2005 with Standby Mode
would it work? can any one suggest me?
The only way you "could" get the data on...
October 14, 2012 at 2:28 am
I use a combination of PowerShell and SQL PSX
$Instance = 'ServerName'
$scriptargs = [Microsoft.SqlServer.Replication.scriptoptions]::Creation `
...
October 13, 2012 at 5:46 am
Sergei Zarembo (10/12/2012)
Can I interpret a high value of load factor calculated asSELECT AVG(load_factor*1.0) as avg_load_factor
FROM sys.dm_os_schedulers
WHERE scheduler_id < 255
..as some indication of work load on the server?
Based on the...
October 12, 2012 at 9:47 am
Internal value that indicates the perceived load on this scheduler. This value is used to determine whether a new task should be put on this scheduler or another scheduler. This...
October 12, 2012 at 9:46 am
Its worth pointing out that if there are more transactions to be delivered they will be delivered up to the maximum batchsize/commands setting on the distribution agent. If any...
October 12, 2012 at 9:18 am
Megistal (10/12/2012)
http://msdn.microsoft.com/en-us/library/ms151762%28v=sql.105%29.aspx
By default, transactional replication propagates changes according to transaction boundaries. If transactions are smaller, it is less likely that the Distribution Agent will...
October 12, 2012 at 8:32 am
chandan_jha18 (10/12/2012)
October 12, 2012 at 7:22 am
It is highly unusual.
Does the proc in question gradually decrease in performance? Does it improve when recompiled?
If it is a single procedure why not add the RECOMPILE option to the...
October 12, 2012 at 4:53 am
Or if you need 4 different jobs to run concurrently, you can add a fifth job with a TSQL job step and use
exec sp_start_job 'job1'
exec sp_start_job 'job2'
exec sp_start_job 'job3'
exec...
October 11, 2012 at 7:47 am
baabhu (10/11/2012)
MysteryJimbo (10/10/2012)
Are you managing your transaction log with regular backups? If so, why do you say the log file is...
October 11, 2012 at 1:36 am
I'd do each step in order as a precaution.
Are you managing your transaction log with regular backups? If so, why do you say the log file is going to...
October 10, 2012 at 4:26 am
You can add another log file to the new drive and set the old log to not grow.
You can then
DBCC SHRINKFILE statement and specify the EMPTYFILE clause
Then remove the...
October 10, 2012 at 4:24 am
Viewing 15 posts - 241 through 255 (of 1,158 total)