<?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>Tech-Recipes &#187; Database</title>
	<atom:link href="http://www.tech-recipes.com/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Thu, 09 Feb 2012 21:32:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Oracle: Using the AFTER INSERT and AFTER UPDATE triggers</title>
		<link>http://www.tech-recipes.com/rx/19839/oracle-using-the-after-insert-and-after-update-triggers/</link>
		<comments>http://www.tech-recipes.com/rx/19839/oracle-using-the-after-insert-and-after-update-triggers/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 17:57:21 +0000</pubDate>
		<dc:creator>Vishwanath Dalvi</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[after insert]]></category>
		<category><![CDATA[after update]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[Trigger]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=19839</guid>
		<description><![CDATA[A database trigger is a stored procedure that automatically executes whenever an event occurs. The event may be insert-delete-update operations. Oracle initiates an &#8216;AFTER INSERT&#8217; trigger after an insert event has occurred and an &#8216;AFTER UPDATE&#8217; trigger after an update event has occurred.
Let&#8217;s see an example for &#8216;AFTER INSERT&#8217; trigger.
Syntax:
CREATE or REPLACE TRIGGER trigger_name
AFTER INSERT [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/19839/oracle-using-the-after-insert-and-after-update-triggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle: How to Create a Copy of Table Data</title>
		<link>http://www.tech-recipes.com/rx/19808/oracle-how-to-create-a-copy-of-table-data/</link>
		<comments>http://www.tech-recipes.com/rx/19808/oracle-how-to-create-a-copy-of-table-data/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 17:29:30 +0000</pubDate>
		<dc:creator>Vishwanath Dalvi</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=19808</guid>
		<description><![CDATA[Knowing how to copy existing table data is beneficial to any DBA.  This tutorial will demonstrate how to copy an existing table&#8217;s data into a new table. Examples with walkthrough explanation are provided.
Let&#8217;s see the syntax and example for creating a copy of old_table into new_table in oracle.
Syntax:
Create table new_table
as select * from old_table;
First [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/19808/oracle-how-to-create-a-copy-of-table-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle: How to Create an Auto Increment Field Using Sequence</title>
		<link>http://www.tech-recipes.com/rx/19736/oracle-how-to-create-an-auto-increment-field-using-sequence/</link>
		<comments>http://www.tech-recipes.com/rx/19736/oracle-how-to-create-an-auto-increment-field-using-sequence/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:51:54 +0000</pubDate>
		<dc:creator>Vishwanath Dalvi</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Auto increment]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[sequence]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=19736</guid>
		<description><![CDATA[In Oracle, you can create an auto increment field using &#8217;sequence&#8217; database object that can be assigned as primary keys. Using Oracle &#8217;sequence&#8217; object, you can generate new values for a column. An Oracle sequence is an object like a table or a stored procedure. Examples with walkthrough explanations are provided.

Create a sequence.
Syntax:
Create sequence sequence_name
start [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/19736/oracle-how-to-create-an-auto-increment-field-using-sequence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008/2008 R2: Move tempdb to Improve Performance</title>
		<link>http://www.tech-recipes.com/rx/19178/sql-server-20082008-r2-move-tempdb-to-improve-performance/</link>
		<comments>http://www.tech-recipes.com/rx/19178/sql-server-20082008-r2-move-tempdb-to-improve-performance/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 13:30:28 +0000</pubDate>
		<dc:creator>Rob Rogers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[dba]]></category>
		<category><![CDATA[improve]]></category>
		<category><![CDATA[increase]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[sql server 2008 r2]]></category>
		<category><![CDATA[tempdb]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=19178</guid>
		<description><![CDATA[By default, tempdb is placed on the same drive that SQL Server is installed on.  This can impair performance as tempdb is frequently used to store temporary tables and objects.  If the hard drive is being accessed for other functions, it can result in sluggish performance by the database as well as any [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/19178/sql-server-20082008-r2-move-tempdb-to-improve-performance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MySQL: How to get row number order</title>
		<link>http://www.tech-recipes.com/rx/17470/mysql-how-to-get-row-number-order-5/</link>
		<comments>http://www.tech-recipes.com/rx/17470/mysql-how-to-get-row-number-order-5/#comments</comments>
		<pubDate>Sat, 01 Oct 2011 10:52:29 +0000</pubDate>
		<dc:creator>Vishwanath Dalvi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[db]]></category>
		<category><![CDATA[row number]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=17470</guid>
		<description><![CDATA[These directions walk through how one can displaying the row number order/rank for result set obtained from executing a sql query. An example with walkthrough explanation is provided.

Let&#8217;s walk through an example.  
First, let&#8217;s create an employee table in our db.
Query 1.1  
mysql&#62; create table employee (id smallint(5),
name varchar(15),salary smallint(5));
Next, insert records into [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/17470/mysql-how-to-get-row-number-order-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server: How To Find Duplicate Records</title>
		<link>http://www.tech-recipes.com/rx/4806/sql-server-how-to-find-duplicate-records/</link>
		<comments>http://www.tech-recipes.com/rx/4806/sql-server-how-to-find-duplicate-records/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 05:09:15 +0000</pubDate>
		<dc:creator>Rob Rogers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[identify]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[records]]></category>
		<category><![CDATA[select]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[unique]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=4806</guid>
		<description><![CDATA[When checking the integrity of your data, it may be necessary to check your tables for duplicate records.  By grouping these records, you can eliminate the unique records from your result set so that you can view just the records that contain duplicated values, making it easier to remove them.]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/4806/sql-server-how-to-find-duplicate-records/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005: How to Reset a Forgotten Password for the sa Account</title>
		<link>http://www.tech-recipes.com/rx/3766/sql-server-2005-how-to-reset-a-forgotten-password-for-the-sa-account/</link>
		<comments>http://www.tech-recipes.com/rx/3766/sql-server-2005-how-to-reset-a-forgotten-password-for-the-sa-account/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 13:09:59 +0000</pubDate>
		<dc:creator>Rob Rogers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[forgotten password]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sa]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sql server 2005]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3766</guid>
		<description><![CDATA[If you've forgotten the sa password for your SQL server, you are probably in a panic.  Fear not, for you can reset the password and once again have access to the powers of the sa account by using the query window in the Management Studio.]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/3766/sql-server-2005-how-to-reset-a-forgotten-password-for-the-sa-account/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005: Locating Stored Procedures that Contain a Keyword</title>
		<link>http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/</link>
		<comments>http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 12:58:39 +0000</pubDate>
		<dc:creator>Rob Rogers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[stored procedure]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3701</guid>
		<description><![CDATA[Making changes to a database that has been created by a third pary can be a difficult task, especially when you don't want to break any of the existing stored procedures.  You can search the database's stored procedures for keywords to find which procedures use a keyword that is involved in your change.  This makes it much easier in identifying these procedures so you can make the appropriate changes.]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005/2008: Disable Management Studio&#8217;s Splash Screen</title>
		<link>http://www.tech-recipes.com/rx/3353/sql-server-20052008-disable-management-studios-splash-screen/</link>
		<comments>http://www.tech-recipes.com/rx/3353/sql-server-20052008-disable-management-studios-splash-screen/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 14:01:26 +0000</pubDate>
		<dc:creator>Rob Rogers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[splash screen]]></category>
		<category><![CDATA[sql server 2005]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3353</guid>
		<description><![CDATA[If you have grown tired of having to view the splash screen each and every time you open the SQL Server Management Studio, you can use a simple command line switch in your shortcut to bypass the annoyance.]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/3353/sql-server-20052008-disable-management-studios-splash-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft SQL Server: How to Find the Foreign Keys in a Database</title>
		<link>http://www.tech-recipes.com/rx/3194/microsoft-sql-server-how-to-find-the-foreign-keys-in-a-database/</link>
		<comments>http://www.tech-recipes.com/rx/3194/microsoft-sql-server-how-to-find-the-foreign-keys-in-a-database/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 13:19:17 +0000</pubDate>
		<dc:creator>Rob Rogers</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[foreign key]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3194</guid>
		<description><![CDATA[A foreign key is a column or columns that are used to enforce a link between data in two tables. While SQL Server gives you no quick and easy way to view the foreign keys in a database, this quick query will give you that information.  It comes in handy when trying to troubleshoot Foreign Key Constraint errors.]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/3194/microsoft-sql-server-how-to-find-the-foreign-keys-in-a-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (User agent is rejected)
Database Caching 5/11 queries in 1.446 seconds using memcached
Object Caching 654/726 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-09 23:33:19 -->
