Viewing 15 posts - 466 through 480 (of 1,129 total)
Koen Verbeeck (4/4/2012)
Create another proxy and use that one?
Hmmm....i guess i could. Goal here is to make use of windows account in a connection string. I know you could...
April 5, 2012 at 8:39 am
GilaMonster (3/27/2012)
Can't say much from the query alone. Execution plan please (actual, not estimated), table designs and index designs.
I will get the execution plan by eod, mentioned below is the...
March 27, 2012 at 8:46 am
happycat59 (3/26/2012)
Generally SQL Server will do a pretty good job without any hints. ...
March 27, 2012 at 7:57 am
opc.three (3/13/2012)
sqldba_newbie (2/19/2012)
For SP's i haven't tried this because WSUS has the capability to deploy SP's.
For CU's, you can make use of...
March 14, 2012 at 8:59 am
Suresh B. (3/8/2012)
Grant Fritchey has written a nice book on interpreting query plan.Please download and read it. It is free:
I do have a hard copy of his book. Let me...
March 9, 2012 at 9:50 am
Suresh B. (3/7/2012)
sqldba_newbie (3/6/2012)
...My question is i populated all this data into a table, .... How do i do the same with the second option?
sys.dm_exec_query_plan DMV gives cached plans in...
March 8, 2012 at 3:54 pm
Suresh B. (3/1/2012)
USE <Database>
GO
EXEC sp_changepublication
@publication = 'MainPub',
@property = N'allow_anonymous',
@value = 'false'
GO
EXEC sp_changepublication
@publication = 'MainPub',
@property = N'immediate_sync',
@value = 'false'
GO
2) Add new article...
March 2, 2012 at 8:37 am
Suresh B. (2/29/2012)
sqldba_newbie (2/27/2012)
...Apart from getting new articles, would it also capture schema changes for an existing article?
I believe it creates "snapshot" of only the new articles.
I believe it does...
March 1, 2012 at 9:39 am
GilaMonster (2/29/2012)
So
BEGIN TRAN
insert ...
update ...
update...
delete ...
COMMIT
will all get the same transactionID, however without...
February 29, 2012 at 8:40 am
Suresh B. (12/21/2009)
Apollo74x (12/21/2009)
Suresh B. (12/17/2009)
--------------------------------------------------------------------------------
This is expected behaviour if you have a merge or...
February 27, 2012 at 12:01 pm
Amirali Charania (9/7/2007)
I know this is a old post, but I have the "exact" same issue with SQL 2005. Was a solution to this problem found? I have SQL 2000...
February 27, 2012 at 11:44 am
winash (2/22/2012)
Actually thats what we have been doing. My biggest concern here is whenever we add a new object to subscriber we need to reset-up replication and re-create all synonyms...
February 24, 2012 at 9:24 am
Steve Jones - SSC Editor (2/22/2012)
February 22, 2012 at 10:16 pm
Brandie Tarvin (2/22/2012)
Depending on your edition, you could use Log Shipping or Data Mirroring to get a readable version of a secondary...
February 22, 2012 at 10:14 pm
No, not for reporting server. Our architecture is setup in such a way that all the reads has to go to local server and writes to central server(publisher). So secondary...
February 22, 2012 at 7:42 am
Viewing 15 posts - 466 through 480 (of 1,129 total)