Hướng dẫn frm and ibd files in mysql - các tệp frm và ibd trong mysql

Tôi thực sự đánh giá cao ECD. Những gì làm việc cho tôi:

1.- Tôi đã có một bản sao lưu của cơ sở một vài tháng trước, điều này đã giúp tôi nâng bản sao lưu này trong XAMPP trong Windows 10 và tạo các bảng để có cấu trúc (Cấu hình: Windows 10, XAMPP-Windows-X64-7.1.30- 5-VC14) Tệp cấu hình MySQL My.ini ở cuối I had a backup of the base a few months ago this helped me to lift this backup in xampp in Windows 10 and create the tables to have the structure (configuration: Windows 10, xampp-windows-x64-7.1.30-5-VC14) mysql my.ini configuration file at the end

NOTE: Some tables did not have ROW_FORMAT = COMPACT, so I went to operations on each 
    table and changed it manually.
    (If I did not do that, an error appeared and I did not let the import).

NOTE2: I had the backup of months ago but it should also work by first recovering 
    the structure of the .frm files in case of not having a backup at hand.
    (You can try this link:
    https://www.percona.com/blog/2014/01/02/recover-table-structure-frm-files-mysql- 
    utilities/)

2.- Có cơ sở dữ liệu cũ, tôi đã tiến hành thực hiện không gian bảng thay đổi XXX cho mỗi bảng trong cơ sở dữ liệu mà tôi muốn khôi phục, sau đó các tệp .ibd của thư mục dữ liệu trong C: / XAMPP / MySQL / Data / System đã bị xóa (trong trường hợp này là con đường này) Having the old database up, I proceeded to execute alter table xxx discard tablespace for each table in the database that I wanted to recover, then the .ibd files of the data folder in C: / xampp / mysql / data / system had been deleted (in this case it is this path)

3.- Tôi đã tiến hành sao chép các tệp .ibd từ cơ sở dữ liệu tôi muốn khôi phục vào thư mục XAMPP của cơ sở dữ liệu cũ I proceeded to copy the .ibd files from the database I wanted to recover to the xampp folder of the old database

4.- Có các tệp được sao chép, chạy: thay đổi không gian bảng nhập bảng xxx cho mỗi bảng trong cơ sở dữ liệu, cảnh báo sẽ xuất hiện nhưng chúng tôi sẽ bỏ qua nó, dữ liệu sẽ được tải trong bảng và có thể được xuất sau. Having the files copied, run: alter table xxx import tablespace For each table in the database, a warning will appear but we will ignore it, the data will be loaded in the table and can be exported later.

5.- Xuất toàn bộ cơ sở dữ liệu vào một tệp SQL và tiến hành xây dựng nó trong sản xuất và thành công! Export the entire database into an sql file and proceed to build it in production and success!

# Example MySQL config file for small systems.
#
# This is for a system with little memory (<= 64M) where MySQL is only used
# from time to time and it's important that the mysqld daemon
# doesn't use much resources.
#
# You can copy this file to
# C:/xampp/mysql/bin/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is C:/xampp/mysql/data) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client] 
# password       = your_password 
port            = 3306 
socket          = "C:/xampp/mysql/mysql.sock"


# Here follows entries for some specific programs 

# The MySQL server
[mysqld]
port= 3306
socket = "C:/xampp/mysql/mysql.sock"
basedir = "C:/xampp/mysql" 
tmpdir = "C:/xampp/tmp" 
datadir = "C:/xampp/mysql/data"
pid_file = "mysql.pid"
# enable-named-pipe
key_buffer = 160M
max_allowed_packet = 300M
sort_buffer_size = 1204K
net_buffer_length = 80K
read_buffer_size = 512K
read_rnd_buffer_size = 1024K
myisam_sort_buffer_size = 8M
log_error = "mysql_error.log"

# Change here for bind listening
# bind-address="127.0.0.1" 
# bind-address = ::1          # for ipv6

