Manually configure master databases
If the Commerce application is already in production or if you have already installed custom code or components, you might need to configure split databases manually. Before continuing, contact Adobe Commerce Support to see if this is necessary in your case.
Manually splitting databases involves:
-
Create the checkout and order management system (OMS) databases
-
Run a series of SQL scripts that:
- Drop foreign keys
- Back up sales and quote database tables
- Move tables from your main database to the sales and quote databases
This topic uses the following naming conventions:
-
The main database name is
magento
and its username and password are bothmagento
-
The quote database name is
magento_quote
and its username and password are bothmagento_quote
The quote database is also referred to as the checkout database.
-
The sales database name is
magento_sales
and its username and password are bothmagento_sales
The sales database is also referred to as the OMS database.
Back up the Commerce system
Adobe strongly recommends that you back up your current database and file system so that you can restore it if you experience issues during the process.
To back up your system:
-
Log in to your Commerce server as, or switch to, the file system owner.
-
Enter the following commands:
code language-bash magento setup:backup --code --media --db
-
Continue with the next section.
Set up additional master databases
This section discusses how to create database instances for sales and quote tables.
To create sales and OMS quote databases:
-
Log in to your database server as any user.
-
Enter the following command to get to a MySQL command prompt:
code language-bash mysql -u root -p
-
Enter the MySQL
root
user’s password when prompted. -
Enter the following commands in the order shown to create database instances named
magento_quote
andmagento_sales
with the same usernames and passwords:code language-shell create database magento_quote; GRANT ALL ON magento_quote.* TO magento_quote@localhost IDENTIFIED BY 'magento_quote';
code language-shell create database magento_sales; GRANT ALL ON magento_sales.* TO magento_sales@localhost IDENTIFIED BY 'magento_sales';
-
Enter
exit
to quit the command prompt. -
Verify the databases, one at a time:
quote database:
code language-bash mysql -u magento_quote -p
code language-shell exit
code language-bash mysql -u magento_quote -p
code language-bash mysql -u magento_sales -p
code language-shell exit
If the MySQL monitor displays, you created the database properly. If an error displays, repeat the preceding commands.
-
Continue with the next section.
Configure the sales database
This section discusses how to create and run SQL scripts that alter quote database tables and back up data from those tables.
Sales database table names start with:
salesrule_
sales_
magento_sales_
- The
magento_customercustomattributes_sales_flat_order
table is also affected
For more information, see:
Create sales database SQL scripts
Create the following SQL scripts in a location that is accessible by the user as whom you log in to your Commerce server. For example, if you log in or run commands as root
, you can create the scripts in the /root/sql-scripts
directory.
Remove foreign keys
This script removes foreign keys that refer to non-sales tables from the sales database.
Create the following script and give it a name like 1_foreign-sales.sql
. Replace <your main DB name>
with the name of your database.
use <your main DB name>;
ALTER TABLE salesrule_coupon_aggregated_order DROP FOREIGN KEY SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID;
ALTER TABLE salesrule_coupon_aggregated DROP FOREIGN KEY SALESRULE_COUPON_AGGREGATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE salesrule_coupon_aggregated_updated DROP FOREIGN KEY SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE salesrule_coupon_usage DROP FOREIGN KEY SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID;
ALTER TABLE salesrule_customer_group DROP FOREIGN KEY SALESRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID;
ALTER TABLE salesrule_customer DROP FOREIGN KEY SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID;
ALTER TABLE salesrule_label DROP FOREIGN KEY SALESRULE_LABEL_STORE_ID_STORE_STORE_ID;
ALTER TABLE salesrule_product_attribute DROP FOREIGN KEY SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID;
ALTER TABLE salesrule_product_attribute DROP FOREIGN KEY SALESRULE_PRD_ATTR_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID;
ALTER TABLE salesrule_product_attribute DROP FOREIGN KEY SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID;
ALTER TABLE salesrule_website DROP FOREIGN KEY SALESRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID;
ALTER TABLE sales_bestsellers_aggregated_daily DROP FOREIGN KEY SALES_BESTSELLERS_AGGRED_DAILY_PRD_ID_CAT_PRD_ENTT_ENTT_ID;
ALTER TABLE sales_bestsellers_aggregated_monthly DROP FOREIGN KEY SALES_BESTSELLERS_AGGRED_MONTHLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID;
ALTER TABLE sales_bestsellers_aggregated_yearly DROP FOREIGN KEY SALES_BESTSELLERS_AGGRED_YEARLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID;
ALTER TABLE sales_bestsellers_aggregated_daily DROP FOREIGN KEY SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_bestsellers_aggregated_monthly DROP FOREIGN KEY SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_bestsellers_aggregated_yearly DROP FOREIGN KEY SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_creditmemo_grid DROP FOREIGN KEY SALES_CREDITMEMO_GRID_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_creditmemo DROP FOREIGN KEY SALES_CREDITMEMO_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_invoiced_aggregated_order DROP FOREIGN KEY SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_invoiced_aggregated DROP FOREIGN KEY SALES_INVOICED_AGGREGATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_invoice_grid DROP FOREIGN KEY SALES_INVOICE_GRID_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_invoice DROP FOREIGN KEY SALES_INVOICE_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_order_aggregated_created DROP FOREIGN KEY SALES_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_order_aggregated_updated DROP FOREIGN KEY SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_order DROP FOREIGN KEY SALES_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID;
ALTER TABLE sales_order_grid DROP FOREIGN KEY SALES_ORDER_GRID_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID;
ALTER TABLE sales_order_grid DROP FOREIGN KEY SALES_ORDER_GRID_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_order_item DROP FOREIGN KEY SALES_ORDER_ITEM_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_order_status_label DROP FOREIGN KEY SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_order DROP FOREIGN KEY SALES_ORDER_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_refunded_aggregated_order DROP FOREIGN KEY SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_refunded_aggregated DROP FOREIGN KEY SALES_REFUNDED_AGGREGATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_shipment_grid DROP FOREIGN KEY SALES_SHIPMENT_GRID_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_shipment DROP FOREIGN KEY SALES_SHIPMENT_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_shipping_aggregated_order DROP FOREIGN KEY SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID;
ALTER TABLE sales_shipping_aggregated DROP FOREIGN KEY SALES_SHIPPING_AGGREGATED_STORE_ID_STORE_STORE_ID;
ALTER TABLE magento_sales_creditmemo_grid_archive DROP FOREIGN KEY MAGENTO_SALES_CREDITMEMO_GRID_ARCHIVE_STORE_ID_STORE_STORE_ID;
ALTER TABLE magento_sales_invoice_grid_archive DROP FOREIGN KEY MAGENTO_SALES_INVOICE_GRID_ARCHIVE_STORE_ID_STORE_STORE_ID;
ALTER TABLE magento_sales_order_grid_archive DROP FOREIGN KEY MAGENTO_SALES_ORDER_GRID_ARCHIVE_CSTR_ID_CSTR_ENTT_ENTT_ID;
ALTER TABLE magento_sales_order_grid_archive DROP FOREIGN KEY MAGENTO_SALES_ORDER_GRID_ARCHIVE_STORE_ID_STORE_STORE_ID;
ALTER TABLE magento_sales_shipment_grid_archive DROP FOREIGN KEY MAGENTO_SALES_SHIPMENT_GRID_ARCHIVE_STORE_ID_STORE_STORE_ID;
ALTER TABLE downloadable_link_purchased_item DROP FOREIGN KEY DL_LNK_PURCHASED_ITEM_ORDER_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID;
ALTER TABLE downloadable_link_purchased DROP FOREIGN KEY DOWNLOADABLE_LINK_PURCHASED_ORDER_ID_SALES_ORDER_ENTITY_ID;
ALTER TABLE paypal_billing_agreement_order DROP FOREIGN KEY PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID;
Configure the sales database
Run the preceding script:
-
Log in to your MySQL database as the
root
or administrative user:code language-bash mysql -u root -p
-
At the
mysql>
prompt, run the script as follows:code language-shell source <path>/<script>.sql
For example,
code language-shell source /root/sql-scripts/1_foreign-sales.sql
-
After the script run, enter
exit
.
Back up sales data
This section discusses how to back up sales tables from the main Commerce database so you can restore them in the separate sales database.
If you are currently at the mysql>
prompt, enter exit
to return to the command shell.
Run the following mysqldump
commands, one at a time, from the command shell. In each, substitute the following:
<your database root username>
with the name of your database root user<your database root user password>
with the user’s password<your main Commerce DB name>
with the name of your Commerce database<path>
with a writable file system path
Script 1
mysqldump -u <your database root username> -p <your main Commerce DB name> sales_bestsellers_aggregated_daily sales_bestsellers_aggregated_monthly sales_bestsellers_aggregated_yearly sales_creditmemo sales_creditmemo_comment sales_creditmemo_grid sales_creditmemo_item sales_invoice sales_invoice_comment sales_invoice_grid sales_invoice_item sales_invoiced_aggregated sales_invoiced_aggregated_order sales_order sales_order_address sales_order_aggregated_created sales_order_aggregated_updated sales_order_grid sales_order_item sales_order_payment sales_order_status sales_order_status_history sales_order_status_label sales_order_status_state sales_order_tax sales_order_tax_item sales_payment_transaction sales_refunded_aggregated sales_refunded_aggregated_order sales_sequence_meta sales_sequence_profile sales_shipment sales_shipment_comment sales_shipment_grid sales_shipment_item sales_shipment_track sales_shipping_aggregated sales_shipping_aggregated_order > /<path>/sales.sql
Script 2
mysqldump -u <your database root username> -p <your main Commerce DB name> magento_sales_creditmemo_grid_archive magento_sales_invoice_grid_archive magento_sales_order_grid_archive magento_sales_shipment_grid_archive > /<path>/salesarchive.sql
Script 3
mysqldump -u <your database root username> -p <your main Commerce DB name> magento_customercustomattributes_sales_flat_order magento_customercustomattributes_sales_flat_order_address > /<path>/customercustomattributes.sql
Script 4
mysqldump -u <your database root username> -p <your main Commerce DB name> sequence_creditmemo_0 sequence_creditmemo_1 sequence_invoice_0 sequence_invoice_1 sequence_order_0 sequence_order_1 sequence_rma_item_0 sequence_rma_item_1 sequence_shipment_0 sequence_shipment_1 > /<path>/sequence.sql
Restore sales data
This script restores sales data in your quote database.
NDB requirement
If you are using a Network Database (NDB) cluster:
-
Convert tables from InnoDb to NDB type in dump files:
code language-bash sed -ei 's/InnoDb/NDB/' <file name>.sql
-
Remove rows with a FULLTEXT key from dumps because NDB tables do not support FULLTEXT.
Restore the data
Run the following commands:
mysql -u <root username> -p <your sales DB name> < /<path>/sales.sql
mysql -u <root username> -p <your sales DB name> < /<path>/sequence.sql
mysql -u <root username> -p <your sales DB name> < /<path>/salesarchive.sql
mysql -u <root username> -p <your sales DB name> < /<path>/customercustomattributes.sql
Where
-
<your sales DB name>
with the name of your sales database.In this topic, the sample database name is
magento_sales
. -
<root username>
with your MySQL root username -
<root user password>
with the user’s password -
Verify the location of the backup files that you created earlier (for example,
/var/sales.sql
)
Configure the quote database
This section discusses tasks required to drop foreign keys from sales database tables and move tables to the sales database.
Quote database table names start with quote
. The magento_customercustomattributes_sales_flat_quote
and magento_customercustomattributes_sales_flat_quote_address
tables are also affected
Drop foreign keys from quote tables
This script removes foreign keys that refer to non-quote tables from quote tables. Replace <your main Commerce DB name>
with the name of your Commerce database.
Create the following script and give it a name like 2_foreign-key-quote.sql
:
use <your main DB name>;
ALTER TABLE quote DROP FOREIGN KEY QUOTE_STORE_ID_STORE_STORE_ID;
ALTER TABLE quote_item DROP FOREIGN KEY QUOTE_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID;
ALTER TABLE quote_item DROP FOREIGN KEY QUOTE_ITEM_STORE_ID_STORE_STORE_ID;
Run the script as follows:
-
Log in to your MySQL database as the root or administrative user:
code language-bash mysql -u root -p
-
At the
mysql >
prompt, run the script as follows:source <path>/<script>.sql
For example,
code language-shell source /root/sql-scripts/2_foreign-key-quote.sql
-
After the script runs, enter
exit
.
Back up quote tables
This section discusses how to back up quote tables from the main database and restore them in your quote database.
Run the following command from a command prompt:
mysqldump -u <your database root username> -p <your main Commerce DB name> magento_customercustomattributes_sales_flat_quote magento_customercustomattributes_sales_flat_quote_address quote quote_address quote_address_item quote_item quote_item_option quote_payment quote_shipping_rate quote_id_mask > /<path>/quote.sql;
NDB requirement
If you are using a Network Database (NDB) cluster:
-
Convert tables from InnoDb to NDB type in dump files:
code language-bash sed -ei 's/InnoDb/NDB/' <file name>.sql
-
Remove rows with a FULLTEXT key from dumps because NDB tables do not support FULLTEXT.
Restore tables to the quote database
mysql -u root -p magento_quote < /<path>/quote.sql
Drop sales and quote tables from the database
This script sales and quote tables from the Commerce database. Replace <your main DB name>
with the name of your Commerce database.
Create the following script and give it a name like 3_drop-tables.sql
:
use <your main DB name>;
SET foreign_key_checks = 0;
DROP TABLE magento_customercustomattributes_sales_flat_quote;
DROP TABLE magento_customercustomattributes_sales_flat_quote_address;
DROP TABLE quote;
DROP TABLE quote_address;
DROP TABLE quote_address_item;
DROP TABLE quote_item;
DROP TABLE quote_item_option;
DROP TABLE quote_payment;
DROP TABLE quote_shipping_rate;
DROP TABLE quote_id_mask;
DROP TABLE sales_bestsellers_aggregated_daily;
DROP TABLE sales_bestsellers_aggregated_monthly;
DROP TABLE sales_bestsellers_aggregated_yearly;
DROP TABLE sales_creditmemo;
DROP TABLE sales_creditmemo_comment;
DROP TABLE sales_creditmemo_grid;
DROP TABLE sales_creditmemo_item;
DROP TABLE sales_invoice;
DROP TABLE sales_invoice_comment;
DROP TABLE sales_invoice_grid;
DROP TABLE sales_invoice_item;
DROP TABLE sales_invoiced_aggregated;
DROP TABLE sales_invoiced_aggregated_order;
DROP TABLE sales_order;
DROP TABLE sales_order_address;
DROP TABLE sales_order_aggregated_created;
DROP TABLE sales_order_aggregated_updated;
DROP TABLE sales_order_grid;
DROP TABLE sales_order_item;
DROP TABLE sales_order_payment;
DROP TABLE sales_order_status;
DROP TABLE sales_order_status_history;
DROP TABLE sales_order_status_label;
DROP TABLE sales_order_status_state;
DROP TABLE sales_order_tax;
DROP TABLE sales_order_tax_item;
DROP TABLE sales_payment_transaction;
DROP TABLE sales_refunded_aggregated;
DROP TABLE sales_refunded_aggregated_order;
DROP TABLE sales_sequence_meta;
DROP TABLE sales_sequence_profile;
DROP TABLE sales_shipment;
DROP TABLE sales_shipment_comment;
DROP TABLE sales_shipment_grid;
DROP TABLE sales_shipment_item;
DROP TABLE sales_shipment_track;
DROP TABLE sales_shipping_aggregated;
DROP TABLE sales_shipping_aggregated_order;
DROP TABLE magento_sales_creditmemo_grid_archive;
DROP TABLE magento_sales_invoice_grid_archive;
DROP TABLE magento_sales_order_grid_archive;
DROP TABLE magento_sales_shipment_grid_archive;
DROP TABLE magento_customercustomattributes_sales_flat_order;
DROP TABLE magento_customercustomattributes_sales_flat_order_address;
DROP TABLE sequence_creditmemo_0;
DROP TABLE sequence_creditmemo_1;
DROP TABLE sequence_invoice_0;
DROP TABLE sequence_invoice_1;
DROP TABLE sequence_order_0;
DROP TABLE sequence_order_1;
DROP TABLE sequence_rma_item_0;
DROP TABLE sequence_rma_item_1;
DROP TABLE sequence_shipment_0;
DROP TABLE sequence_shipment_1;
SET foreign_key_checks = 1;
Run the script as follows:
-
Log in to your MySQL database as the root or administrative user:
code language-bash mysql -u root -p
-
At the
mysql>
prompt, run the script as follows:code language-shell source <path>/<script>.sql
For example,
code language-shell source /root/sql-scripts/3_drop-tables.sql
-
After the script runs, enter
exit
.
Update your deployment configuration
The final step in manually splitting databases is to add connection and resource information to Commerce’s deployment configuration, env.php
.
To update the deployment configuration:
-
Log in to your Commerce server as, or switch to, the file system owner.
-
Back up your deployment configuration:
code language-bash cp <magento_root>/app/etc/env.php <magento_root>/app/etc/env.php.orig
-
Open
<magento_root>/app/etc/env.php
in a text editor and update it using the guidelines discussed in the following sections.
Update database connections
Locate the block starting with 'default'
(under 'connection'
) and add 'checkout'
and 'sales'
sections. Replace sample values with values appropriate for your site.
'default' =>
array (
'host' => 'localhost',
'dbname' => 'magento',
'username' => 'magento',
'password' => 'magento',
'model' => 'mysql4',
'engine' => 'innodb',
'initStatements' => 'SET NAMES utf8;',
'active' => '1',
),
'checkout' =>
array (
'host' => 'localhost',
'dbname' => 'magento_quote',
'username' => 'magento_quote',
'password' => 'magento_quote',
'model' => 'mysql4',
'engine' => 'innodb',
'initStatements' => 'SET NAMES utf8;',
'active' => '1',
),
'sales' =>
array (
'host' => 'localhost',
'dbname' => 'magento_sales',
'username' => 'magento_sales',
'password' => 'magento_sales',
'model' => 'mysql4',
'engine' => 'innodb',
'initStatements' => 'SET NAMES utf8;',
'active' => '1',
),
),
Update resources
Locate the block starting with 'resource'
and add 'checkout'
and 'sales'
sections to it as follows:
'resource' =>
array (
'default_setup' =>
array (
'connection' => 'default',
),
'checkout' =>
array (
'connection' => 'checkout',
),
'sales' =>
array (
'connection' => 'sales',
),
Reference scripts
This section provides scripts that you can run that print a complete list of affected tables without performing any actions on them. You can use them to see what tables are affected before you manually split databases, which can be useful if you use extensions that customize the database schema.
To use these scripts:
-
Create a SQL script with the contents of each script in this section.
-
In each script, replace
<your main DB name>
with the name of your Commerce database.In this topic, the sample database name is
magento
. -
Run each script from the
mysql>
prompt assource <script name>
-
Examine the output.
-
Copy the result of each script to another SQL script, removing the pipe characters (
|
). -
Run each script from the
mysql>
prompt assource <script name>
.Running this second script performs the actions in your main Commerce database.
Remove foreign keys (sales tables)
This script removes foreign keys that refer to non-sales tables from the sales database.
select concat(
'ALTER TABLE ',
replace(for_name, '<your main DB name>/', ''),
' DROP FOREIGN KEY ',
replace(id, '<your main DB name>/', ''),
';'
)
from information_schema.INNODB_SYS_FOREIGN
where for_name like '<your main DB name>/|sales_%' escape '|'
and ref_name not like '<your main DB name>/|sales_%' escape '|'
union all
select concat(
'ALTER TABLE ',
replace(for_name, '<your main DB name>/', ''),
' DROP FOREIGN KEY ',
replace(id, '<your main DB name>/', ''),
';'
)
from information_schema.INNODB_SYS_FOREIGN
where for_name like '<your main DB name>/|magento_sales|_%' escape '|'
and ref_name not like '<your main DB name>/|sales|_%' escape '|'
;
Remove foreign keys (quote tables)
This script removes foreign keys that refer to non-quote tables from quote tables.
select concat(
'ALTER TABLE ',
replace(for_name, '<your main DB name>/', ''),
' DROP FOREIGN KEY ',
replace(id, '<your main DB name>/', ''),
';'
)
from information_schema.INNODB_SYS_FOREIGN
where for_name like '<your main DB name>/%'
and ref_name like '<your main DB name>/sales\_%'
union all
select concat(
'ALTER TABLE ',
replace(for_name, '<your main DB name>/', ''),
' DROP FOREIGN KEY ',
replace(id, '<your main DB name>/', ''),
';'
)
from information_schema.INNODB_SYS_FOREIGN
where for_name like '<your main DB name>/%'
and ref_name like '<your main DB name>/magento_sales\_%'
union all
select concat(
'ALTER TABLE ',
replace(for_name, '<your main DB name>/', ''),
' DROP FOREIGN KEY ',
replace(id, '<your main DB name>/', ''),
';'
)
from information_schema.INNODB_SYS_FOREIGN
where for_name like '<your main DB name>/%'
and ref_name like '<your main DB name>/magento_customercustomattributes\_%'
;
Drop sales tables
This script drops sales tables from the Commerce database.
use <your main DB name>;
select ' SET foreign_key_checks = 0;' as querytext
union all
select
concat('DROP TABLE IF EXISTS ' , table_name, ';')
from information_schema.tables
where table_schema = '<your main DB name>'
and table_name like 'sales/_%' escape '/'
union all
select
concat('DROP TABLE IF EXISTS ' , table_name, ';')
from information_schema.tables
where table_schema = '<your main DB name>'
and table_name like 'magento_sales/_%' escape '/'
union all
select
concat('DROP TABLE IF EXISTS ' , table_name, ';')
from information_schema.tables
where table_schema = '<your main DB name>'
and table_name like 'magento_customercustomattributes_sales_flat_order%' escape '/'
union all
select
concat('DROP TABLE IF EXISTS ' , table_name, ';')
from information_schema.tables
where table_schema = '<your main DB name>'
and table_name like 'sequence/_%' escape '/'
union all
select 'SET foreign_key_checks = 1;';
Drop quote tables
Drop all tables that start with quote_
.