Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of RVM Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:47, 11 June 2024 Gabriele.vivinetto talk contribs created page Ottimizzare tutte le tabelle in un database MySQL (Created page with "* Usare lo script <pre> #!/bin/bash for table in $(mysql -u root -proot_pwd -sss -e "select concat(table_schema,'.',table_name) from information_schema.tables where table_schema in ('mydatabasename') order by data_free desc;") do echo OPTIMIZE $table mysql -u root -proot_pwd -e "OPTIMIZE TABLE $table;" done </pre>") Tag: Visual edit