# Where do all the plugins live
plugin_dir = "C:/xampp/mysql/lib/plugin/" 

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
# commented in by lampp security
#skip-networking
#skip-federated

# Replication Master Server (default)
# binary logging is required for replication
# log-bin deactivated by default since XAMPP 1.4.11
#log-bin=mysql-bin

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id   = 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=, MASTER_PORT=,
#    MASTER_USER=, MASTER_PASSWORD= ;
#
#    where you replace , ,  by quoted strings and
#     by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin


# Point the following paths to different dedicated disks
#tmpdir = "C:/xampp/tmp"
#log-update = /path-to-dedicated-directory/hostname

# Uncomment the following if you are using BDB tables
#bdb_cache_size = 40M
#bdb_max_lock = 10000

# Comment the following if you are using InnoDB tables
#skip-innodb
innodb_data_home_dir = "C:/xampp/mysql/data"
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = "C:/xampp/mysql/data"
#innodb_log_arch_dir = "C:/xampp/mysql/data"
## You can set .._buffer_pool_size up to 50 - 80 %
## of RAM but beware of setting memory usage too high
innodb_buffer_pool_size = 16M
## Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 50M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 600

## UTF 8 Settings
#init-connect=\'SET NAMES utf8\'
#collation_server=utf8_unicode_ci
#character_set_server=utf8
#skip-character-set-client-handshake
#character_sets-dir="C:/xampp/mysql/share/charsets"
sql_mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION
log_bin_trust_function_creators = 1

[mysqldump]
quick
max_allowed_packet = 160M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[isamchk]
key_buffer = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M

[myisamchk]
key_buffer = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

Tôi hy vọng nó sẽ giúp một người có tình huống này, liên quan.

Tiếng Anh được cung cấp bởi Google

IBD trong mysql là gì?

Tệp IBD là bảng MySQL được tạo bởi công cụ cơ sở dữ liệu Innodb. Nó chứa một không gian bảng cụ thể và dữ liệu chỉ mục. Các tệp IBD được tạo khi tùy chọn innodb_file_per_table của MySQL được bật, theo mặc định. MySQL là một hệ thống quản lý cơ sở dữ liệu nguồn mở phổ biến.a MySQL table created by the InnoDB database engine. It contains a table-specific tablespace and index data. IBD files are created when MySQL's innodb_file_per_table option is enabled, which it is by default. MySQL is a popular open-source database management system.

Làm thế nào chuyển đổi FRM thành IBD trong SQL?

Các tệp FRM bằng cách sử dụng các Utilites MySQL và MariaDB 10 ...
1) Tạo SQLS tạo.Bạn có thể nhận SQL của bạn từ tệp FRM.....
2) Tạo bảng của bạn.....
3) Thay đổi bảng xxx loại bỏ không gian bảng.....
4) Sao chép các tệp *.ibd của bạn (MySQL hoặc MariaDB) vào đường dẫn dữ liệu của Mariadb.....
5) thay đổi bảng XXX Nhập không gian bảng ..

Tệp FRM là gì?

Các tệp FRM là các tệp biểu mẫu được sử dụng làm tệp định dạng cơ sở dữ liệu MySQL.Khi một bảng mới được tạo trong MySQL, thì tệp FRM ra đời.Các tệp biểu mẫu này được sử dụng để xác định các trường trong bảng.Nó cũng được sử dụng để thể hiện thông tin định dạng về cấu trúc của bảng.form files used as MySQL Database format files. When a new table is created in MySQL, then the FRM file comes into existence. These form files are used for defining the fields in the table. It is also used to represent the formatting information about the structure of the table.

Tôi có thể xóa tệp mysql ibd không?

Bạn không được xóa tệp .ibd nếu bạn muốn tránh mất dữ liệu hoặc thời gian chết.Này .Các tệp IBD chứa dữ liệu và chỉ mục của bạn. ibd file if you want to avoid data loss or downtime. These . ibd files contain your data and indexes.