how can i know when it was starting to run?
create 800k update statments and run them?
Any good Mysql DBA trainer guys?
Can you install the server using Administrator role?
Can i send photo of the question here?
which all yes you want to update to NO ?
anyone able to solve this problem on navicat when i m importing a new db in txt format?
It has Query_time parameter.
create 800k update statments and run them?
update table set active=1 where id in (select * from 800k_table)?
create 800k update statments and run them?
update table set active=1 where id in (select * from 800k_table)?
I guess you don’t need WHERE section here.
UPDATE table SET active = 1;
create 800k update statments and run them?
update table set active=1 where id in (select * from 800k_table)?
You can use something like below
Update table a set active = 1
from 800k_table b
where a.id = b.id;
Tried to set up replication from Version 8 to 5.7 and having collation/charset issue. Treid every workaround from onlne blogs but still not getting a break. Please help
Last_SQL_Error: Error ‘Character set ‘#255’ is not a compiled character set and is not specified in the ‘/usr/share/mysql/charsets/Index.xml’ file’ on query
Tried to set up replication from Version 8 to 5.7 and having collation/charset issue. Treid every workaround from onlne blogs but still not getting a break. Please help
Last_SQL_Error: Error ‘Character set ‘#255’ is not a compiled character set and is not specified in the ‘/usr/share/mysql/charsets/Index.xml’ file’ on query
https://www.percona.com/blog/2018/08/07/replicating-mysql-8-0-mysql-5-7/
In this blog post, we’ll discuss how to set a replication from MySQL 8.0 to MySQL 5.7.
Thanks . this is the first troubleshooting method ive tried . Didnt help.
Adding these things fixed
init_connect=’SET collation_connection = utf8_unicode_ci’
init_connect=’SET NAMES utf8′
character-set-server=utf8
collation-server=utf8_unicode_ci
skip_character_set_client_handshake

This group is for English speaking people, not Turkish
Can write a question in English, please?

These are the logs .
Seems like a program’s error
Can you install the server using Administrator role?
How can I resolve this error
Please help out this
https://dba.stackexchange.com/questions/174103/mysql-update-tables-in-batches
I want to update my MySQL table with batches.
The table has 10000000 records, so I want to update first 1000 rows, once it is done then update 1001 to 2000 rows. I need to make it as a loop.

What to change some yes into no, can gave MySQL query for it
Any please help me
which all yes you want to update to NO ?
You can simple do something as below
Update tablename set show = ‘no’
where id = value of id here

anyone able to solve this problem on navicat when i m importing a new db in txt format????? 🙏