Viewing 15 posts - 961 through 975 (of 5,103 total)
Thanks for posting the solution back.
August 28, 2008 at 11:43 am
I felt that I had to post my version 😀
SELECT a.ShiftID
, a.TableID
, a.StationID
, a.EmployeeID
, a.CounterDateTimeStamp
, a.MusselCount
, a.CounterTimeSpan
,(SELECT TOP 1 b.MusselCount
...
August 27, 2008 at 2:50 pm
Christopher Favero (8/27/2008)
August 27, 2008 at 2:05 pm
Ahhhh ... those times in which DELETES with WHERE clauses that were not highlighted ...
August 26, 2008 at 3:29 pm
You will have to drop+recreate. It IS disk intensive ( especially if there are NC indexes in addition to the clustered)
To minimize impact you can run the rebuild using SORT_IN_TEMPDB...
August 26, 2008 at 11:55 am
me_balaji (8/25/2008)
August 26, 2008 at 11:45 am
Is the snapshot agent scheduled to run periodically? IF so, are there any new articles added to the publication ? or Is anyone marking the subscription for reinitialization ?
August 26, 2008 at 11:30 am
Warning DROP INDEX for a PK does *not* work! you must DROP the CONSTRAINT!
August 26, 2008 at 11:19 am
dansell (8/22/2008)
August 22, 2008 at 2:47 pm
Don't give people ddl_admin or db_owner rights ... Then you are safe 🙂
August 22, 2008 at 2:34 pm
steve smith (8/22/2008)
noeld (8/21/2008)
August 22, 2008 at 2:24 pm
Totally agree with Michael above. You can built your custom logic on the MSrepl_* stored procedure scripts. Usually people use post_snapshot scripts to keep stuff easy to setup in case...
August 21, 2008 at 3:46 pm
Sorry for the bad news but from what I have seen in republishing architectures the solution is "peer-to-peer". Merge was advertised as the tool of choice once but DDL replication...
August 21, 2008 at 3:42 pm
Matt Slocum (8/18/2008)
noeld (8/15/2008)
August 18, 2008 at 1:46 pm
Viewing 15 posts - 961 through 975 (of 5,103 total)