Viewing 15 posts - 106 through 120 (of 1,158 total)
Markus (1/23/2014)
January 24, 2014 at 3:27 am
Replication is data driven so unless you have some auditing you wont have much in the default trace but you may find something.
Is replication still enabled but the publications gone?...
January 24, 2014 at 3:11 am
I'm not sure I follow all of this but I'll do my best.
joackim.breien (1/23/2014)
January 24, 2014 at 2:58 am
You are safer adding it via TSQL. You need to run sp_addarticle and sp_addsubscription. Then you need to run the snapshot agent.
Sp_addarticle adds the table to the publication. At this...
January 21, 2014 at 10:20 am
Pablo Campanini-336244 (1/21/2014)
1.- Do I need to stop only the subscription job?
That's the easiest way. If you were to stop the log reader it would have the same effect but...
January 21, 2014 at 9:41 am
GilaMonster (1/17/2014)
MysteryJimbo (1/17/2014)
This can be done online in most cases with a short lived schema modification lock.
If the split involves moving rows from one partition to another, it's not...
January 17, 2014 at 9:18 am
You don't have to recreate the functions/schemes from scratch to change empty partitions. You can merge all of the empty partitions and use split to reassign them to the...
January 17, 2014 at 7:42 am
happycat59 (1/16/2014)
January 17, 2014 at 2:02 am
Express12 (1/15/2014)
We realize that if we failover to the D/R data center, our SQL server name in our connection strings will need to change.
Not necessarily. You can add the...
January 16, 2014 at 5:00 am
Slightly different take on this by me.
CREATE TABLE #TEMP(Category NVARCHAR(100),Item NVARCHAR(100),Value NVARCHAR(100));
INSERT INTO #TEMP values('Small','PilotA1','AjJCC');
INSERT INTO #TEMP values('Large','PilotA1','ACC');
INSERT INTO #TEMP values('Small','PilotA2','BKC');
SELECT *
FROM
(
SELECT Item, Value, Category
FROM #TEMP
) AS s
PIVOT
(
MAX(Value) FOR...
January 15, 2014 at 8:55 am
PearlJammer1 (1/7/2014)
(for purposes of keeping the dev environment in sync with live)
If you are restoring the db from production, using KEEP_REPLICATION will fail as the distributor and subscribers will...
January 8, 2014 at 7:37 am
bleumer (1/8/2014)
2014-01-08 09:23:02.225 The schema script 'FillMercaTempTab_56.sch' could not be propagated to the subscriber.
2014-01-08 09:23:02.234 Category:NULL
Source:...
January 8, 2014 at 7:13 am
Sounds like lack of permissions. Are you using a SQL Login as sysadmin on both machines or NT user? If the SID's for the SQL Login don't match...
January 7, 2014 at 3:10 am
You can export the execution plan from the buffer cache using this dmv. You can find many examples of the queries if you google this dmv.
http://technet.microsoft.com/en-us/library/ms189747.aspx
Export the execution plan of...
January 3, 2014 at 2:49 pm
My question would be why do you need to export so much data? It would make more sense to display or use it directly in a database.
2.2 million rows...
January 3, 2014 at 3:49 am
Viewing 15 posts - 106 through 120 (of 1,158 total)