Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
mysql-test /
suite /
funcs_1 /
datadict /
[ HOME SHELL ]
Name
Size
Permission
Action
basics_mixed1.inc
1.92
KB
-rw-r--r--
basics_mixed2.inc
2.21
KB
-rw-r--r--
basics_mixed3.inc
1.95
KB
-rw-r--r--
columns.inc
2.73
KB
-rw-r--r--
datadict.pre
2.08
KB
-rw-r--r--
datadict_bug_12777.inc
1.8
KB
-rw-r--r--
datadict_load.inc
4.16
KB
-rw-r--r--
datadict_priv.inc
3.33
KB
-rw-r--r--
is_key_column_usage.inc
14.01
KB
-rw-r--r--
is_routines.inc
18.85
KB
-rw-r--r--
is_schemata.inc
10.82
KB
-rw-r--r--
is_table_query.inc
1.29
KB
-rw-r--r--
is_tables.inc
18.28
KB
-rw-r--r--
is_triggers.inc
10.45
KB
-rw-r--r--
is_views.inc
11.8
KB
-rw-r--r--
processlist_priv.inc
22.16
KB
-rw-r--r--
processlist_val.inc
17.23
KB
-rw-r--r--
statistics.inc
1.61
KB
-rw-r--r--
table_constraints.inc
1.42
KB
-rw-r--r--
tables.inc
1.73
KB
-rw-r--r--
tables1.inc
1.15
KB
-rw-r--r--
tables2.inc
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tables2.inc
# suite/funcs_1/datadict/tables2.inc # # Auxiliary script to be sourced by suite/funcs_1/datadict/tables1.inc. # # Author: # 2008-01-23 mleich WL#4203 Reorganize and fix the data dictionary tests of # testsuite funcs_1 # Create this script based on older scripts and new code. # ################################################################################ # 8 TABLE_ROWS # 9 AVG_ROW_LENGTH # 10 DATA_LENGTH # 11 MAX_DATA_LENGTH # 12 INDEX_LENGTH # 13 DATA_FREE # 15 CREATE_TIME # 16 UPDATE_TIME # 17 CHECK_TIME # 20 CREATE_OPTIONS # 21 TABLE_COMMENT User defined comment # + InnoDB # + NDB: "number_of_replicas: <number>" appended # + InnoDB: "InnoDB free: <number_kB> kB" appended # <number_kB> depends on tablespace history! # The LEFT/INSTR/IF/LENGTH stuff should remove these # storage engine specific part. let $innodb_pattern = 'InnoDB free'; let $ndb_pattern = 'number_of_replicas'; --vertical_results # We do not unify the engine name here, because the rowformat is # specific to the engine. --replace_column 8 "#TBLR#" 9 "#ARL#" 10 "#DL#" 11 "#MDL#" 12 "#IL#" 13 "#DF#" 15 "#CRT#" 16 "#UT#" 17 "#CT#" 20 "#CO#" 21 "#TC#" eval SELECT *, LEFT( table_comment, IF(INSTR(table_comment,$innodb_pattern) = 0 AND INSTR(table_comment,$ndb_pattern) = 0, LENGTH(table_comment), INSTR(table_comment,$innodb_pattern) + INSTR(table_comment,$ndb_pattern) - 1)) AS "user_comment", '-----------------------------------------------------' AS "Separator" FROM information_schema.tables $my_where ORDER BY table_schema,table_name; --horizontal_results
Close