Is it possible to take the table level backup in mysql using any of the script?












0















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?










share|improve this question
















bumped to the homepage by Community 9 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    0















    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?










    share|improve this question
















    bumped to the homepage by Community 9 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 19 '16 at 9:41







      Azhagiri

















      asked Mar 19 '16 at 9:36









      AzhagiriAzhagiri

      11




      11





      bumped to the homepage by Community 9 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 9 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          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






          share|improve this answer


























          • 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













          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          0














          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






          share|improve this answer


























          • 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


















          0














          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






          share|improve this answer


























          • 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
















          0












          0








          0







          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






          share|improve this answer















          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







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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





















          • 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




















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          SQL Server 17 - Attemping to backup to remote NAS but Access is denied

          Always On Availability groups resolving state after failover - Remote harden of transaction...

          Restoring from pg_dump with foreign key constraints