{"id":19134464,"url":"https://github.com/azerothcore/mysql-tools","last_synced_at":"2026-06-18T03:31:11.833Z","repository":{"id":1432351,"uuid":"1625871","full_name":"azerothcore/mysql-tools","owner":"azerothcore","description":"extended mysql dump and import tool helping with data distrubution and versioning structure","archived":false,"fork":false,"pushed_at":"2021-04-21T06:36:03.000Z","size":1977,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-14T10:40:42.170Z","etag":null,"topics":["azerothcore-tools"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azerothcore.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-04-17T09:52:02.000Z","updated_at":"2025-12-14T22:09:32.000Z","dependencies_parsed_at":"2022-07-29T13:19:07.131Z","dependency_job_id":null,"html_url":"https://github.com/azerothcore/mysql-tools","commit_stats":null,"previous_names":["udw/mysql-tools"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/azerothcore/mysql-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azerothcore%2Fmysql-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azerothcore%2Fmysql-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azerothcore%2Fmysql-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azerothcore%2Fmysql-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azerothcore","download_url":"https://codeload.github.com/azerothcore/mysql-tools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azerothcore%2Fmysql-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34475375,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azerothcore-tools"],"created_at":"2024-11-09T06:26:40.159Z","updated_at":"2026-06-18T03:31:11.795Z","avatar_url":"https://github.com/azerothcore.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"* Copyright (C) 2007 - 2015 Hyperweb2 All rights reserved.\n* GNU General Public License version 3; see www.hyperweb2.com/terms/\n\n#\n# HOW TO USE MYSQL_* tools\n#\n\nBefore starting to dump/import, please rename mysql_config.dist in mysql_config and change infos using your configurations\nIf you are using AppArmor , edit /etc/apparmor.d/usr.sbin.mysqld and add directory that must be used by the dump\n\nto easy dump/import the database, use ./mysql-tools command that includes dump and import scripts, instead if you need to separate the functions ,\n use ./mysql-dump and ./mysql-import.\n\nmysql-tools utilization:\n\n#  This script automatically dump and import sql files\n#\n#\tsyntax: ./mysql_tools \u003copt\u003e \u003cdatabase\u003e \u003ctables\u003e \u003cmethod\u003e \u003cconfigpath\u003e\n#\tOPT -\u003e dump/import   ( export / import tables )\n#\tTABLES -\u003e use \",\" to separate table names; ex: mysql_dump \"\" \"table1,table2..tableN\". Leave blank to dump all tables.\n#\tDATABASE -\u003e specify database to process, use \"\" for default ( see in mysql-config )\n#\tMETHOD -\u003e 0/1 (0: no fulldb,1: use fulldb) default: ( see in mysql-config )\n#\tCONFIGPATH -\u003e specify alternative path of config file, use \"\" to check in source folder\n#\n\n\nmysql-dump utilization: \n\n# This script will export all tables from specified db and tables in separated sql files\n# it can also export the full db in a single sql file.\n#\n# syntax: ./mysql_dump \u003cdatabase\u003e \u003ctables\u003e \u003cmethod\u003e \u003cconfigpath\u003e\n# options are not required, because values can be defined in config file:\n# DATABASE -\u003e specify database to dump, use \"\" for default ( see in mysql-config )\n# TABLES -\u003e use \"\" to dump all tables. Use \",\" to separate table names; ex: mysql_dump \"\" \"table1,table2..tableN\" \n# METHOD -\u003e 0/1 (0: no fulldb,1: with fulldb) default: ( see in mysql-config )\n# CONFIGPATH -\u003e specify alternative path for config file, use \"\" to check in source folder.\n#\n\n\nmysql-import utilization:\n\n# This script will import the contents of the sql/ directory to the MySQL database.\n# You can choose to import table by table, or the entire db\n#\n# syntax: ./mysql_import \u003cdatabase\u003e \u003ctables\u003e \u003cmethod\u003e \u003cconfigpath\u003e\n# options are not required, because values can be defined in config file:\n#\n# DATABASE -\u003e specify database to dump, use \"\" for default ( see in mysql-config )\n# TABLES -\u003e use \",\" to separate table names; ex: mysql_dump \"\" \"table1,table2..tableN\"    ..OR use \"\" to dump all tables.\n# METHOD -\u003e 1/0  ( 1: by folder, 0: by full dump) default: ( see in mysql-config )\n# CONFIGPATH -\u003e specify alternative path for config file, use \"\" to check in source folder.\n#\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazerothcore%2Fmysql-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazerothcore%2Fmysql-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazerothcore%2Fmysql-tools/lists"}