<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Thanks to antville.org</title>
    <link>https://oksoft.antville.org/</link>
    <description>Adding Value with limited resources</description>
    <language>en</language>
    <pubDate>Wed, 17 Jun 2026 19:28:18 GMT</pubDate>
    <dc:date>2026-06-17T19:28:18Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>log mysql output</title>
      <link>https://oksoft.antville.org/stories/2286563/</link>
      <description>&lt;p&gt;tee output.txtshow global variables;show engine innodb status\Gshow full processlist;show global status;select sleep(60);show engine innodb status\Gshow full processlist;show global status;notee;&lt;/p&gt;</description>
      <pubDate>Wed, 19 Feb 2020 10:33:07 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2286563/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-19T10:33:07Z</dc:date>
    </item>
    <item>
      <title>change log file size in MySQL</title>
      <link>https://oksoft.antville.org/stories/2285610/</link>
      <description>&lt;p&gt;Here are the steps to be followed while changing the log file size in mysql:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;SET GLOBAL innodb_fast_shutdwn = 1;&lt;/li&gt;&lt;li&gt;Stop the mysqld server and check the end of the error log file to ensure that the shutdown was clean.&lt;/li&gt;&lt;li&gt;Move the existing log files to another location for extra safety.&lt;/li&gt;&lt;li&gt;Make the size change in the my.cnf and restart.&lt;/li&gt;&lt;/ol&gt;</description>
      <pubDate>Tue, 11 Feb 2020 10:38:26 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285610/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-11T10:38:26Z</dc:date>
    </item>
    <item>
      <title>MySQL common error messages</title>
      <link>https://oksoft.antville.org/stories/2285605/</link>
      <description>&lt;p&gt;1146 Table does not exist1054 column does not exist1062 duplicate entry for primary key1406 Data too long for column1064 sql syntax error1111 invalid use of group function1366 incorrect integer value1046 No database selected&lt;/p&gt;</description>
      <pubDate>Tue, 11 Feb 2020 10:13:08 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2285605/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-02-11T10:13:08Z</dc:date>
    </item>
    <item>
      <title>compare mysql schema</title>
      <link>https://oksoft.antville.org/stories/2284295/</link>
      <description>&lt;p&gt;And here is poor man's schema compare using good old diff command...&lt;/p&gt;&lt;p&gt;mysqldump nasik1 --no-data &amp;gt; nasik1.sql&lt;/p&gt;&lt;p&gt;mysqldump -h1.2.3.4 murtizapur --no-data &amp;gt; murtizapur.sql&lt;/p&gt;&lt;p&gt;diff murtizapur.sql nasik1.sql --side-by-side --suppress-common-lines | grep -v ENGINE | grep -v BTREE &amp;gt; to_study.txt&lt;/p&gt;&lt;p&gt;Or use one of the packages:&lt;/p&gt;&lt;p&gt;&lt;a href="https://code.google.com/archive/p/phpmydiff/downloads"&gt;code.google.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="https://www.red-gate.com/products/mysql/mysql-comparison-bundle/"&gt;www.red-gate.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="https://www.devart.com/dbforge/mysql/schemacompare/download.html"&gt;www.devart.com&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 26 Jan 2020 11:49:04 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2284295/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-01-26T11:49:04Z</dc:date>
    </item>
    <item>
      <title>Rank mysql records using variables</title>
      <link>https://oksoft.antville.org/stories/2284289/</link>
      <description>&lt;p&gt;SET @rank = 0, @prev_val = NULL;&lt;/p&gt;&lt;p&gt;SELECT rank, correct FROM (SELECT @rank := IF(@prev_val=correct,@rank,@rank+1) AS rank,@prev_val := correct AS correct, uidFROM quiz_user ORDER BY correct DESC)as result WHERE uid=xxxxxxxxxxxx&lt;/p&gt;</description>
      <pubDate>Sun, 26 Jan 2020 09:45:19 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2284289/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2020-01-26T09:45:19Z</dc:date>
    </item>
    <item>
      <title>backup mysql users</title>
      <link>https://oksoft.antville.org/stories/2262481/</link>
      <description>&lt;p&gt;It is easy to backup mysql users -&lt;/p&gt;&lt;p&gt;wget percona.com/get/pt-show-grants;perl pt-show-grants&lt;/p&gt;</description>
      <pubDate>Sun, 20 May 2018 13:42:39 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2262481/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2018-05-20T13:42:39Z</dc:date>
    </item>
    <item>
      <title>mysql and shell command</title>
      <link>https://oksoft.antville.org/stories/2262382/</link>
      <description>&lt;p&gt;date -d&amp;quot;-1 day ago&amp;quot; +'%b%d'&lt;/p&gt;&lt;p&gt;equals to&lt;/p&gt;&lt;p&gt;mysql -Bse&amp;quot;select date_format(date(date_add(now() , interval 1 day)),'%b%d')&amp;quot;&lt;/p&gt;</description>
      <pubDate>Wed, 16 May 2018 05:47:18 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2262382/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2018-05-16T05:47:18Z</dc:date>
    </item>
    <item>
      <title>Preserving comments in Stored Procedure</title>
      <link>https://oksoft.antville.org/stories/2262254/</link>
      <description>&lt;p&gt;You can write multi line comments in a stored procedure by following mysql to think that it is a version specific code.&lt;/p&gt;&lt;p&gt;/*!9999Multi line comment, retained by mysqlnot executed till it reaches the mysql version 9999 :))*/&lt;/p&gt;</description>
      <pubDate>Sat, 12 May 2018 10:56:39 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2262254/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2018-05-12T10:56:39Z</dc:date>
    </item>
    <item>
      <title>percona utility</title>
      <link>https://oksoft.antville.org/stories/2255789/</link>
      <description>&lt;p&gt;We can re-create mysql users using the percona utility.&lt;/p&gt;&lt;p&gt;wget percona.com/get/pt-show-grants&lt;/p&gt;&lt;p&gt;chmod 777 pt-show-grants&lt;/p&gt;&lt;p&gt;./pt-show-grants&lt;/p&gt;</description>
      <pubDate>Wed, 06 Sep 2017 06:22:39 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2255789/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2017-09-06T06:22:39Z</dc:date>
    </item>
    <item>
      <title>Backup mysql data using innobackup</title>
      <link>https://oksoft.antville.org/stories/2230134/</link>
      <description>&lt;p&gt;BACKUP&lt;/p&gt;&lt;p&gt;innobackupex --user=USERNAME  --password=PASSWORD --no-timestamp /data/backups/new_backup &amp;lt;--(PATH OF BACKUP)innobackupex --apply-log /data/backups/new_backup&lt;/p&gt;&lt;p&gt;RESTORE&lt;/p&gt;&lt;p&gt;service mysql stopmkdir /tmp/mysqlmv /var/lib/mysql/* /tmp/mysql/innobackupex --copy-back /data/backups/new_backup &amp;lt;--(PATH OF BACKUP WHERE IS STORED)chown -R mysql: /var/lib/mysqlservice mysql start&lt;/p&gt;</description>
      <pubDate>Mon, 28 Sep 2015 06:09:42 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2230134/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2015-09-28T06:09:42Z</dc:date>
    </item>
  </channel>
</rss>

