<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://tech.snathan.org/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://tech.snathan.org/feed.php">
        <title>Senthil&#039;s Tech Wiki/Blog - tech:mysql</title>
        <description></description>
        <link>https://tech.snathan.org/</link>
        <image rdf:resource="https://tech.snathan.org/_media/wiki/dokuwiki.svg" />
       <dc:date>2026-05-01T08:14:25+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://tech.snathan.org/tech/mysql/check_all_database_sizes?rev=1416064422&amp;do=diff"/>
                <rdf:li rdf:resource="https://tech.snathan.org/tech/mysql/check?rev=1417697137&amp;do=diff"/>
                <rdf:li rdf:resource="https://tech.snathan.org/tech/mysql/creating_mysql_users_for_a_database?rev=1416400656&amp;do=diff"/>
                <rdf:li rdf:resource="https://tech.snathan.org/tech/mysql/mysql_fresh_start?rev=1646137727&amp;do=diff"/>
                <rdf:li rdf:resource="https://tech.snathan.org/tech/mysql/mysql_to_oracle_migration?rev=1416064422&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://tech.snathan.org/_media/wiki/dokuwiki.svg">
        <title>Senthil's Tech Wiki/Blog</title>
        <link>https://tech.snathan.org/</link>
        <url>https://tech.snathan.org/_media/wiki/dokuwiki.svg</url>
    </image>
    <item rdf:about="https://tech.snathan.org/tech/mysql/check_all_database_sizes?rev=1416064422&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-11-15T15:13:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>check_all_database_sizes</title>
        <link>https://tech.snathan.org/tech/mysql/check_all_database_sizes?rev=1416064422&amp;do=diff</link>
        <description>Check the size of all MySQL databases

The script below will get the sizes of all databases for a MySQL server. Make sure you “use” a database before you run the script.


CREATE TABLE z_db_size
SELECT TABLE_SCHEMA AS &#039;database_name&#039;, TABLE_NAME AS &#039;table_name&#039;,
((DATA_LENGTH + INDEX_LENGTH - DATA_FREE) / 1024 / 1024) AS size_in_mb
FROM INFORMATION_SCHEMA.TABLES;</description>
    </item>
    <item rdf:about="https://tech.snathan.org/tech/mysql/check?rev=1417697137&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-12-04T12:45:37+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>check</title>
        <link>https://tech.snathan.org/tech/mysql/check?rev=1417697137&amp;do=diff</link>
        <description>MySQL Check

Cron this!


#!/bin/sh
#
# MySQL Check
#
NOW=$(date +&quot;%Y-%m-%d-%H-%M-%S&quot;)
#
MYSQLPASS=&quot;yourootpassword&quot;
#
#MySQL Check
/usr/bin/mysqlcheck -ACes -uroot --password=${MYSQLPASS}
#
exit 0


	*  Include option o to optimize the tables as well</description>
    </item>
    <item rdf:about="https://tech.snathan.org/tech/mysql/creating_mysql_users_for_a_database?rev=1416400656&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-11-19T12:37:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>creating_mysql_users_for_a_database</title>
        <link>https://tech.snathan.org/tech/mysql/creating_mysql_users_for_a_database?rev=1416400656&amp;do=diff</link>
        <description>Creating MySQL Database &amp; Users for the database

Chosen names are as follows:
 Database  p08_xxyyzz  User  up08xxyyzz  Password  4PJmbVu6SdeySyW 
Database Creation


DROP DATABASE p08_xxyyzz;
CREATE DATABASE p08_xxyyzz;


User Creation

With Access from localhost</description>
    </item>
    <item rdf:about="https://tech.snathan.org/tech/mysql/mysql_fresh_start?rev=1646137727&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-03-01T12:28:47+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mysql_fresh_start</title>
        <link>https://tech.snathan.org/tech/mysql/mysql_fresh_start?rev=1646137727&amp;do=diff</link>
        <description>How to reset MySQL back to install point

I corrupted my MySQL database by doing a simple mistake.  Took the sqldump from another database and loaded it without realizing that the dump had the mysql database of the source database. That seemed to have caused major issues for obvious reasons. After that it was going back to restoring the MySQL database. But wait, I did not have a backup of my target database since it was brand new and I had nothing to save. Now I have corrupted the default mysql …</description>
    </item>
    <item rdf:about="https://tech.snathan.org/tech/mysql/mysql_to_oracle_migration?rev=1416064422&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2014-11-15T15:13:42+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mysql_to_oracle_migration</title>
        <link>https://tech.snathan.org/tech/mysql/mysql_to_oracle_migration?rev=1416064422&amp;do=diff</link>
        <description>Using HSODBC

How to Setup HSODBC (Oracle9i on Solaris) to MySQL on Linux


MySQL Migration Toolkit

MySQL  MySQL Migration Toolkit  12.3 The Modular Migration Process</description>
    </item>
</rdf:RDF>
