<?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>Internet solutions team &#187; SQL (Structured Query Language)</title>
	<atom:link href="http://www.isolutionteam.co.uk/category/database/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.isolutionteam.co.uk</link>
	<description>Write easy solutions, provide easy solutions</description>
	<lastBuildDate>Thu, 22 Dec 2011 15:42:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>select XML data from parent child tables sql server 2008</title>
		<link>http://www.isolutionteam.co.uk/select-xml-data-from-parent-child-tables-sql-server-2008/</link>
		<comments>http://www.isolutionteam.co.uk/select-xml-data-from-parent-child-tables-sql-server-2008/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 12:50:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[get xml from sql server 2005 or 2008]]></category>
		<category><![CDATA[xml parent child relation from sql server tables]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=662</guid>
		<description><![CDATA[Recently I was working on to create XML menu from SQL table. We have two tables one table is NavigationSystem and second table is Navigation Item. Following was required to show Parent Child relation ship. &#160; &#60;Navigation&#62; &#60;NavigationSystem&#62; &#60;systemid&#62;1&#60;/systemid&#62; &#60;Title&#62;Top Menu&#60;/Title&#62; &#60;Items&#62; &#60;Item&#62; &#60;systemid&#62;1&#60;/systemid&#62; &#60;ItemId&#62;1&#60;/ItemId&#62; &#60;label&#62;Home&#60;/label&#62; &#60;Url&#62;http://www.isolutionteam.co.uk&#60;/Url&#62; &#60;/Item&#62; &#60;Item&#62; &#60;systemid&#62;1&#60;/systemid&#62; &#60;ItemId&#62;2&#60;/ItemId&#62; &#60;label&#62;Database&#60;/label&#62; &#60;Url&#62;http://www.isolutionteam.co.uk/Database&#60;/Url&#62; &#60;/Item&#62; &#60;/Items [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/select-xml-data-from-parent-child-tables-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete duplicate records SQL</title>
		<link>http://www.isolutionteam.co.uk/delete-duplicate-records-sql/</link>
		<comments>http://www.isolutionteam.co.uk/delete-duplicate-records-sql/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 15:48:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[Delete duplicate records SQL]]></category>
		<category><![CDATA[My SQL]]></category>
		<category><![CDATA[SQL Serer]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=506</guid>
		<description><![CDATA[How to delete duplicate Towns from Town TableÂ  Using SQL Script where Primary key is unique but Town are duplicate. SQL Server and MY SQL DELETE Town1 FROMÂ  Town Town1 INNER JOIN Town Town2 ON Town2 .TownName=Town1.TownName WHERE Town1.TownID &#62;Town2.TownID Above SQL Script will delete Duplicate Towns from a Twon table where Town IDÂ  is [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/delete-duplicate-records-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find occurrence of object in a database using sql script</title>
		<link>http://www.isolutionteam.co.uk/find-occurrence-of-object-in-a-database-using-sql-script/</link>
		<comments>http://www.isolutionteam.co.uk/find-occurrence-of-object-in-a-database-using-sql-script/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 13:17:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[Find occurrence of object in a database using sql script]]></category>
		<category><![CDATA[Microsft SQL server]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=340</guid>
		<description><![CDATA[Following is very useful script which will give you occurrence of object or will tell you where you have used the object like field name is being used in stored procedures, functions and views. SELECT so.name, so.TYPE, sc.TEXT FROM sysobjects so INNER JOIN syscomments sc ON so.id = sc.id WHEREÂ  sc.TEXT LIKE &#8216;%[Field Name,Stored procedure [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/find-occurrence-of-object-in-a-database-using-sql-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL error handling using Try Catch with sql server 2008</title>
		<link>http://www.isolutionteam.co.uk/sql-error-handling-using-try-catch-with-sql-server-2008/</link>
		<comments>http://www.isolutionteam.co.uk/sql-error-handling-using-try-catch-with-sql-server-2008/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 11:59:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[error handling in sql t-sql]]></category>
		<category><![CDATA[how to handle errors in t-sql usnig try catch]]></category>
		<category><![CDATA[Microsoft Sql Server 2008]]></category>
		<category><![CDATA[sql server try catch]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=351</guid>
		<description><![CDATA[Following is code snipest which tells how to handle errors in SQL , T-SQL using Try Catch block. The code is self explanatory. This works excellent with Insert, Delete and Update SQL commands. Tested with Microsoft SQL server 2008. USE [databasname] BEGIN TRY BEGIN TRANSACTION Script code here; COMMIT TRANSACTION END TRY BEGIN CATCH IF [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/sql-error-handling-using-try-catch-with-sql-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assigning and Modifying Database Values â€œin Placeâ€</title>
		<link>http://www.isolutionteam.co.uk/assigning-and-modifying-database-values-%e2%80%9cin-place%e2%80%9d/</link>
		<comments>http://www.isolutionteam.co.uk/assigning-and-modifying-database-values-%e2%80%9cin-place%e2%80%9d/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:08:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[Assigning and modifying database values in place]]></category>
		<category><![CDATA[Sql server 2008]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=346</guid>
		<description><![CDATA[Assigning and Modifying Database Values â€œin Placeâ€ SQL Server 2008 introduces new compound assignment operators beyond the standard equality (=) operator that allow you to both assign and modify the outgoing data value. These operators are similar to what you would see in the C and Java languages. New assignment operators include the following: â€¢ [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/assigning-and-modifying-database-values-%e2%80%9cin-place%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Case Sensitive comparison of data in Select query</title>
		<link>http://www.isolutionteam.co.uk/case-sensitive-comparison-of-data-in-select-query/</link>
		<comments>http://www.isolutionteam.co.uk/case-sensitive-comparison-of-data-in-select-query/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 11:16:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[Sql data Case sensitive comparison]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=313</guid>
		<description><![CDATA[You can forcefully do the case sensitive comparison of data in sql serer by using COLLATE Latin1_General_CS_AS in a select query Select * fromÂ  Table1 inner join Table2 Table2.ID=Table1.ID where (Table2.WebsiteUrlÂ  COLLATE Latin1_General_CS_AS)&#60;&#62;(Table2.websiteurl COLLATE Latin1_General_CS_AS)]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/case-sensitive-comparison-of-data-in-select-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to export delimited (tab, space, comman) file from query analyzer</title>
		<link>http://www.isolutionteam.co.uk/how-to-export-delimited-tab-space-comman-file-from-query-analyzer/</link>
		<comments>http://www.isolutionteam.co.uk/how-to-export-delimited-tab-space-comman-file-from-query-analyzer/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 11:10:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[Export  SQl result as CSV file]]></category>
		<category><![CDATA[SQl Query analyzer]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=310</guid>
		<description><![CDATA[How to export delimited (tab, space, comman) file from query analyzer Visual Management Studio (2005) In theÂ  Query menu choose Query options 1.Â  From Results Choose Text 2. Choose out format from drop down list 3.Â  Click OK. 4. In the query menu fromÂ  Result to choose Result to file 5.Â  Run your query it [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/how-to-export-delimited-tab-space-comman-file-from-query-analyzer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get only date from data field SQl server t- sql</title>
		<link>http://www.isolutionteam.co.uk/how-to-get-only-date-from-data-field-sql-server-t-sql/</link>
		<comments>http://www.isolutionteam.co.uk/how-to-get-only-date-from-data-field-sql-server-t-sql/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 13:49:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[get date only from sql server]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server date time]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=308</guid>
		<description><![CDATA[Following line gives you the short dateÂ  from long date time field. ie. From a date time field of Sql server field if you need to extract only date use the the following method. Replace GetDate() with your date field name. Cast(Floor(Cast(Getdate() as float)) as datetime]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/how-to-get-only-date-from-data-field-sql-server-t-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing Different Database on Different SQL Servers</title>
		<link>http://www.isolutionteam.co.uk/accessing-different-database-on-different-sql-servers/</link>
		<comments>http://www.isolutionteam.co.uk/accessing-different-database-on-different-sql-servers/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 10:52:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[Accessing Different Database on Different SQL Servers]]></category>
		<category><![CDATA[Select data from two servers]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql sever 2005]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=80</guid>
		<description><![CDATA[Accessing Different Database on Different SQL Servers I was trying to Access two databases on two different servers. I was usring four part name to SQlServer &#8220;[sqlserver02].MyDatabase.dbo.aspnet_membership&#8221; but it was not letting me do that and was showing following error message. Msg 7202, Level 11, State 2, Line 1 Could not find server &#8216;sqlserver02&#8242; in [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/accessing-different-database-on-different-sql-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two methods to update data from one table to another table using sql and TSQl</title>
		<link>http://www.isolutionteam.co.uk/two-methods-to-update-data-from-one-table-to-another-table-using-sql-and-tsql/</link>
		<comments>http://www.isolutionteam.co.uk/two-methods-to-update-data-from-one-table-to-another-table-using-sql-and-tsql/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:18:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL (Structured Query Language)]]></category>
		<category><![CDATA[fields from one table to another tbale]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[tsql]]></category>
		<category><![CDATA[update data]]></category>

		<guid isPermaLink="false">http://www.isolutionteam.co.uk/?p=249</guid>
		<description><![CDATA[Two methods to updated data from one table to another table using sql and TSQL, T1=Table1 T2=Table2 F1=Field1 F2=Field2 F3=Filed3 F4=Field4 Method one, Update date using subquery from one table to another table update T2 set T2.F1=isnull(T1.F1,&#8221;), T2.F2= T1.F2, T2.F3= T1.F3 from T1 inner join T2 on T2.F2= T1.F4 where T2.F2&#60;&#62; T1.F2 and T2.F3&#60;&#62; T1.F3 [...]]]></description>
		<wfw:commentRss>http://www.isolutionteam.co.uk/two-methods-to-update-data-from-one-table-to-another-table-using-sql-and-tsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

