<?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 18:45:09 GMT</pubDate>
    <dc:date>2026-06-17T18:45:09Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>schema conversion tool</title>
      <link>https://oksoft.antville.org/stories/2271570/</link>
      <description>&lt;p&gt;This seems to be a useful tool to convert mysql or oracle schema to redshift. select queries can also be migrated easily using...&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.sqlines.com/online"&gt;www.sqlines.com&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 30 Mar 2019 04:52:58 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2271570/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2019-03-30T04:52:58Z</dc:date>
    </item>
    <item>
      <title>Install percona extra backup tool innobackupex</title>
      <link>https://oksoft.antville.org/stories/2230135/</link>
      <description>&lt;p&gt;Steps to install innobackupex on Ubuntu:&lt;/p&gt;&lt;p&gt;$ apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A&lt;/p&gt;&lt;p&gt;Add this to /etc/apt/sources.list, replacing VERSION precise with the name of your distribution:&lt;/p&gt;&lt;p&gt;deb &lt;a href="http://repo.percona.com/apt"&gt;repo.percona.com&lt;/a&gt; precise maindeb-src &lt;a href="http://repo.percona.com/apt"&gt;repo.percona.com&lt;/a&gt; precise main&lt;/p&gt;&lt;p&gt;Remember to update the local cache:$ apt-get update&lt;/p&gt;&lt;p&gt;Now you can install Percona XtraBackup with:$ apt-get install percona-xtrabackup&lt;/p&gt;</description>
      <pubDate>Mon, 28 Sep 2015 06:24:39 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2230135/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2015-09-28T06:24:39Z</dc:date>
    </item>
    <item>
      <title>Tokudb and proxy on the same server</title>
      <link>https://oksoft.antville.org/stories/2188366/</link>
      <description>&lt;h1&gt;Here are the 2 steps to start tokudb&lt;/h1&gt;&lt;p&gt;cd /root/percona-5.5.30-tokudb-7.0.1-fedora-x86_64/./bin/mysqld_safe &amp;amp;&lt;/p&gt;&lt;h1&gt;start proxy with failed query log&lt;/h1&gt;&lt;p&gt;sh /usr/share/mysql/mysql-proxy-0.8.3-linux-rhel5-x86-64bit/bin/mysql-proxy --plugins=proxy --proxy-lua-script=/usr/share/mysql/mysql-proxy-0.8.3-linux-rhel5-x86-64bit/share/doc/mysql-proxy/failed-query.lua&lt;/p&gt;</description>
      <pubDate>Mon, 10 Feb 2014 05:16:23 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/2188366/</guid>
      <dc:creator>shantanu oak</dc:creator>
      <dc:date>2014-02-10T05:16:23Z</dc:date>
    </item>
    <item>
      <title>Install SQLite</title>
      <link>https://oksoft.antville.org/stories/1902886/</link>
      <description>&lt;p&gt;$ # As of March 2009, the latest version was 3.6.11.$ wget &lt;a href="http://www.sqlite.org/sqlite-amalgamation-3.6.11.tar.gz"&gt;www.sqlite.org&lt;/a&gt;$ tar xzf sqlite-amalgamation-3.6.11.tar.gz$ cd sqlite-3.6.11$ ./configure &amp;amp;&amp;amp; make$ sudo make install&lt;/p&gt;</description>
      <pubDate>Wed, 13 May 2009 13:54:10 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1902886/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-05-13T13:54:10Z</dc:date>
    </item>
    <item>
      <title>skip networking in MySQL</title>
      <link>https://oksoft.antville.org/stories/1900194/</link>
      <description>&lt;p&gt;When there is maintenance work to be carried on the database server, you can simply skip networking so that no connection from any other server from the network will be accepted.Simply enter the following in /etc/my.cnf:&lt;/p&gt;&lt;p&gt;[mysqld]&lt;/p&gt;&lt;h1&gt;Prevent network access to MySQL.&lt;/h1&gt;&lt;p&gt;skip-networking&lt;/p&gt;</description>
      <pubDate>Sun, 03 May 2009 15:34:24 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1900194/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-05-03T15:34:24Z</dc:date>
    </item>
    <item>
      <title>Saving data to text file</title>
      <link>https://oksoft.antville.org/stories/1899983/</link>
      <description>&lt;p&gt;sqlite&amp;gt; .mode listsqlite&amp;gt; .separator |sqlite&amp;gt; .output test_file_1.txtsqlite&amp;gt; select * from tbl1;sqlite&amp;gt; .exit$ cat test_file_1.txthello|10goodbye|20$&lt;/p&gt;</description>
      <pubDate>Sat, 02 May 2009 15:01:35 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1899983/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-05-02T15:01:35Z</dc:date>
    </item>
    <item>
      <title>Innodb troubleshooting</title>
      <link>https://oksoft.antville.org/stories/1882959/</link>
      <description>&lt;p&gt;When you have your mysql up and running, just connect to any database (like mysql or test) and perform a following command:&lt;/p&gt;&lt;p&gt;CREATE TABLE innodb_table_monitor(x int) engine=innodb;&lt;/p&gt;&lt;p&gt;This will force innodb engine to start table monitor and dump some useful data regarding your tablespaces in mysql's error log&lt;/p&gt;</description>
      <pubDate>Thu, 26 Feb 2009 07:29:40 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1882959/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2009-02-26T07:29:40Z</dc:date>
    </item>
    <item>
      <title>optimize all tables</title>
      <link>https://oksoft.antville.org/stories/1853492/</link>
      <description>&lt;p&gt;mysql -e&amp;quot;SELECT CONCAT('OPTIMIZE TABLES ', GROUP_CONCAT(TABLE_SCHEMA, '.', TABLE_NAME ORDER BY TABLE_SCHEMA, TABLE_NAME SEPARATOR ',')) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'dbname' GROUP BY TABLE_SCHEMA\G&amp;quot; | awk -F: '{print $2}' | mysql&lt;/p&gt;</description>
      <pubDate>Tue, 11 Nov 2008 11:44:04 GMT</pubDate>
      <guid>https://oksoft.antville.org/stories/1853492/</guid>
      <dc:creator>shantanuo</dc:creator>
      <dc:date>2008-11-11T11:44:04Z</dc:date>
    </item>
  </channel>
</rss>

