<?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>Live with Dot Net &#187; DB Query</title>
	<atom:link href="http://www.livewithdotnet.com/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.livewithdotnet.com</link>
	<description>Just another Programming weblog</description>
	<lastBuildDate>Mon, 06 Feb 2012 21:54:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Below is a MySql trigger to insert/update other table</title>
		<link>http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/</link>
		<comments>http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 21:54:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DB Query]]></category>
		<category><![CDATA[Insert]]></category>
		<category><![CDATA[Insert/Update]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Other table]]></category>
		<category><![CDATA[trigger]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=42</guid>
		<description><![CDATA[Trigger in backend is very useful to report the input data in many different way.. This will be last step in performance tuning when the data double up drastically. DROP trigger IF EXISTS "Trigger Name"; delimiter $$ CREATE TRIGGER "Trigger Name" AFTER INSERT ON "Table Name - where the trigger will be fired on Insert/Update" [...]<p><a href="http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/">Below is a MySql trigger to insert/update other table</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/below-is-a-mysql-trigger-to-insertupdate-other-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server &#8211; How to Configure Database mails</title>
		<link>http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/</link>
		<comments>http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 10:35:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DB Query]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=59</guid>
		<description><![CDATA[Below are the steps to configure the Database mailing feature in the SQL Server 2008 Database. The mail can be triggered through a Stored Procedure call. The mails are queued and deliverd using the SMTP Push mail servers. Steps: 1. In Sql Server database server, Go to Management --> Database Mail. 2. Right click the [...]<p><a href="http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/">SQL Server &#8211; How to Configure Database mails</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/sql-server-how-to-configure-database-mails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Query database to get the table and its size and number of rows in SQL Server</title>
		<link>http://www.livewithdotnet.com/query-database-to-get-the-table-and-its-size-and-number-of-rows-in-sql-server/</link>
		<comments>http://www.livewithdotnet.com/query-database-to-get-the-table-and-its-size-and-number-of-rows-in-sql-server/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 11:03:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DB Query]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=61</guid>
		<description><![CDATA[CREATE TABLE #temp ( table_name sysname , row_count INT, reserved_size VARCHAR(50), data_size VARCHAR(50), index_size VARCHAR(50), unused_size VARCHAR(50)) SET NOCOUNT ON INSERT #temp EXEC sp_msforeachtable 'sp_spaceused ''?''' SELECT a.table_name, a.row_count, COUNT(*) AS col_count, a.data_size FROM #temp a INNER JOIN information_schema.columns b ON a.table_name collate database_default = b.table_name collate database_default GROUP BY a.table_name, a.row_count, a.data_size ORDER BY [...]<p><a href="http://www.livewithdotnet.com/query-database-to-get-the-table-and-its-size-and-number-of-rows-in-sql-server/">Query database to get the table and its size and number of rows in SQL Server</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/query-database-to-get-the-table-and-its-size-and-number-of-rows-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Bulk Copy using SQL Server 2005</title>
		<link>http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/</link>
		<comments>http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 10:33:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp .Net]]></category>
		<category><![CDATA[DB Query]]></category>
		<category><![CDATA[c sharp code]]></category>
		<category><![CDATA[SQL Bulk Copy]]></category>
		<category><![CDATA[SQL Bulk Copy using SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=19</guid>
		<description><![CDATA[The below code help in copying a large amount of data from the local datastore to the sql server database. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 protected void Button11_Click&#40;object sender, EventArgs e&#41; &#123; ConnectionStringSettings [...]<p><a href="http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/">SQL Bulk Copy using SQL Server 2005</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/sql-bulk-copy-using-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a event in MySQL (Schedule to run a Store procedure)</title>
		<link>http://www.livewithdotnet.com/how-to-create-a-event-in-mysql-schedule-to-run-a-store-procedure/</link>
		<comments>http://www.livewithdotnet.com/how-to-create-a-event-in-mysql-schedule-to-run-a-store-procedure/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 21:56:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DB Query]]></category>
		<category><![CDATA[Calls]]></category>
		<category><![CDATA[Daily task]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Schedule]]></category>
		<category><![CDATA[Stored Procedure]]></category>

		<guid isPermaLink="false">http://www.livewithdotnet.com/?p=50</guid>
		<description><![CDATA[Below statement will set an event on MySQL Database which will be fired at a given interval. You could execute another query or call a Stored Procedure to accomplish you daily routine tasks. CREATE EVENT 'Event Name' ON SCHEDULE EVERY 1 DAY -- 'Day Interval' STARTS '2009-06-29 13:05:' -- 'Start time - Execute on the [...]<p><a href="http://www.livewithdotnet.com/how-to-create-a-event-in-mysql-schedule-to-run-a-store-procedure/">How to create a event in MySQL (Schedule to run a Store procedure)</a> is a post from: <a href="http://www.livewithdotnet.com">Live with Dot Net</a></p>
]]></description>
		<wfw:commentRss>http://www.livewithdotnet.com/how-to-create-a-event-in-mysql-schedule-to-run-a-store-procedure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/55 queries in 0.017 seconds using disk: basic
Object Caching 887/993 objects using disk: basic

Served from: www.livewithdotnet.com @ 2012-02-06 17:32:20 -->
