Viewing 15 posts - 14,626 through 14,640 (of 39,822 total)
We are still looking for an article for SQLServerCentral on this.
December 19, 2011 at 8:51 am
jcrawf02 (12/16/2011)
December 16, 2011 at 8:52 am
yes
December 15, 2011 at 12:37 pm
Please start a separate thread for a new question, and also post some sample data and table DDL. Your description of the problem doesn't make enough sense without an example.
December 15, 2011 at 11:33 am
The subscriber is always online.
What you want to do is send the clients to the secondary. This is a manual process. You can do it a few ways, but it...
December 15, 2011 at 9:05 am
So only one row per date?
Easy to do
if not exists
( select cut_date from test where cut_date = @cut_date
)
Insert into dbo.test
select
@cut_date,
...
December 15, 2011 at 9:03 am
Do you have automatic failover? Are you expecting people to work off the mirror while the primary one is down? If so, account for the backup and restore to fail...
December 15, 2011 at 8:59 am
What does empty mean? Does that mean you want to export the data or you want to delete all the data?
December 15, 2011 at 8:57 am
Which steps produced the error? If this comes from Configuration Manager than you may have something broken or corrupt in your installation.
Do you have encryption set? Does this apply?...
December 15, 2011 at 7:05 am
bitbucket-25253 (12/14/2011)
Here it is only Wednesday and you have all lost your #$%@ minds
It's only Wednesday!!!!!! Feels like Friday afternoon to me
December 14, 2011 at 4:12 pm
SQLRNNR (12/14/2011)
Steve Jones - SSC Editor (12/13/2011)
SQLRNNR (12/13/2011)
About due for a Pantsectomy :-D:-D:-D:-D40F in Denver, no need for pants today.:-P
Just as long as you wear the Cowboy hat
Of course
December 14, 2011 at 1:35 pm
Added to the list.
I've given up on searching that way, and only search using site search, unchecking boxes.
December 14, 2011 at 1:33 pm
Without seeing more sp_who output, you can't determine that the checkpoint is blocking everyone. I might recommend you get a script for the block tree, or get sp_whoisactive and use...
December 14, 2011 at 1:33 pm
Bru has the right idea. Depending on the load of I/O for your files, I'd move either the log files or tempdb to reduce contention. That assumes you have I/O...
December 14, 2011 at 1:30 pm
Viewing 15 posts - 14,626 through 14,640 (of 39,822 total)