<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de-CH">
	<id>https://wiki.primat.ch/index.php?action=history&amp;feed=atom&amp;title=MySQL_in_Anwendung</id>
	<title>MySQL in Anwendung - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.primat.ch/index.php?action=history&amp;feed=atom&amp;title=MySQL_in_Anwendung"/>
	<link rel="alternate" type="text/html" href="https://wiki.primat.ch/index.php?title=MySQL_in_Anwendung&amp;action=history"/>
	<updated>2026-05-19T17:59:03Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Primatenwiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://wiki.primat.ch/index.php?title=MySQL_in_Anwendung&amp;diff=77&amp;oldid=prev</id>
		<title>Rbritt: Die Seite wurde neu angelegt: «== Tabellengrösse in MB ausgeben == &lt;source lang=&quot;sql&quot;&gt; SELECT       table_schema as `Database`,       table_name AS `Table`,       round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`  FROM information_schema.TABLES  ORDER BY (data_length + index_length) DESC; &lt;/source&gt;  == Alle Tabellen ausgeben == &lt;source lang=&quot;sql&quot;&gt; SELECT       table_schema as `Database`,       table_name AS `Table` FROM information_schema.TABLES  WHERE table_schema not…»</title>
		<link rel="alternate" type="text/html" href="https://wiki.primat.ch/index.php?title=MySQL_in_Anwendung&amp;diff=77&amp;oldid=prev"/>
		<updated>2025-01-08T18:21:12Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: «== Tabellengrösse in MB ausgeben == &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt; SELECT       table_schema as `Database`,       table_name AS `Table`,       round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`  FROM information_schema.TABLES  ORDER BY (data_length + index_length) DESC; &amp;lt;/source&amp;gt;  == Alle Tabellen ausgeben == &amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt; SELECT       table_schema as `Database`,       table_name AS `Table` FROM information_schema.TABLES  WHERE table_schema not…»&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Tabellengrösse in MB ausgeben ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
SELECT &lt;br /&gt;
     table_schema as `Database`, &lt;br /&gt;
     table_name AS `Table`, &lt;br /&gt;
     round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` &lt;br /&gt;
FROM information_schema.TABLES &lt;br /&gt;
ORDER BY (data_length + index_length) DESC;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Alle Tabellen ausgeben ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;sql&amp;quot;&amp;gt;&lt;br /&gt;
SELECT &lt;br /&gt;
     table_schema as `Database`, &lt;br /&gt;
     table_name AS `Table`&lt;br /&gt;
FROM information_schema.TABLES &lt;br /&gt;
WHERE table_schema not like &amp;quot;perform%&amp;quot; AND table_schema not like &amp;quot;inform%&amp;quot; AND table_schema not like &amp;quot;sys&amp;quot; AND table_schema not like &amp;quot;mysql&amp;quot;&lt;br /&gt;
ORDER BY table_schema, table_name;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rbritt</name></author>
	</entry>
</feed>