<?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>ForDevs &#187; sql</title>
	<atom:link href="http://www.fordevs.com/tag/sql/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Get The List Of All Tables in a Database &#8211; Sql Server 2005</title>
		<link>http://www.fordevs.com/2009/06/how-to-get-the-list-of-all-tables-in-a-database-sql-server-2005.html</link>
		<comments>http://www.fordevs.com/2009/06/how-to-get-the-list-of-all-tables-in-a-database-sql-server-2005.html#comments</comments>
		<pubDate>Tue, 23 Jun 2009 08:19:22 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=426</guid>
		<description><![CDATA[We a can get the list of all tables of a database in different ways : - 1. SELECT * FROM sys.TABLES 2. SELECT * FROM sysobjects WHERE TYPE='U' 3. SELECT * FROM information_schema.TABLES WHERE TABLE_TYPE = 'BASE TABLE']]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/06/how-to-get-the-list-of-all-tables-in-a-database-sql-server-2005.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View Existing Triggers &#8211; Drop One or More Triggers in Sql Server 2005</title>
		<link>http://www.fordevs.com/2009/06/view-existing-triggers-drop-one-or-more-triggers-in-sql-server-2005.html</link>
		<comments>http://www.fordevs.com/2009/06/view-existing-triggers-drop-one-or-more-triggers-in-sql-server-2005.html#comments</comments>
		<pubDate>Fri, 19 Jun 2009 15:44:22 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=418</guid>
		<description><![CDATA[To view the existing triggers in the database SELECT * FROM sys.triggers OR SELECT * FROM sysobjects WHERE xtype='TR' To view the existing triggers in a specified table sp_helptrigger tablename To drop a trigger DROP TRIGGER triggername To drop more triggers at a time DROP TRIGGER &#91;trigger1&#93;,&#91;trigger2&#93;,&#91;trigger3&#93;...&#91;triggern&#93;]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/06/view-existing-triggers-drop-one-or-more-triggers-in-sql-server-2005.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create backup copy of table in SQLServer &#8211; (Select Into)</title>
		<link>http://www.fordevs.com/2008/12/create-backup-copy-of-table-in.html</link>
		<comments>http://www.fordevs.com/2008/12/create-backup-copy-of-table-in.html#comments</comments>
		<pubDate>Mon, 29 Dec 2008 13:20:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/create-backup-copy-of-table-in-sqlserver-select-into.html</guid>
		<description><![CDATA[SELECT INTO statement can be used to create backup copy of a table.This sql statement selects records from one table according to the selection we make and inserts the result set into another new table with the table name we specify. Syntax given below is used to make a exact copy of the table.That is [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/create-backup-copy-of-table-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usage of Stored Procedures</title>
		<link>http://www.fordevs.com/2008/12/usage-of-stored-procedures.html</link>
		<comments>http://www.fordevs.com/2008/12/usage-of-stored-procedures.html#comments</comments>
		<pubDate>Tue, 16 Dec 2008 22:18:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Server IQ]]></category>
		<category><![CDATA[What-is]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/usage-of-stored-procedures.html</guid>
		<description><![CDATA[Reduce network traffic: You have to send the SQL statement across the network. With sprocs, you can execute SQL in batches, which is also more efficient. Caching query plan: The first time the stored procedure is executed, SQL Server creates an execution plan, which is cached for reuse. This is particularly performant for small queries [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/usage-of-stored-procedures.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Add,Edit,Retrieve and Delete in Asp.net</title>
		<link>http://www.fordevs.com/2008/12/simple-addeditretrieve-and-delete-in.html</link>
		<comments>http://www.fordevs.com/2008/12/simple-addeditretrieve-and-delete-in.html#comments</comments>
		<pubDate>Tue, 09 Dec 2008 05:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/simple-addeditretrieve-and-delete-in-aspnet.html</guid>
		<description><![CDATA[Here is a example application of Add,Edit,Retrieve and Delete operations using Asp.net. Download Creating a table employeeinfo for proceeding the operations. Sql Table Creation CREATE TABLE employeeinfo &#40; empid int NOT NULL PRIMARY KEY, empname varchar&#40;50&#41;, empaddress varchar&#40;200&#41;, empsalary int &#41; Declaring Connection String and Variables Namespace : using System.Data.SqlClient; string QryStr = ""; SqlConnection [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/simple-addeditretrieve-and-delete-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Database,Table and Procedure in Sql Server &#8211; Beginners</title>
		<link>http://www.fordevs.com/2008/11/create-databasetable-and-procedure-in.html</link>
		<comments>http://www.fordevs.com/2008/11/create-databasetable-and-procedure-in.html#comments</comments>
		<pubDate>Tue, 25 Nov 2008 11:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/create-databasetable-and-procedure-in-sql-server-beginners.html</guid>
		<description><![CDATA[Database Creation : CREATE DATABASE EMPLOYEE Table Creation : CREATE TABLE EMPINFO(ROWID INT IDENTITY(1,1) NOT NULL,EMPID INT NOT NULL,EMPNAME VARCHAR(50) NOT NULL,EMPDEPT VARCHAR(3) NOT NULL,EMPSAL INT NOT NULL,EMPADDRESS VARCHAR(100) NOT NULL,ACTIVE CHAR(1) NOT NULL DEFAULT ‘T’) Procedure Creation : CREATE PROC EMPINFO_ADD_EDIT(@iEMPID INT,@vEMPNAME VARCHAR(50),@vEMPDEPT VARCHAR(3),@iEMPSAL INT ,@vEMPADDRESS VARCHAR(100),@cACTIVE CHAR(1))ASDECLARE @CNT INT;BEGINSET @CNT = 0;SELECT @CNT [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/create-databasetable-and-procedure-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Stored Procedure within a Stored Procedure</title>
		<link>http://www.fordevs.com/2008/11/create-stored-procedure-within-stored.html</link>
		<comments>http://www.fordevs.com/2008/11/create-stored-procedure-within-stored.html#comments</comments>
		<pubDate>Tue, 04 Nov 2008 18:02:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/create-a-stored-procedure-within-a-stored-procedure.html</guid>
		<description><![CDATA[When you want to create a stored procedure dynamically,we can create a stored procedure within a stored procedure. CREATE PROC procCreateProcedure(@spname NVARCHAR(100))ASBEGINDECLARE @ProcedureName NVARCHAR(100)DECLARE @Exe VARCHAR(8000) /*setting the stored procedure name with spname passed*/ SET @ProcedureName = @spname /*setting the stored procedure name with spname passed*/ /*Nothing will be done if procedure name is empty*/IF [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/create-stored-procedure-within-stored.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
