|
More site info...
SQL Server Replication | Forum profile
|
|
Forum profile page for SQL Server Replication on http://social.technet.microsoft.com.
This report page is the aggregated overview from a single forum: SQL Server Replication, located on the Message Board at http://social.technet.microsoft.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "SQL Server Replication" on the Message Board at http://social.technet.microsoft.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on SQL Server Replication:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
42
|
182
|
673
|
|
Post:
|
82
|
383
|
2,043
|
|
|
SQL Server Replication Posting activity graph:
|
Top authors during last week:
user's latest post:
SQL to Oracle Replication
Published (2009-12-29 06:12:00)
Allright!!! After carrying our SEVERAL test scenarios....i come to a conclusion that we CANNOT have ORACLE Publisher and Subscriber on the SAME SQL server. You could have a server configured either as an ORACLE Subscriber or an ORACLE Publisher....! Marked As Answer by RubSay 6 hours 52 minutes ago
user's latest post:
MSmerge_contents, genhistory.....
Published (2009-12-29 08:45:00)
merge replication will prune its own metadata (the data in these tables). Under most circumstances you will not have to clean up these tables. If you are exceeding the size limit of sql server express you may need to reinitialize to get back to a smaller sized database.
user's latest post:
Pull replication date into a cube
Published (2009-12-29 08:40:00)
Hello, You could find the MSLogreader_history for the last time the log reader agent run. Also, MSdistribution_history for the last time distribution agent run. distribution agent says the last run & how much data is copied in the last run. Its says like "1 transaction(s) with 1 command(s) were delivered" or "No replicated transactions are available" etc in its...
user's latest post:
SQL Server 2000 - Redundancy via...
Published (2009-12-26 08:29:00)
Hi Cotter, As per my knowledge, when we consolidate all the data into a single database then the database would become huge and then there would be some problems...... while taking backup of the database(Which takes huge time) or re-indexing or even while restoring.. Please clarify me on this....Thanks in advance Cheers, Sridhar -------------- Please Mark it as Answer if it helps u so that it will be useful to other forum guys
user's latest post:
Replicating a table to it's...
Published (2009-12-21 12:19:00)
Hi, As hilary suggested u can do the same , in SQL Server 2008 user will face little performance issues but will not result into downtime.SQL Server 2008 is really too fast in generating the snasphot. We have 800 GB of OLTP DB and done the same as hilary has siggested we did not face any issues , except few tickets of application slowness.
user's latest post:
list all replicated tables and...
Published (2009-12-22 12:19:00)
Alex's query is good You can combine it with Sp_msforeachdb to run against all published databases in instance create table #re (db sysname ,pub varchar (50) , article varchar (50) , sub varchar (50) , dest_db varchar (50) ) insert into #re Exec sp_msforeachdb 'IF ' '?' ' IN (select name from master.sys.databases where is_published = 1) BEGIN use ? SELECT ' '?' ' [db], pub.name AS...
user's latest post:
Replicating a table to it's...
Published (2009-12-23 01:05:00)
Hi Hilary , I agree about the ENT edition note but we don't know yet what he is using . It even looks like the thread owner may have abandoned it . Prdon me but this is not clear to me " With the initialize from backup option if I mess with the table on the subscriber before the snapshot is applied, the data in the backup does not get restored. " As far as I know , we restore the backup only once and then we...
user's latest post:
Possible data loss in merge...
Published (2009-12-22 16:50:00)
My Application are bild using Delphi, the insert command like INSERT INTO TABLE1 (COLUMN1, COLUMN 2) VALUES (123, 'TEST') The problem is intermittent, don't have a periodicity, that the main problem That data inserted are messages, to view if I have new messages I click on a button "refresh", this button reload all data. []s
user's latest post:
Possible data loss in merge...
Published (2009-12-22 18:59:00)
Create audit triggers to capture insert , update and delete on the table. when the issue had occurred again, query the audit table to see what deleted the missing row.
Venkat Reddy BashiReddy
2
user's latest post:
distributor admin is not defined...
Published (2009-12-22 11:30:00)
Thanks, I already tested @@SERVERNAME is showing different name ,but the server is exist as replicate distributor when i used sp_helpserver stored procedure.
|
|
|
|
Latest active threads on SQL Server Replication::
Started 1 year, 2 months ago (2008-10-14 12:10:00)
by Hilary Cotter
Do the following. Note you may have to adjust some of the paths for your SQL Server. use master exec sp_adddistributor @distributor = @@Servername GO -- Adding the agent profiles -- Updating the agent profile defaults exec sp_MSupdate_agenttype_default @profile_id = 1 GO exec sp_MSupdate_agenttype_default @profile_id = 2 GO exec sp_MSupdate_agenttype_default @profile_id = 4 GO exec sp_...
Started 1 day, 19 hours ago (2009-12-29 12:30:00)
by ramakrishnae
Hi, I think that helps.. Except for the performance it would be good for you. Regards, Ramakrishna
Started 1 day, 19 hours ago (2009-12-29 11:53:00)
by Vinay Thakur
if I understand your question: transactions is a group of commands you can see this at "distribution" database with following query: select * from msrepl_transactions select * from msrepl_commands also to see actual commands you can use: sp_browsereplcmds HTH Vinay
Vinay Thakur http://vinay-thakur.spaces.live.com/ http://twitter.com/ThakurVinay Edited by Vinay Thakur 1 hour 8 ...
Started 1 day, 21 hours ago (2009-12-29 10:16:00)
by Philip Johnson
As a final answer, i'm taking this link: http://msdn.microsoft.com/en-us/library/ms152511.a spx in the ‘ Configuring Secure Sockets Layer’ section, the second sentence is: “ Web synchronization for merge replication supports using server certificates but not client certificates
Started 1 day, 23 hours ago (2009-12-29 08:40:00)
by Krishna Rajeesh
Hello, You could find the MSLogreader_history for the last time the log reader agent run. Also, MSdistribution_history for the last time distribution agent run. distribution agent says the last run & how much data is copied in the last run. Its says like "1 transaction(s) with 1 command(s) were delivered" or "No replicated transactions are available" etc in its last run. Thanks, ...
Started 1 day, 23 hours ago (2009-12-29 08:45:00)
by Hilary Cotter
merge replication will prune its own metadata (the data in these tables). Under most circumstances you will not have to clean up these tables. If you are exceeding the size limit of sql server express you may need to reinitialize to get back to a smaller sized database.
Started 1 week, 1 day ago (2009-12-22 15:13:00)
by Sateesh Yele
Can you script out the queries and run them in Query analyzer? Send me the script that causing this error message.
Started 2 days, 1 hour ago (2009-12-29 06:11:00)
by RubSay
Allright!!! After carrying our SEVERAL test scenarios....i come to a conclusion that we CANNOT have ORACLE Publisher and Subscriber on the SAME SQL server. You could have a server configured either as an ORACLE Subscriber or an ORACLE Publisher....! Marked As Answer by RubSay 6 hours 52 minutes ago
Started 2 days, 18 hours ago (2009-12-28 13:08:00)
by Hilary Cotter
Unfortunately this is not a behavior you can modify. Your best best is to script out the linked server and then recreate it after the drop.
Started 2 days, 19 hours ago (2009-12-28 12:01:00)
by Krishna Rajeesh
http://social. msdn.microsoft.com/forums/en-US/sqlr eplication/thread/823a27b7-3ba2-478f-be50-c10126d4 9ee5/ http://social.msdn.microsoft.com/Forums/en-US/sqlr eplication/thread/dcc742fd-6c80-45a5-afb0-493699d0 f2ce Thanks, Krishna Marked As Answer by Derek Dai 14 hours 48 minutes ago
|
|
Hot threads for last week on SQL Server Replication::
Started 1 week, 1 day ago (2009-12-22 15:13:00)
by Sateesh Yele
Can you script out the queries and run them in Query analyzer? Send me the script that causing this error message.
Started 1 week, 1 day ago (2009-12-22 12:23:00)
by Hilary Cotter
This is a feature of merge replication. Ensure that compensate for errors is set to false (this should be the default). This way is a row is part of a conflict in most cases the conflicting information will persist on both sides (ie not be merged). In cases where data falls out of a partition it will be removed from the subscriber database. Set Keep_Partition_Changes='true' in these cases....
Started 1 week, 2 days ago (2009-12-22 06:49:00)
by Venkat Reddy BashiReddy
Hi All, when i try to configure replication on my server it raises an error no( 18483 ) with error report as ' distributor admin is not defined as remote lo gin ' .please suggest me on this to resolve this problem Thanks venkat reddy
Started 1 week ago (2009-12-24 07:20:00)
by Sridhar Boyapati
Hi Pat, Yup.....We can accomplish this requirement but not through Replication... Replication ----------- Replication belongs to Table level and row/column level....even we can filter specific data as well Mirroring--------------If the SQL server is 2005---U can have one primary server and one mirror server---Which is database level......We can have entire database as hot standby server......
Started 2 weeks ago (2009-12-16 22:46:00)
by Sateesh Yele
Consider this action plan. This requires testing but I am sure this would work. Create the publication for the database with @allow_initialize_from_backup option is set to true. Take a backup of the publisher database. Restore the database on the subscriber manually. Rename the old tables to XXX_old. Create new tables with partitions. Bulk copy the data from XXX_old tables to new ...
Started 1 week, 1 day ago (2009-12-22 17:11:00)
by Hilary Cotter
I would strongly advise you not to do this. What this will mean is that your tlogs will bloat and you can only back them up after the log reader agent runs. Press this guy to try to understand his reasoning. If you really need to do this you will need to set your log reader agent on a schedule. Edit the job in the jobs folder to do this.
Started 5 days, 18 hours ago (2009-12-25 13:47:00)
by Hilary Cotter
Use peer to peer or bi-directional transactional replication. You will need to either have a location specific field (ie originator server name) or different identity seeds and an increment of 2. For example one server would have a seed of 1, and the other a seed of 2.
Started 1 day, 23 hours ago (2009-12-29 08:40:00)
by Krishna Rajeesh
Hello, You could find the MSLogreader_history for the last time the log reader agent run. Also, MSdistribution_history for the last time distribution agent run. distribution agent says the last run & how much data is copied in the last run. Its says like "1 transaction(s) with 1 command(s) were delivered" or "No replicated transactions are available" etc in its last run. Thanks, ...
Started 1 year, 2 months ago (2008-10-14 12:10:00)
by Hilary Cotter
Do the following. Note you may have to adjust some of the paths for your SQL Server. use master exec sp_adddistributor @distributor = @@Servername GO -- Adding the agent profiles -- Updating the agent profile defaults exec sp_MSupdate_agenttype_default @profile_id = 1 GO exec sp_MSupdate_agenttype_default @profile_id = 2 GO exec sp_MSupdate_agenttype_default @profile_id = 4 GO exec sp_...
Started 2 days, 18 hours ago (2009-12-28 13:08:00)
by Hilary Cotter
Unfortunately this is not a behavior you can modify. Your best best is to script out the linked server and then recreate it after the drop.
|
|