Implementing Replication on existing database
I'm a developer but I need to implement replication on an existing database. I'm a bit familiar with replication and I already was able to implement it but I had a few issues and the two most notable ones are:
Replication job affects maintenance plan -- it seems like the maintenance plan jobs can't be run because another job is currently running. I know some replication jobs are ran periodically. Can I avoid certain time of the day so it won't interfere with the maintenance plan?
The Distribution database grew too large and caused a no free space issue. Since this is transactional replication, publisher is continuously sending copies of the commands to the subscriber. How can I minimize the size of distribution database?
Replication has been stopped and the disk space issue is now fixed but this might happen again in the future. Before I attempt to set it up again, what should I take note of to set up the replication successfully next time?
sql-server sql-server-2014 transactional-replication
bumped to the homepage by Community♦ 18 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm a developer but I need to implement replication on an existing database. I'm a bit familiar with replication and I already was able to implement it but I had a few issues and the two most notable ones are:
Replication job affects maintenance plan -- it seems like the maintenance plan jobs can't be run because another job is currently running. I know some replication jobs are ran periodically. Can I avoid certain time of the day so it won't interfere with the maintenance plan?
The Distribution database grew too large and caused a no free space issue. Since this is transactional replication, publisher is continuously sending copies of the commands to the subscriber. How can I minimize the size of distribution database?
Replication has been stopped and the disk space issue is now fixed but this might happen again in the future. Before I attempt to set it up again, what should I take note of to set up the replication successfully next time?
sql-server sql-server-2014 transactional-replication
bumped to the homepage by Community♦ 18 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I'm a developer but I need to implement replication on an existing database. I'm a bit familiar with replication and I already was able to implement it but I had a few issues and the two most notable ones are:
Replication job affects maintenance plan -- it seems like the maintenance plan jobs can't be run because another job is currently running. I know some replication jobs are ran periodically. Can I avoid certain time of the day so it won't interfere with the maintenance plan?
The Distribution database grew too large and caused a no free space issue. Since this is transactional replication, publisher is continuously sending copies of the commands to the subscriber. How can I minimize the size of distribution database?
Replication has been stopped and the disk space issue is now fixed but this might happen again in the future. Before I attempt to set it up again, what should I take note of to set up the replication successfully next time?
sql-server sql-server-2014 transactional-replication
I'm a developer but I need to implement replication on an existing database. I'm a bit familiar with replication and I already was able to implement it but I had a few issues and the two most notable ones are:
Replication job affects maintenance plan -- it seems like the maintenance plan jobs can't be run because another job is currently running. I know some replication jobs are ran periodically. Can I avoid certain time of the day so it won't interfere with the maintenance plan?
The Distribution database grew too large and caused a no free space issue. Since this is transactional replication, publisher is continuously sending copies of the commands to the subscriber. How can I minimize the size of distribution database?
Replication has been stopped and the disk space issue is now fixed but this might happen again in the future. Before I attempt to set it up again, what should I take note of to set up the replication successfully next time?
sql-server sql-server-2014 transactional-replication
sql-server sql-server-2014 transactional-replication
asked Feb 1 '17 at 7:37
BahamutBahamut
1305
1305
bumped to the homepage by Community♦ 18 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 18 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
What kinds of tasks are the maintenance plans executing. The only replication job I can imagine interfering with another t-sql task is the snapshot job. How big is the db (tables and total size)? How many publications are you using? I typically create several publications.
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f162834%2fimplementing-replication-on-existing-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
What kinds of tasks are the maintenance plans executing. The only replication job I can imagine interfering with another t-sql task is the snapshot job. How big is the db (tables and total size)? How many publications are you using? I typically create several publications.
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
add a comment |
What kinds of tasks are the maintenance plans executing. The only replication job I can imagine interfering with another t-sql task is the snapshot job. How big is the db (tables and total size)? How many publications are you using? I typically create several publications.
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
add a comment |
What kinds of tasks are the maintenance plans executing. The only replication job I can imagine interfering with another t-sql task is the snapshot job. How big is the db (tables and total size)? How many publications are you using? I typically create several publications.
What kinds of tasks are the maintenance plans executing. The only replication job I can imagine interfering with another t-sql task is the snapshot job. How big is the db (tables and total size)? How many publications are you using? I typically create several publications.
answered Feb 2 '17 at 4:06
Bret KnollBret Knoll
11
11
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
add a comment |
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
I only created 1 publication. There's a recurring job for the distribution I think. I deleted the publications and the job already because it keeps running therefore making the distribution database grow unnecessarily.
– Bahamut
Feb 2 '17 at 7:55
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
how many tables and how big is the db? I think this is still important. What if you create publication with 1 article? Do you have the same issues? What is the status of the publication, subscription and distribution in Replication Monitor. I have never had the distribution database fill up, but believe it will if the subscription is not receiving the transactions.
– Bret Knoll
Feb 2 '17 at 15:46
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f162834%2fimplementing-replication-on-existing-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown