Ошибка 1109 mysql

I’m using PHP and MySQL(Server version: 5.5.31-0ubuntu0.12.04.2) for my website when I run the following query it’s giving me the above error. I couldn’t get any clue behind this error. Can anyone help me in resolving this error and suggesting the changes if any to my existing query? For your reference I’m writing my query below:

DELETE
   ABC.theory_sheet_set,
   ABC.theory_sheet_questions
FROM
   ABC.theory_sheet_set AS theory_sheet_set,
   OCN.theory_sheet_questions AS theory_sheet_questions
WHERE
   theory_sheet_set.theory_sheet_set_id = theory_sheet_questions.theory_sheet_set_id
   AND theory_sheet_set.theory_sheet_id=".$theory_sheet_id

The error it gives is as follows:

MySQL Error: 1109 (Unknown table 'theory_sheet_set' in MULTI DELETE)
Session halted.

My database name is ABC. Actually all the table names are valid and all the tables involved in this query are present there into the database. Can you please help me in resolving this issue?

Dharman's user avatar

Dharman

31.1k25 gold badges87 silver badges137 bronze badges

asked Aug 21, 2013 at 6:28

PHPLover's user avatar

1

If you use the alias names used later into the query at the beginning of of query(i.e. right after the word DELETE) then it will work finely. The only issue there was that it couldn’t be able to identify the table from your database as you have used alias names to refer those tables into your database. So in order to remove this bug you must use alias name s you used in the query after DELETE. The rectified query will look like following:

DELETE theory_sheet_set, theory_sheet_questions FROM ABC.theory_sheet_set AS theory_sheet_set, ABC.theory_sheet_questions AS theory_sheet_questions  WHERE theory_sheet_set.theory_sheet_set_id=theory_sheet_questions.theory_sheet_set_id AND  theory_sheet_set.theory_sheet_id="$theory_sheet_id

answered Aug 21, 2013 at 6:53

PHPLover's user avatar

there are syntax error, try on this

DELETE *
FROM
theory_sheet_set theory_sheet_set
INNER JOIN 
theory_sheet_questions theory_sheet_questions ON  
theory_sheet_set.theory_sheet_set_id = theory_sheet_questions.theory_sheet_set_id
WHERE theory_sheet_set.theory_sheet_id=".$theory_sheet_id

answered Aug 21, 2013 at 6:50

Low Chee Mun's user avatar

Low Chee MunLow Chee Mun

6101 gold badge4 silver badges9 bronze badges

When i run this code, it gives me error. From this code, there’s several task to do:
(1) update tble customer by setting the address to ’90 TYT’ if c_id= 1
(2) view order_no,status,c_id,item_total remarks.
(3) if item_total 0, then update table order_status by setting remarks = ‘UNAVAILABLE’, else select order_no,status,item_total,remarks where status = ‘waiting’.

Please help me fix the error. I’m new to SQL.

#drop procedure if exists usp_GetAnything;
delimiter //
create procedure usp_GetAnything()
begin

select c_id,lname,address,city
from customer;
update customer
set address = '90 TYT'
where c_id = 1;

select o.order_no,o.o_status,c.c_id,o.item_total,o.remarks
from customer c, order_status o
where c.c_id=o.c_id;

    if (o.item_total > 0) then 
    update order_status o
    set remarks = 'UNAVAILABLE'
    where order_no > '123';
    else  
    select order_no,o_status,item_total,remarks
    from order_status
    where o_status = 'waiting';

end if;

end

I don’t think you can pass a table.column to a function this way. I’d define a function:

CREATE function revofnum1(P1 MEDIUMINT) returns mediumint
BEGIN
  DECLARE y MEDIUMINT DEFAULT 0;
      SET @d = 0;
      SET @rev = 0;
      SET y = P1;
      WHILE y>0 DO
        SET @d = y MOD 10;
        SET @rev = @rev*10 + @d;
        SET y = y - @d;
        SET y = y/10;
    END WHILE;
   return @rev; 
END

and use that function in a select statement:

MariaDB [ghp]> select revofnum1(entnum) from revers;
+-------------------+
| revofnum1(entnum) |
+-------------------+
|            876534 |
+-------------------+

An alternative would be to use your procedure in another procedure:

begin not atomic
 declare done int default false;
 declare X mediumint;
 declare c cursor for select * from revers;
 declare continue handler for not found set done = true;
 open c;
 amehoela: loop
  fetch c into X;
  if done then
    leave amehoela;
  end if;
  call revofnum1(X);
 end loop;
 close c;
end
$$

giving:

+--------+
| @rev   |
+--------+
| 876534 |
+--------+
1 row in set (0.01 sec)

If you ever want to give your processors some time of, you could use the following:

CREATE OR REPLACE function revofnum1(P1 MEDIUMINT)
   returns mediumint
 BEGIN
   return convert(reverse(convert(p1,char)),unsigned);
 END

or, if you fail to remember the name of that function:

select convert(reverse(convert(entnum,char)),unsigned) from revers;

Introduction

If you are using MySQL and dealing with the Unknown Table ‘column_statistics’ error (1109) while executing a query on INFORMATION_SCHEMA, you are in the right place. This post provides a step-by-step guide on how to fix this error.

Issue Summary

When executing a query such as:

SELECT * FROM INFORMATION_SCHEMA.COLUMN_STATISTICS 

The server throws the following error message:

[1109] Unknown table ‘column_statistics’ in information_schema

Root Cause

The root cause of this error is that the COLUMN_STATISTICS table does not exist in INFORMATION_SCHEMA. This is because the COLUMN_STATISTICS table was introduced in version 8.0 of MySQL, while the previous version was 5.7.

Solution

The solution is to upgrade your MySQL version to the latest version 8.0. After upgrade, you will be able to query the COLUMN_STATISTICS table. The steps to upgrade MySQL is given below:

Backup existing database. This can be done by creating a dump by executing mysqldump database_name > database_name.sql

Download the latest version of MySQL from the official MySQL website.

Install the downloaded version of MySQL. Make sure to use the same configuration settings as the existing version.

Import the backup database into the new version. This can be done by running mysql -u root -p database_name < database_name.sql

The database should now have been imported into the new version of MySQL and the error should have been resolved.

FAQ

Q1: Is it possible to maintain the same version of MySQL and still fix this issue?

A1: No, this issue can only be fixed by upgrading MySQL to version 8.0 or later.

Q2: Is it safe to upgrade MySQL version to 8.0?

A2: Yes, upgrading to 8.0 is generally safe and doesn’t require any major change. However, it is always a good idea to backup your existing database before upgrading, as an extra precaution.

Every time I try to make a mysqldump I get the following error:

$> mysqldump --single-transaction --host host -u user -p db > db.sql
mysqldump: Couldn't execute 'SELECT COLUMN_NAME, JSON_EXTRACT(HISTOGRAM,
'$."number-of-buckets-specified"') FROM
information_schema.COLUMN_STATISTICS WHERE SCHEMA_NAME = 'db' AND
TABLE_NAME = 'Absence';':
Unknown table 'COLUMN_STATISTICS' in information_schema (1109)

The result is a dump which is not complete. The strange thing is that the same command, executed from another host, works without throwing any errors. Did someone experienced the same problem?

I’m using mysql-client 8.0 and try to access a mysql 5-7 server — maybe that is the reason?

asked May 14, 2018 at 16:40

manifestor's user avatar

manifestormanifestor

6,1097 gold badges27 silver badges41 bronze badges

This is due to a new flag that is enabled by default in mysqldump 8.
You can disable it by adding --column-statistics=0. The command will be something like:

mysqldump --column-statistics=0 --host=<server> --user=<user> --password=<password> 

Check this link for more information. To disable column statistics by default, you can add

[mysqldump]
column-statistics=0

to a MySQL config file, go to /etc/my.cnf, ~/.my.cnf, or directly to /etc/mysql/mysql.cnf.

questionto42's user avatar

answered May 17, 2018 at 13:10

cristhiank's user avatar

cristhiankcristhiank

8,1841 gold badge7 silver badges4 bronze badges

9

For those using MySQL Workbench, there is an «Advanced Options» button on the Data Export screen. The option «Use Column Statistics» can be disabled by setting to 0.

I have not confirmed, but the following information has been suggested to also be true:
In Version 8.0.14 it’s missing.
In Version 8.0.16 it’s doing this by default.

answered Oct 25, 2018 at 22:57

atjoedonahue's user avatar

15

I spent the whole day looking for a solution, and signed up here just to share mine.

Yes, this error is due to version differences.

Just download the MySQL 5.7 ZIP Archive from here: https://dev.mysql.com/downloads/mysql/ and unzip it, then use the mysqldump.exe file from there.

If you are using MySQL Workbench, you will need to set a path to the mysqldump Tool you downloaded by going to Edit -> Preferences -> Administration (from left hand pane).

Hope this helps.

Community's user avatar

answered May 15, 2018 at 15:32

DodiX's user avatar

DodiXDodiX

4113 silver badges4 bronze badges

5

I know that I am late to the party but this was getting me crazy.
If you want to use a recent MySQL Workbench (tried with the newest one as of today, MySQL Workbench 8.0.20) you can patch this file:

plugins/wb_admin_export_options.py

in macOS: (/Applications/MySQLWorkbench.app/Contents/Resources/plugins/wb_admin_export_options.py)
Replacing this line:

  "column-statistics":["Writing ANALYZE TABLE statements to generate statistics histograms.", "FALSE", "BOOL", ("8.0.2", None)]

with this one:

"column-statistics":["Writing ANALYZE TABLE statements to generate statistics histograms (set 0 to disable).", "1", "INT", (None, None)]

Then remove the .pyo:

rm /Applications/MySQLWorkbench.app/Contents/Resources/plugins/wb_admin_export_options.pyo

Finally, reload Workbench again and in the Data Export page, click on «Advanced options…» and you will see the column-statistics option again (set 0 to disable and click the Return button)

enter image description here

Note: you can download the patched file from this Gist.

answered May 3, 2020 at 15:58

Juanan's user avatar

JuananJuanan

3013 silver badges7 bronze badges

7

Easiest Work Around

When using Mysql Workbench 8.0

Best of luck!

answered Dec 13, 2018 at 7:10

anson's user avatar

ansonanson

1811 silver badge2 bronze badges

5

To make this answer easier, you can rename mysqldump, make a shell script in its place and call the renamed mysqldump with the --column-statistics=0 argument. Eg:

Rename mysqldump:

mv /usr/local/bin/mysqldump /usr/local/bin/_mysqldump

Save the following shell script in its place:

#!/bin/sh

_mysqldump --column-statistics=0 $@

answered Jul 4, 2018 at 5:25

pierlo's user avatar

3

In addittion to pierlo https://serverfault.com/a/919403/586669

From within MySQL Workbench there is an option to set the path of the mysqldump executable.
(Edit — Preferences — Administration)

So you can create a .cmd (on Windows) or a .sh file (on Linux or mac) as follows:

mysqldump_nostatistics.cmd:

 @ECHO OFF
 "C:\Program Files\MySQL\MySQL Workbench 8.0 CE\mysqldump.exe" %*  --column-statistics=0

mysqldump_nostatistics.sh:

#!/bin/sh

_mysqldump $@ --column-statistics=0

Note the order of the parameters (it is different from pierlo’s) : the dump command executed includes (or may include) a --defaults-file= option, and this has to be the first parameter.

Also The echo off is needed otherwise the workbench is unable to parse the command output correctly.

answered Aug 4, 2020 at 11:40

Ronald's user avatar

RonaldRonald

511 silver badge1 bronze badge

1

I had this problem using the latest mysql workbench (8.0.23) on OSX (11.1) with mariadb.
I solved it by selecting the version of mysqldump found in the mariadb package.

/usr/local/mariadb/mariadb-10.1.37-osx10.13-x86_64/bin/mysqldump

answered Feb 1, 2021 at 20:40

Paul Collister's user avatar

2

There a couple of answers above here that refer to renaming the mysqldump binary and creating a wrapper script. This is a terrible approach.

The correct method (in bash) is to alias the command in your .bashrc

alias mysqldump="mysqldump --column-statistics=0"

answered Sep 20, 2021 at 13:17

stridebird's user avatar

I use XAMPP and MySQL Workbench does warn about a version mismatch. I set MySQL Workbench to point to the XAMPP’s mysql.exe and mysqldump.exe.

Go to Edit -> Preferences -> Administration and set the path for each.

This works at least for version 8.0.14. So for others you may want to avoid using the bundled version of mysql and mysqldump.

answered Jan 23, 2019 at 23:04

Dean Or's user avatar

Dean OrDean Or

2131 gold badge2 silver badges5 bronze badges

4

From MySQL Workbench version 8.0.14 you don’t have the option to disable column-statistics

You can do that in version 8.0.13

But you have an option to do it by enabling delete-master-logs in version 8.0.22

  • --delete-master-logs has the same effect as the RESET MASTER SQL command.
  • RESET MASTER deletes all binary log files listed in the index file, resets the binary log index file to be empty, and creates a new binary log file. This statement is intended to be used only when the master is started for the first time.

mforsetti's user avatar

mforsetti

2,6662 gold badges16 silver badges20 bronze badges

answered Nov 16, 2020 at 9:42

Nob Hokleng's user avatar

For those using DBeaver check the Local Client is set to create the dump. See next images for reference:

Access to local client selection:

Access to local client selection

Local clients available:

Local clients available

Uwe Keim's user avatar

Uwe Keim

2,4205 gold badges30 silver badges47 bronze badges

answered Dec 18, 2020 at 10:15

Dario Herrero's user avatar

I faced the same issue with MySQL workbench latest edition, I resolved it using the mysqldump command line

C:\Program Files\MySQL\MySQL Workbench 8.0 CE\mysqldump --column-statistics=0  --user=USERNAME --host=REMOTE_HOST --protocol=tcp --port=3306 --default-character-set=utf8 DATABASE_NAME > c:\temp\dump.sql --password

Replace USERNAME, REMOTE_HOST, DATABASE_NAME with your names.

answered Jan 6, 2021 at 11:11

Hany Sakr's user avatar

Depending on your situation, you can get rid of mysql and install mariadb instead. This eliminates the new feature that was introduced in mysql 8.

answered Sep 7, 2021 at 19:01

Edward Ned Harvey's user avatar

1

In my situation, I’m using mac-OS. By the way, there was [mysqldump]
column-statistics=0
fields in my.cnf file that is placed under the /usr/local/etc directory. Deleting that field fixed the issue. (not: mysql version is 5.7 and installed via homebrew).

Cory Knutson's user avatar

answered Dec 11, 2018 at 13:04

Hatip Aksunger's user avatar

I also had the same issue, it occurs when I merge multiple data tables to the existing schema from other schema and export merged data to self contained script file. I did try to change the column-statistics=0,but result was following,

C:\xampp\mysql\bin>mysqldump --column-statistics=0 --host=loalhost --user root --passwod
mysqldump: unknown variable 'column-statistics=0'

So I hadn’t help. I analyze the MySQL log I found that

2019-01-21 11:31:30 1050 InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal memory allocator.
2019-01-21 11:31:30 4176 [Note] InnoDB: innodb_empty_free_list_algorithm has been changed to legacy because of small buffer pool size. In order to use backoff, increase buffer pool at least up to 20MB.

its complaining about the size of the innodb_buffer_pool_size. I did make it to 24MB. Then it works.

Thomas's user avatar

Thomas

4,2355 gold badges23 silver badges28 bronze badges

answered Jan 21, 2019 at 7:23

Rasike Abeyratne's user avatar

On macOS I fixed this by overriding the bundled mysqldump:

  1. Install mariadb, e.g. brew install mariadb
  2. Navigate to MySQLWorkbench > Preferences > Administration
  3. Set the mysqldump path to the one you just installed, e.g. /opt/homebrew/bin/mysqldump

Note: to find the full path to mysqldump, you can run which mysqldump in your terminal.

answered Oct 24, 2021 at 21:31

jchook's user avatar

jchookjchook

1416 bronze badges

Since i cannot comment the actual answer from user:cristhiank, i’m adding a slight variation of the actual answer. In my case i had to change it in /etc/my.cnf.d/client.cnf and i had to leave it in the [client] section so not adding a [mysqldump] section.

So for me this was working /etc/my.cnf.d/client.cnf

[client]
column-statistics=0

answered May 18, 2022 at 15:29

trainin99's user avatar

In MySQL Workbench 8.0.31 on Advanced Options tab now exists new option «Force«, use it to skip errors like mentioned above.

answered Nov 8, 2022 at 12:27

Roman's user avatar

For Ansible users use:

mysql_db:
 ...
 dump_extra_args: --column-statistics=0

In my case it ignores ~/.my.cnf and /etc/my.cnf

answered Dec 2, 2022 at 14:28

Ricky Levi's user avatar

If using a MariaDB backend with MySQL Workbench 8.0.31 CE use need to download the native MariaDB binaries for your system from https://mariadb.com/downloads/community/ and specify them in MySQL Workbench.

For example, if you are on 64-bit Microsoft Windows OS perform the following:

  1. Goto https://mariadb.com/downloads/community/
  2. On the above page, select your Operating System
  3. Community Server —> Verison (latest GA) —> OS (MS Windows 64-bit) and click on download
  4. Run the Install Shield just downloaded, and make sure «MariaDB Server -> Client Programs» is enabled.
  5. Run up MySQL Workbench
  6. Select the menu: Edit -> Preferences…
  7. Select «Administration» in the left hand column
  8. Update «Path to mysqldump Tool:» to be C:\Program Files\MariaDB 10.10\bin\mariadb-dump.exe
  9. Update «Path to mysql Tool:» to be C:\Program Files\MariaDB
    10.10\bin\mariadb.exe

No more performance statistic errors or any other divergent issues down the line between MySQL and MariaDB.

This has been posted for future reference.

answered Dec 6, 2022 at 19:44

Elstone IT Services Limited's user avatar

Copy the mysqldump command from the output window, remove the defaults file part, and add --column-statistics=0 with other option

Open a command window in the mysqldump.exe parent folder and run the command manually, piping to a file in my documents folder (you’ll get access denied errors if you just try to dump it to same folder).

Example:

C:\Program Files\MySQL\MySQL Workbench 8.0 CE>mysqldump.exe --user=USER--host=127.0.0.1 --protocol=tcp --port=3306 --default-character-set=utf8 --skip-triggers --column-statistics=0 "mantis" > "C:\users\moi\Documents\dumps\mantis.sql"

answered Mar 21 at 10:16

Pikamander2's user avatar

1

You must log in to answer this question.

Not the answer you’re looking for? Browse other questions tagged

.

Понравилась статья? Поделить с друзьями:
  • Ошибка 1108 пежо
  • Ошибка 10980 шкода фабия
  • Ошибка 10976 skoda
  • Ошибка 1097 учетная запись
  • Ошибка 1095 форд фьюжн