<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>..::CHANGE is INEVITABLE::.. &#187; MySQL</title>
	<atom:link href="http://kedar.nitty-witty.com/blog/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://kedar.nitty-witty.com/blog</link>
	<description>kedar.nitty-witty.com</description>
	<lastBuildDate>Fri, 03 Sep 2010 13:10:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL Stored procedure to Generate-Extract Insert Statement</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-stored-procedure-to-generate-extract-insert-statement/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-stored-procedure-to-generate-extract-insert-statement/#comments</comments>
		<pubDate>Wed, 05 May 2010 11:14:28 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=888</guid>
		<description><![CDATA[
			
				
			
		
A lot of places I saw people asking for ways to generate Insert statements.
We do have GUI Tools which can extract insert statements for us readily. of the time I choose the MySQLDump way to generate insert statements.
mysqldump -uroot -ppassword &#8211;complete-insert &#8211;no-create-info DATABASE TABLENAME &#62; TABLENAME.sql
But mind is very unstable and hungry, we don&#8217;t stop [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/' rel='bookmark' title='Permanent Link: Stored procedure to Find database objects'>Stored procedure to Find database objects</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-stored-procedure-split-delimited-string-into-rows/' rel='bookmark' title='Permanent Link: MySQL Stored procedure &#8211; Split Delimited string into Rows'>MySQL Stored procedure &#8211; Split Delimited string into Rows</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-stored-procedure-to-generate-extract-insert-statement/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MySQL Load Data Infile Syntax Generator Tool Download</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-load-data-infile-syntax-generator-tool/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-load-data-infile-syntax-generator-tool/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 07:30:28 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Load Data Syntax]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=754</guid>
		<description><![CDATA[
			
				
			
		
The LOAD DATA INFILE statement reads rows from a text file into a table at a very high speed. The file name must be given as a literal string.
I have already written the basic how to follow that considering additional cases.
A lot of questions I have seen for loading separated data to MySQL, so here [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/' rel='bookmark' title='Permanent Link: Load Delimited Data (csv, excel) into MySQL Server'>Load Delimited Data (csv, excel) into MySQL Server</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/using-mysqltuner-mysql-optimization-tool/' rel='bookmark' title='Permanent Link: Using MySQLTuner &#8211; MySQL Optimization Tool'>Using MySQLTuner &#8211; MySQL Optimization Tool</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-stored-procedure-to-generate-extract-insert-statement/' rel='bookmark' title='Permanent Link: MySQL Stored procedure to Generate-Extract Insert Statement'>MySQL Stored procedure to Generate-Extract Insert Statement</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-load-data-infile-syntax-generator-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL related file types and basic information</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-related-file-types-and-basic-information/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-related-file-types-and-basic-information/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 12:43:14 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[files]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=726</guid>
		<description><![CDATA[
			
				
			
		
This post covers the basic information of files that MySQL Server uses / creates for various tasks.
my.cnf :
It is the main configuration file for MySQL. You may find it under base directory in windows or under /etc/.
.sock  :
mysqld creates a socket for programs to connect to and notes in this file. It is named [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/' rel='bookmark' title='Permanent Link: Load Delimited Data (csv, excel) into MySQL Server'>Load Delimited Data (csv, excel) into MySQL Server</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/difference-myisam-and-innodb-storage-engines-mysql/' rel='bookmark' title='Permanent Link: Difference MyISAM and InnoDB Storage Engines Mysql'>Difference MyISAM and InnoDB Storage Engines Mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/calculte-mysql-memory-usage-quick-stored-proc/' rel='bookmark' title='Permanent Link: Calculate Mysql Memory Usage &#8211; Quick Stored Proc'>Calculate Mysql Memory Usage &#8211; Quick Stored Proc</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-related-file-types-and-basic-information/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>SQL syntax with /*! c-style comments in MySQLdump</title>
		<link>http://kedar.nitty-witty.com/blog/sql-syntax-with-c-style-comments-in-mysqldump/</link>
		<comments>http://kedar.nitty-witty.com/blog/sql-syntax-with-c-style-comments-in-mysqldump/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 07:27:24 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[comments]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=667</guid>
		<description><![CDATA[
			
				
			
		
In mysql we have &#8212; , /* and /*! comments.  This post is mainly about very basic c-style comments.
/*! : C-Style comments in MySQL
We normally see comments in MySQLdump as follows:
/*!40000 ALTER TABLE `a` DISABLE KEYS */;
 Or
 /*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
These are actually C-Style comments which has embeded sql and treated specially [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-load-data-infile-syntax-generator-tool/' rel='bookmark' title='Permanent Link: MySQL Load Data Infile Syntax Generator Tool Download'>MySQL Load Data Infile Syntax Generator Tool Download</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-related-file-types-and-basic-information/' rel='bookmark' title='Permanent Link: MySQL related file types and basic information'>MySQL related file types and basic information</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/sql-syntax-with-c-style-comments-in-mysqldump/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ideas for select all columns but one mysql stored procedure</title>
		<link>http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/</link>
		<comments>http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 08:05:40 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[select all but one]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=649</guid>
		<description><![CDATA[
			
				
			
		
Assume we&#8217;ve a table with 100 rows and we need to select all columns but one.
The problem is headache of actually typing out all 99 required columns!!
Solutions / Ideas to above problem are:

Ignorance is bliss. Select all(*) and ignore the column.
Manually type column names or manage it with copy paste!
Create a view from original table [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/' rel='bookmark' title='Permanent Link: Stored procedure &#8211; Execute query if table or Column exists'>Stored procedure &#8211; Execute query if table or Column exists</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/search-through-all-databases-tables-columns-in-mysql/' rel='bookmark' title='Permanent Link: Search through all databases, tables, columns in mysql'>Search through all databases, tables, columns in mysql</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 useful MySQL Command Options-pager-prompt-rehash-tee-system</title>
		<link>http://kedar.nitty-witty.com/blog/5-useful-mysql-command-options-pager-prompt-rehash-tee-system/</link>
		<comments>http://kedar.nitty-witty.com/blog/5-useful-mysql-command-options-pager-prompt-rehash-tee-system/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 12:04:40 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[command options]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=638</guid>
		<description><![CDATA[
			
				
			
		
There are set of commands that MySQL itself interprets. You may use &#8220;help&#8221; or &#8220;\h&#8221; at the mysql&#62; prompt to list them.
Below are the 5 most useful MySQL Command Options.
1. \# OR rehash: Enable automatic rehashing.
Do you have long table names, you find it difficult to remember tablenames or you&#8217;re just as lazy as I [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-related-file-types-and-basic-information/' rel='bookmark' title='Permanent Link: MySQL related file types and basic information'>MySQL related file types and basic information</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/steps-to-move-copy-rename-mysql-database/' rel='bookmark' title='Permanent Link: Steps to Move Copy Rename MySQL Database'>Steps to Move Copy Rename MySQL Database</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/in-the-world-of-nosql-hands-on-mongodb-1/' rel='bookmark' title='Permanent Link: In the world of NoSQL-Hands on Mongodb-1'>In the world of NoSQL-Hands on Mongodb-1</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/5-useful-mysql-command-options-pager-prompt-rehash-tee-system/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>MyDumpSplitter-Extract tables from Mysql dump-shell script</title>
		<link>http://kedar.nitty-witty.com/blog/mydumpsplitter-extract-tables-from-mysql-dump-shell-script/</link>
		<comments>http://kedar.nitty-witty.com/blog/mydumpsplitter-extract-tables-from-mysql-dump-shell-script/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 07:35:57 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[techinical]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=523</guid>
		<description><![CDATA[
			
				
			
		
A lot of articles have been written on splitting mysqldump and grab required tables.
Long back when Shlomi had suggested a &#8220;sed&#8221; way, I actually shell scripted it, and now publishing.
This shell script will be grabbing the tables you want and pass it to tablename.sql.
It&#8217;s capable to understand regular expressions as I&#8217;ve added sed -r option.
Also [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/how-to-echo-colored-text-in-shell-script/' rel='bookmark' title='Permanent Link: How to echo colored text in linux shell script'>How to echo colored text in linux shell script</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-stored-procedure-to-generate-extract-insert-statement/' rel='bookmark' title='Permanent Link: MySQL Stored procedure to Generate-Extract Insert Statement'>MySQL Stored procedure to Generate-Extract Insert Statement</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/simple-shell-script-to-monitoring-disk-space-on-a-linux-machine/' rel='bookmark' title='Permanent Link: Simple Shell Script to Monitoring Disk Space on a Linux Machine'>Simple Shell Script to Monitoring Disk Space on a Linux Machine</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mydumpsplitter-extract-tables-from-mysql-dump-shell-script/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Stored procedure to add-remove prefix by rename table mysql</title>
		<link>http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/</link>
		<comments>http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 08:56:19 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=472</guid>
		<description><![CDATA[
			
				
			
		
Here is one more procedure &#8211; (this time) for mass renaming of table. Adding and Removing table-name prefixes  
A friend of mine was renaming 100+ tables by using replace methods in notepad.
I showed em a bit better editor: Editplus and then I thought of rescue rest of those who are still interested in some [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/' rel='bookmark' title='Permanent Link: Stored procedure &#8211; Execute query if table or Column exists'>Stored procedure &#8211; Execute query if table or Column exists</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/' rel='bookmark' title='Permanent Link: Stored procedure to Find database objects'>Stored procedure to Find database objects</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/' rel='bookmark' title='Permanent Link: Ideas for select all columns but one mysql stored procedure'>Ideas for select all columns but one mysql stored procedure</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Load Delimited Data (csv, excel) into MySQL Server</title>
		<link>http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/</link>
		<comments>http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 06:41:55 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[load CSV]]></category>
		<category><![CDATA[load data]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=440</guid>
		<description><![CDATA[
			
				
			
		
Loading csv or delimited data files to MySQL database is a very common task frequently questioned about and almost everytime LOAD DATA INFILE come into rescue.
Here we will try to understand some of the very common scenarios for loading data into MySQL Database.
The Load Data Syntax:
LOAD DATA [LOW_PRIORITY &#124; CONCURRENT] [LOCAL] INFILE &#8216;file_name&#8217;
[REPLACE &#124; IGNORE]
INTO [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-load-data-infile-syntax-generator-tool/' rel='bookmark' title='Permanent Link: MySQL Load Data Infile Syntax Generator Tool Download'>MySQL Load Data Infile Syntax Generator Tool Download</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-stored-procedure-split-delimited-string-into-rows/' rel='bookmark' title='Permanent Link: MySQL Stored procedure &#8211; Split Delimited string into Rows'>MySQL Stored procedure &#8211; Split Delimited string into Rows</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Petition &#8211; Help saving MySQL &#8211; II</title>
		<link>http://kedar.nitty-witty.com/blog/petition-help-saving-mysql-ii/</link>
		<comments>http://kedar.nitty-witty.com/blog/petition-help-saving-mysql-ii/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 05:21:28 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=377</guid>
		<description><![CDATA[
			
				
			
		
Recently Monty has posted again and I completely convinced with whatever Monty has conveyed now or earlier.
The explainations he has provided under self-interview, I find sensible enough.
I did participated the help-saving-mysql campaign and I&#8217;m happy knowing the statistics.
I did got convinced about the possible threat about mysql&#8217;s future that&#8217;s been concerned a lot with all right reasons.
Well, Once sold, [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/monty-help-saving-mysql-the-oracle-ec/' rel='bookmark' title='Permanent Link: Monty: Help Saving MySQL &#8211; The Oracle &#038; EC'>Monty: Help Saving MySQL &#8211; The Oracle &#038; EC</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-certification-free-retake-get-two-chances-to-get-mysql-certified/' rel='bookmark' title='Permanent Link: MySQL Certification Free Retake: Get TWO chances to get MySQL Certified'>MySQL Certification Free Retake: Get TWO chances to get MySQL Certified</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/choosing-between-myisam-and-innodb-%e2%80%93-mysql-storage-engines/' rel='bookmark' title='Permanent Link: Choosing between MyISAM and INNODB – MySQL Storage Engines'>Choosing between MyISAM and INNODB – MySQL Storage Engines</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/petition-help-saving-mysql-ii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL Memory Usage Limits on 32 bit Linux</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-memory-usage-limits-on-32-bit-linux-os/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-memory-usage-limits-on-32-bit-linux-os/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 00:34:50 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=321</guid>
		<description><![CDATA[
			
				
			
		
I’m having RHEL 5 (32-bit) and MySQL-5.
I was trying to check how much is the Memory Utilization limits for MySQL 5 on 32bit OS.
We can easily calculate the maximum capacity of the address space is 2^32 bytes and that is where these limits come from.
* For MYSQL 5.0: Following are memory (storage) limits:
Max DB size: [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/calculte-mysql-memory-usage-quick-stored-proc/' rel='bookmark' title='Permanent Link: Calculate Mysql Memory Usage &#8211; Quick Stored Proc'>Calculate Mysql Memory Usage &#8211; Quick Stored Proc</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/using-mysqltuner-mysql-optimization-tool/' rel='bookmark' title='Permanent Link: Using MySQLTuner &#8211; MySQL Optimization Tool'>Using MySQLTuner &#8211; MySQL Optimization Tool</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/sql-syntax-with-c-style-comments-in-mysqldump/' rel='bookmark' title='Permanent Link: SQL syntax with /*! c-style comments in MySQLdump'>SQL syntax with /*! c-style comments in MySQLdump</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-memory-usage-limits-on-32-bit-linux-os/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL Certification Free Retake: Get TWO chances to get MySQL Certified</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-certification-free-retake-get-two-chances-to-get-mysql-certified/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-certification-free-retake-get-two-chances-to-get-mysql-certified/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 06:26:52 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=349</guid>
		<description><![CDATA[
			
				
			
		
Recently MySQL has offered MySQL Certification Free Retake on both DBA or Developer Certifications for a limited time.
For MySQL Certifications:
1. MySQL 5.0 Data Base Administrator Certification (SCMDBA)
- MySQL 5.0 DBA Part I Certification (CX-310-810)
- MySQL 5.0 DBA Part II Certification (CX-310-811)
2. MySQL 5.0 Developer Certification (SCMDEV)
- MySQL 5.0 Developer Part I Certification (CX-310-812)
- MySQL 5.0 [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/petition-help-saving-mysql-ii/' rel='bookmark' title='Permanent Link: Petition &#8211; Help saving MySQL &#8211; II'>Petition &#8211; Help saving MySQL &#8211; II</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/monty-help-saving-mysql-the-oracle-ec/' rel='bookmark' title='Permanent Link: Monty: Help Saving MySQL &#8211; The Oracle &#038; EC'>Monty: Help Saving MySQL &#8211; The Oracle &#038; EC</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/my-list-of-must-have-free-softwares/' rel='bookmark' title='Permanent Link: My list of must have free softwares'>My list of must have free softwares</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-certification-free-retake-get-two-chances-to-get-mysql-certified/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Monty: Help Saving MySQL &#8211; The Oracle &amp; EC</title>
		<link>http://kedar.nitty-witty.com/blog/monty-help-saving-mysql-the-oracle-ec/</link>
		<comments>http://kedar.nitty-witty.com/blog/monty-help-saving-mysql-the-oracle-ec/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 06:46:16 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=341</guid>
		<description><![CDATA[
			
				
			
		
We all are aware about the acquisition happened to MySQL; Sun and now Oracle.
A common understanding tells me that a business will always seek profit; so will Oracle.
And thats where worries and fear for existance of MySQL as an open-source and future growth are.
Here is what Micheal &#8220;Monty&#8221; Widenius shares with all of us:
We all [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/petition-help-saving-mysql-ii/' rel='bookmark' title='Permanent Link: Petition &#8211; Help saving MySQL &#8211; II'>Petition &#8211; Help saving MySQL &#8211; II</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/oracle-query-eliminate-duplicate-but-one-using-rowid/' rel='bookmark' title='Permanent Link: Oracle query-eliminate duplicate but one using rowid'>Oracle query-eliminate duplicate but one using rowid</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/simple-shell-script-to-monitoring-disk-space-on-a-linux-machine/' rel='bookmark' title='Permanent Link: Simple Shell Script to Monitoring Disk Space on a Linux Machine'>Simple Shell Script to Monitoring Disk Space on a Linux Machine</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/monty-help-saving-mysql-the-oracle-ec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stored procedure to Find database objects</title>
		<link>http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/</link>
		<comments>http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 15:13:34 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=311</guid>
		<description><![CDATA[
			
				
			
		
This procedure lists available database objects under passed database name.
It lists present Tables, Views, Stored Procedures, Functions and Triggers under particular database.
It also lists storage engine of tables.
It uses information schema database to gather information and storing in a temporary table.



Usage: call xplore(database-name);
- Procedure will search through information schema for database objects under database-name.
Download Stored [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/' rel='bookmark' title='Permanent Link: Stored procedure &#8211; Execute query if table or Column exists'>Stored procedure &#8211; Execute query if table or Column exists</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/' rel='bookmark' title='Permanent Link: Ideas for select all columns but one mysql stored procedure'>Ideas for select all columns but one mysql stored procedure</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Stored procedure &#8211; Split Delimited string into Rows</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-stored-procedure-split-delimited-string-into-rows/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-stored-procedure-split-delimited-string-into-rows/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:28:35 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[stored procedure]]></category>
		<category><![CDATA[techinical]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=290</guid>
		<description><![CDATA[
			
				
			
		
This procedure will split  a “;” separated column in to new fields preserving ids.
This is very specific problem, lets check it with example.
Consider a sample table test:


And we want output as follows:


So again I wrote a procedure.
Procedure will read a data from “tmp” table and will split data by my_delimiter delimiter and generate a temporary [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/' rel='bookmark' title='Permanent Link: Stored procedure to Find database objects'>Stored procedure to Find database objects</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/' rel='bookmark' title='Permanent Link: Ideas for select all columns but one mysql stored procedure'>Ideas for select all columns but one mysql stored procedure</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-stored-procedure-split-delimited-string-into-rows/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Stored procedure &#8211; Execute query if table or Column exists</title>
		<link>http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/</link>
		<comments>http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:12:01 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=287</guid>
		<description><![CDATA[
			
				
			
		
Well procedures mainly carried out working with information schema and it&#8217;s usage in stored procedure. Procedures are fairly simple and easy to understand.
1. Edit_table – following procedure executes queries to particular table if it exists.
Basically I created it to satisfy a need of altering a table if column exists.
Now it can be used to execute any [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/' rel='bookmark' title='Permanent Link: Ideas for select all columns but one mysql stored procedure'>Ideas for select all columns but one mysql stored procedure</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/' rel='bookmark' title='Permanent Link: Stored procedure to Find database objects'>Stored procedure to Find database objects</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL master master replication monitor with php code</title>
		<link>http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/</link>
		<comments>http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 13:56:52 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=271</guid>
		<description><![CDATA[
			
				
			
		
For monitoring replication we know a lot of tools and codes &#8211; but this one is different because I wrote it 
Well this is fairly simple php code for monitoring a master master replication setup.
It requires a single shared login id available on both MySQL servers.
It will display in tabular format following details:

File: Present binary [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/problem-with-master-master-replication-and-auto-increment/' rel='bookmark' title='Permanent Link: Problem with Master Master Replication and Auto Increment'>Problem with Master Master Replication and Auto Increment</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculate Mysql Memory Usage &#8211; Quick Stored Proc</title>
		<link>http://kedar.nitty-witty.com/blog/calculte-mysql-memory-usage-quick-stored-proc/</link>
		<comments>http://kedar.nitty-witty.com/blog/calculte-mysql-memory-usage-quick-stored-proc/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 16:11:28 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=227</guid>
		<description><![CDATA[
			
				
			
		
While going through mysql doc and MySQL Server Memory Usage, I noted following quick points regarding how mysql uses memory.
We have global buffers which are allocated irrespective of connections as and when mysql server is started. Along with that mysql server allocates memory to each thread to perform respective tasks.
So the formula goes:
Mysql Server Memory Usage [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-memory-usage-limits-on-32-bit-linux-os/' rel='bookmark' title='Permanent Link: MySQL Memory Usage Limits on 32 bit Linux'>MySQL Memory Usage Limits on 32 bit Linux</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-find-database-objects/' rel='bookmark' title='Permanent Link: Stored procedure to Find database objects'>Stored procedure to Find database objects</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/calculte-mysql-memory-usage-quick-stored-proc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scheduled Backup MySQL Administrator &amp; Windows Scheduler &#8211; Odd</title>
		<link>http://kedar.nitty-witty.com/blog/scheduled-backup-mysql-administrator-windows-scheduler-odd/</link>
		<comments>http://kedar.nitty-witty.com/blog/scheduled-backup-mysql-administrator-windows-scheduler-odd/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 09:04:35 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=221</guid>
		<description><![CDATA[
			
				
			
		
Creating scheduled backup using administrator is an easy task.
Follow the GUI and you&#8217;re done. But I observed something different!
MySQL Version: 5.0.83 Community
MySQL Administrator: 1.2.17
Machine: Intel P4, Windows XP, Enough RAM  
Logs: General, Error &#38; irrelevant here though Slow query.
Prologue: Administrator performs scheduled backup properly in normal scenario.
What I was watching: Administrator&#8217;s Auto-Backup behaviour with [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-related-file-types-and-basic-information/' rel='bookmark' title='Permanent Link: MySQL related file types and basic information'>MySQL related file types and basic information</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/' rel='bookmark' title='Permanent Link: Load Delimited Data (csv, excel) into MySQL Server'>Load Delimited Data (csv, excel) into MySQL Server</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/scheduled-backup-mysql-administrator-windows-scheduler-odd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitor mysql replication using php</title>
		<link>http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/</link>
		<comments>http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:21:25 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=200</guid>
		<description><![CDATA[
			
				
			
		
Monitoring a replication is an important aspect. As replication includes multiple nodes, it is essential to track activity and status across all mysql servers involved in replication.
To monitor replication we know commands like:
Show slave status;
Show master status;
Refer: http://dev.mysql.com/doc/refman/5.0/en/sql-syntax-replication.html
But when it comes to non-gui interface, it becomes little tedious.
With some efforts, I managed to make a [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/replication-slave-lag-monitoring-using-heartbeat-and-windows-batch-scripts/' rel='bookmark' title='Permanent Link: Replication slave lag monitoring using heartbeat and windows batch scripts'>Replication slave lag monitoring using heartbeat and windows batch scripts</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</title>
		<link>http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/</link>
		<comments>http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 07:56:02 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[master-master]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=33</guid>
		<description><![CDATA[
			
				
			
		
This article is a brief step-by-step tutorial on the subject task which is divided into the following main parts:

Installing two MySQL Server Instances
Setting up master-slave replication
Setting up slave-master replication

Let&#8217;s begin covering those points&#8230;
Installing Two MySQL Server Instances on Windows:

1. Install MySQL:

Download MySQL Binaries from dev.mysql.com.
Install normal MSI Package of mysql. (I used: mysql-essential-5.0.83-win32).

* Following MSI [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/replication-slave-lag-monitoring-using-heartbeat-and-windows-batch-scripts/' rel='bookmark' title='Permanent Link: Replication slave lag monitoring using heartbeat and windows batch scripts'>Replication slave lag monitoring using heartbeat and windows batch scripts</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/problem-with-master-master-replication-and-auto-increment/' rel='bookmark' title='Permanent Link: Problem with Master Master Replication and Auto Increment'>Problem with Master Master Replication and Auto Increment</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replication slave lag monitoring using heartbeat and windows batch scripts</title>
		<link>http://kedar.nitty-witty.com/blog/replication-slave-lag-monitoring-using-heartbeat-and-windows-batch-scripts/</link>
		<comments>http://kedar.nitty-witty.com/blog/replication-slave-lag-monitoring-using-heartbeat-and-windows-batch-scripts/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 07:54:07 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[master-master]]></category>
		<category><![CDATA[replication]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=30</guid>
		<description><![CDATA[
			
				
			
		
&#8220;Show Slave Status&#8221; command has a last column &#8220;Seconds_Behind_Master&#8221;, which gives us idea about how much time slave is lagging behind master. It is an important to be considered parameter in monitoring and maintaining replication.
This article explains us a way to monitor replication slave lag time. It also includes a sample batch scripts to automate [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/replication-slave-lag-monitoring-using-heartbeat-and-windows-batch-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search through all databases, tables, columns in mysql</title>
		<link>http://kedar.nitty-witty.com/blog/search-through-all-databases-tables-columns-in-mysql/</link>
		<comments>http://kedar.nitty-witty.com/blog/search-through-all-databases-tables-columns-in-mysql/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 08:04:35 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[stored procedure]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=38</guid>
		<description><![CDATA[
			
				
			
		
What will you do if one day some one ask you to find single string in all databases, alltables and in all columns?
I just read such question and tried to find a &#8220;ready made&#8221; solution.
Reusability is Key Concept !!
But I ended up finding no &#8220;copy-paste&#8221; material. Some of the posts like http://vyaskn.tripod.com/search_all_columns_in_all_tables.htm helped me out and supported my [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/ideas-for-select-all-columns-but-one-mysql-stored-procedure/' rel='bookmark' title='Permanent Link: Ideas for select all columns but one mysql stored procedure'>Ideas for select all columns but one mysql stored procedure</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-to-add-remove-prefix-by-rename-table-mysql/' rel='bookmark' title='Permanent Link: Stored procedure to add-remove prefix by rename table mysql'>Stored procedure to add-remove prefix by rename table mysql</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/stored-procedure-execute-query-if-table-or-column-exists/' rel='bookmark' title='Permanent Link: Stored procedure &#8211; Execute query if table or Column exists'>Stored procedure &#8211; Execute query if table or Column exists</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/search-through-all-databases-tables-columns-in-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Problem with Master Master Replication and Auto Increment</title>
		<link>http://kedar.nitty-witty.com/blog/problem-with-master-master-replication-and-auto-increment/</link>
		<comments>http://kedar.nitty-witty.com/blog/problem-with-master-master-replication-and-auto-increment/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 07:59:11 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=36</guid>
		<description><![CDATA[
			
				
			
		
Consider we&#8217;ve already set a master-master replication. Now create following table on Server1:
CREATE TABLE `temp` (
`id` int(10) NOT NULL auto_increment,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;

The table will will get replicated on Mysql Server2 in the master-master setup.
Now insert value on Mysql Server1 as follows:
mysql&#62;insert into temp values(null);
On Mysql Server2 in replication you will see [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/quick-multi-mysql-server-installation-with-master-master-replication-on-same-windows-box/' rel='bookmark' title='Permanent Link: Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box'>Quick Multi MySQL Server Installation with Master-Master Replication on Same Windows Box</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/problem-with-master-master-replication-and-auto-increment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload Image to MySQL using PHP</title>
		<link>http://kedar.nitty-witty.com/blog/upload-image-to-mysql-using-php/</link>
		<comments>http://kedar.nitty-witty.com/blog/upload-image-to-mysql-using-php/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 07:44:22 +0000</pubDate>
		<dc:creator>Kedar</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=23</guid>
		<description><![CDATA[
			
				
			
		
Upload Image to MySQL using PHP
As a new-bie to php/mysql, I tried different stuffs. So here I&#8217;m with my php code for Image Upload to MySQL. Its a quite simple code with two php files one to display and one to upload.
For Image Upload code, I&#8217;ve added code download link upload-image-mysql-demo.zip at the end of [...]


Related posts:<ol><li><a href='http://kedar.nitty-witty.com/blog/mysql-master-master-replication-monitor-with-php-code/' rel='bookmark' title='Permanent Link: MySQL master master replication monitor with php code'>MySQL master master replication monitor with php code</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/monitor-mysql-replication-using-php/' rel='bookmark' title='Permanent Link: Monitor mysql replication using php'>Monitor mysql replication using php</a></li>
<li><a href='http://kedar.nitty-witty.com/blog/load-delimited-data-csv-excel-into-mysql-server/' rel='bookmark' title='Permanent Link: Load Delimited Data (csv, excel) into MySQL Server'>Load Delimited Data (csv, excel) into MySQL Server</a></li>
</ol>]]></description>
		<wfw:commentRss>http://kedar.nitty-witty.com/blog/upload-image-to-mysql-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
