rusuly / MySqlCdc

MySQL/MariaDB binlog replication client for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can't find TableId from INFORMATION_SCHEMA.TABLES.

supersdar opened this issue · comments

hi,How to use TableId to find the corresponding table name?

Hi, it looks like INFORMATION_SCHEMA.TABLES is a view and doesn't have table_id.
Instead, try querying INFORMATION_SCHEMA.INNODB_TABLES table like:

SELECT * FROM INFORMATION_SCHEMA.INNODB_TABLES WHERE TABLE_ID = 100

Also TableName with TableId is included in the TableMapEvent event that precedes any WriteRowsEvent, UpdateRowsEvent or DeleteRowsEvent events.