File: show_i_s_tablespaces.inc

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (50 lines) | stat: -rw-r--r-- 2,069 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# This script assumes that the caller did the following;
#     LET $MYSQLD_DATADIR = `select @@datadir`;
#     LET $INNODB_PAGE_SIZE = `select @@innodb_page_size`;
--echo === information_schema.innodb_tablespaces and innodb_datafiles ===
--disable_query_log
--replace_regex  /innodb_file_per_table.[0-9]+/innodb_file_per_table.##/ /#P#/#p#/  /#SP#/#sp#/
--replace_result ./ MYSQLD_DATADIR/  $MYSQLD_DATADIR/ MYSQLD_DATADIR/  $MYSQLD_DATADIR MYSQLD_DATADIR/  $MYSQL_TMP_DIR MYSQL_TMP_DIR  $INNODB_PAGE_SIZE DEFAULT
SELECT s.name 'Space_Name',
	s.space_type 'Space_Type',
	s.page_size 'Page_Size',
	s.zip_page_size 'Zip_Size',
	s.fs_block_size!=0 'BlockSize!=0',
	s.file_size!=0 'FileSize!=0',
	s.row_format 'Formats_Permitted',
	d.path 'Path'
	FROM information_schema.innodb_tablespaces s,
	     information_schema.innodb_datafiles d
	WHERE s.space = d.space
	AND d.path NOT LIKE '%/sys/%'
	AND d.path NOT LIKE '%\\\sys\\\%'
	AND s.name NOT LIKE 'mysql/%'
	AND s.name NOT LIKE 'sys/%'
	AND s.name NOT LIKE '%undo%'
	ORDER BY s.name, d.path;

# This SELECT will not show UNDO or TEMPORARY tablespaces
--echo === information_schema.files ===
LET $REGEX = /innodb_file_per_table.[0-9]+/innodb_file_per_table.##/   /#P#/#p#/  /#SP#/#sp#/   $EXTRA_I_S_FILES_REGEX;
--replace_regex  $REGEX
--replace_result ./ MYSQLD_DATADIR/  $MYSQLD_DATADIR/ MYSQLD_DATADIR/  $MYSQLD_DATADIR MYSQLD_DATADIR/  $MYSQL_TMP_DIR MYSQL_TMP_DIR  $INNODB_PAGE_SIZE DEFAULT
# Hypergraph optimizer has different warnings, so disable them temporarily.
--disable_warnings
SELECT	s.name 'Space_Name',
	f.file_type 'File_Type',
	f.engine 'Engine',
	f.status 'Status',
	f.tablespace_name 'Tablespace_Name',
	f.file_name 'Path'
	FROM information_schema.files f,
	     information_schema.innodb_tablespaces s
	WHERE f.file_id = s.space
	AND f.file_name NOT LIKE '%/sys/%'
	AND f.file_name NOT LIKE '%\\\sys\\\%'
	AND s.name NOT LIKE 'mysql'
	AND s.name NOT LIKE 'sys/%'
	AND s.name NOT LIKE 'innodb_temporary'
	AND s.name NOT LIKE '%undo%'
	ORDER BY s.name, f.file_name;
--enable_warnings
--enable_query_log