Is it possible to take the table level backup in mysql using any of the script?
I am new to MySQL and I am in need of the script which is taking backup of multiple tables from the multiple databases in single file in MySQL?
mysql backup scripting mysqladmin
bumped to the homepage by Community♦ 1 min 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 am new to MySQL and I am in need of the script which is taking backup of multiple tables from the multiple databases in single file in MySQL?
mysql backup scripting mysqladmin
bumped to the homepage by Community♦ 1 min 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 am new to MySQL and I am in need of the script which is taking backup of multiple tables from the multiple databases in single file in MySQL?
mysql backup scripting mysqladmin
I am new to MySQL and I am in need of the script which is taking backup of multiple tables from the multiple databases in single file in MySQL?
mysql backup scripting mysqladmin
mysql backup scripting mysqladmin
edited Mar 19 '16 at 9:41
Azhagiri
asked Mar 19 '16 at 9:36
AzhagiriAzhagiri
11
11
bumped to the homepage by Community♦ 1 min 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♦ 1 min 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
To dump only specific tables from a database, name them on the command line following the database name:
mysqldump my_database table1 table3 table5 > dump.sql
To dump only specific tables from multiple database, use mysqldump again, but append to the end of the previously created file:
mysqldump my_database2 table1 table3 table5 >> dump.sql
Note the >>
sign
Reference:
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-sql-format.html
https://stackoverflow.com/questions/8228116/mysqldump-tables-from-different-databases
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
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%2f132727%2fis-it-possible-to-take-the-table-level-backup-in-mysql-using-any-of-the-script%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
To dump only specific tables from a database, name them on the command line following the database name:
mysqldump my_database table1 table3 table5 > dump.sql
To dump only specific tables from multiple database, use mysqldump again, but append to the end of the previously created file:
mysqldump my_database2 table1 table3 table5 >> dump.sql
Note the >>
sign
Reference:
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-sql-format.html
https://stackoverflow.com/questions/8228116/mysqldump-tables-from-different-databases
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
add a comment |
To dump only specific tables from a database, name them on the command line following the database name:
mysqldump my_database table1 table3 table5 > dump.sql
To dump only specific tables from multiple database, use mysqldump again, but append to the end of the previously created file:
mysqldump my_database2 table1 table3 table5 >> dump.sql
Note the >>
sign
Reference:
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-sql-format.html
https://stackoverflow.com/questions/8228116/mysqldump-tables-from-different-databases
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
add a comment |
To dump only specific tables from a database, name them on the command line following the database name:
mysqldump my_database table1 table3 table5 > dump.sql
To dump only specific tables from multiple database, use mysqldump again, but append to the end of the previously created file:
mysqldump my_database2 table1 table3 table5 >> dump.sql
Note the >>
sign
Reference:
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-sql-format.html
https://stackoverflow.com/questions/8228116/mysqldump-tables-from-different-databases
To dump only specific tables from a database, name them on the command line following the database name:
mysqldump my_database table1 table3 table5 > dump.sql
To dump only specific tables from multiple database, use mysqldump again, but append to the end of the previously created file:
mysqldump my_database2 table1 table3 table5 >> dump.sql
Note the >>
sign
Reference:
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-sql-format.html
https://stackoverflow.com/questions/8228116/mysqldump-tables-from-different-databases
edited May 23 '17 at 12:40
Community♦
1
1
answered Mar 19 '16 at 10:07
Vladimir S.Vladimir S.
375211
375211
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
add a comment |
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
Thanks for the response Vladimir and is there any script to automate this thing
– Azhagiri
Mar 19 '16 at 10:31
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
you should try atleast first . No one can give you ready and cooked food to eat. We can give you items to cook
– Ankit Kapoor
Jun 23 '17 at 10:12
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%2f132727%2fis-it-possible-to-take-the-table-level-backup-in-mysql-using-any-of-the-script%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