Viewing 13 posts - 1 through 13 (of 13 total)
This behavior is by design. This excerpt from "SQL Server Replication: Providing High Availability using Database Mirroring" written by Paul Randal and Gopal Ashok, explains it well
"It is possible for...
October 29, 2012 at 11:43 am
I have experienced this same behavior with SQL 2008R2. I have databases mirrored in high performance mode, in "disconnected" state due to some firewall changes that were applied over the...
October 29, 2012 at 11:23 am
i would use Excel to generate insert scripts like so: Copy your (1,1,1)
(2,2,2)
(3,2,1)
(1,2,3)
from your query window, open excel highlight cell A1 and paste, highlight cell B2
and input the following...
February 15, 2012 at 3:59 pm
Do you get any results (or an error) if you query the linked server using the 4 part syntax like so
select
*
from [test-linked server].master.dbo.sysobjects;
February 15, 2012 at 3:30 pm
Try this instead:
select
'EXEC [dbo].[usp_DropPKFKConstraints] N''' + TABLE_CATALOG + ''',N''' + TABLE_SCHEMA + ''',N''' + TABLE_NAME + ''';'
from information_schema.tables
February 15, 2012 at 3:23 pm
I'm sharing the answer that i found in the hopes it helps someone else.
I too had a stubborn filegroup that could not be removed. All the files had been...
January 11, 2011 at 1:51 pm
Thank you Henrik. It works now!
May 23, 2007 at 12:33 pm
The following 2 excerpts are from BOL. Under SQL 2000 it was required to run sp_altermessage on an error number for it to get logged to the Windows Application log...
April 3, 2007 at 2:31 pm
Thankyou all for your assistance with this vexing cascading.
I agree that have cascading references setup adds a lot of overhead that can be avoided if you're willing to do the...
September 9, 2005 at 10:08 am
Well I've been trying a few changes with little success.
A performance gain happened when I deleted the index:
CREATE INDEX [nci_va] ON [dbo].[vts_tbVoterAnswers]([AnswerID])...
September 8, 2005 at 3:40 pm
Got a simple little stored proc here that does a nice job of grabbing the proc name and the snippet of code containing the search term.
I also created one that...
September 7, 2005 at 8:35 am
Thanks for everyone's input. By the way I have experienced problems using /* */ for commenting (in stored procedures) when there is an embedded GO in the comments. Changing each...
October 17, 2003 at 7:18 am
Having a developer background as a DBA has many benefits. I'd say the biggest benefit is it allows you to keep the big picture in perspective.
But coming from a...
May 16, 2002 at 8:09 am
Viewing 13 posts - 1 through 13 (of 13 total)