Viewing 15 posts - 136 through 150 (of 758 total)
Why are you deleting the database before restoring it?
You can restore with replace, which will overwrite the entire database
July 3, 2013 at 6:59 am
I've seen this in SQL 2005 while running index rebuilds. It would not allow me to see DB properties via GUI, I could query the properties though.
I'm inclined to think...
July 3, 2013 at 6:58 am
It depends on how available you need your dev system to be. What is your SLA for dev systems?
Failover clustering provides instance level availability, not database availability
July 3, 2013 at 6:55 am
There is a counter in sys.dm_os_performance_counters for pagesplits/sec and as far as I understand, when querying sys.dm_os_performance_counters, any per/sec counter is actually a cumulative amount since SQL was started.
select *...
July 3, 2013 at 6:38 am
Destination for the copies?
Shouldn't be a problem, just copy existing log files to the new destination.
June 28, 2013 at 6:28 am
Do you perhaps have any 3rd party software installed on the inactive node that requires SQL to be started? Maybe a 3rd party backup software that makes a connection to...
June 26, 2013 at 5:14 am
June 21, 2013 at 5:33 am
erics44 (6/19/2013)
so i want to restire the database back to how it was before...
June 19, 2013 at 5:28 am
A SQL profiler trace during this time should point out what's happening during the spike.
June 19, 2013 at 5:24 am
In the case where one of the nodes fail and needs to be replaced:
> Evict failed node
> Add new/fixed node into failover cluster using Failover Cluster Manager
> Run SQL setup...
June 19, 2013 at 5:16 am
Not sure what exactly you need here
Want to restore a database if an Agent job fails? What does the Agent job do?
June 19, 2013 at 5:03 am
DBCC DROPCLEANBUFFERS with clear the entire clean part of the buffer pool.
DBCC FREEPROCCACHE will remove all plans from cache
If you have the plan_handle of the query, you can remove...
June 19, 2013 at 12:10 am
The transaction log of you seconday database is a reflection of your primary database.
Shrink the log on the primary database and it will reflect on the secondary database.
That being said,...
June 18, 2013 at 6:00 am
Viewing 15 posts - 136 through 150 (of 758 total)