<?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>Sql Server Archives - IODocs</title>
	<atom:link href="https://www.iodocs.com/tag/sql-server/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.iodocs.com/tag/sql-server/</link>
	<description>IODocs: Comprehensive How-To Guides, Software Tutorials, and More IODocs.com</description>
	<lastBuildDate>Sat, 13 Dec 2025 13:48:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.iodocs.com/wp-content/uploads/2019/01/cropped-logoIODOCSretina-32x32.avif</url>
	<title>Sql Server Archives - IODocs</title>
	<link>https://www.iodocs.com/tag/sql-server/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Downgrade version the database of SQL Server</title>
		<link>https://www.iodocs.com/downgrade-version-the-database-of-sql-server/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Mon, 26 Jul 2021 16:58:00 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<guid isPermaLink="false">https://www.iodocs.com/?p=2981</guid>

					<description><![CDATA[<p>Downgrade version the database of SQL Server</p>
<p>The post <a href="https://www.iodocs.com/downgrade-version-the-database-of-sql-server/">Downgrade version the database of SQL Server</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>C# How to insert a data table into SQL Server database table?</title>
		<link>https://www.iodocs.com/insert-data-table-sql-server-database-table/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Thu, 18 Jan 2018 23:05:58 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[data table type sqlserver]]></category>
		<category><![CDATA[datatable]]></category>
		<category><![CDATA[insert datatable]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[SQL Server 2012]]></category>
		<category><![CDATA[SQL Server 2014]]></category>
		<category><![CDATA[SQL Server 2016]]></category>
		<category><![CDATA[SQL Server 2017]]></category>
		<category><![CDATA[Table-Valued]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=673</guid>

					<description><![CDATA[<p>C# How to insert a data table into SQL Server database table?</p>
<p>In SQL 2008/2012/2014/2016/2017, user-defined table type is a user-defined type that describes the definition of a table structure.</p>
<p>You can use a user-defined table type to declare table-valued parameters for SP or functions or to declare table variables that you require to utilization in a batch or the body of a Stored Procedure or function.</p>
<p>The post <a href="https://www.iodocs.com/insert-data-table-sql-server-database-table/">C# How to insert a data table into SQL Server database table?</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Insert and Update in SQL Using User-Defined Table Type in C#</title>
		<link>https://www.iodocs.com/insert-update-sql-using-user-defined-table-type-csharp/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Sun, 30 Apr 2017 05:40:29 +0000</pubDate>
				<category><![CDATA[NET]]></category>
		<category><![CDATA[Azure SQL Database]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[MERGE SQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Sql Server]]></category>
		<category><![CDATA[User-Defined Table Type]]></category>
		<guid isPermaLink="false">https://iodocs.com/?p=845</guid>

					<description><![CDATA[<p>Insert and Update in SQL Using User-Defined Table Type in C#</p>
<p>The post <a href="https://www.iodocs.com/insert-update-sql-using-user-defined-table-type-csharp/">Insert and Update in SQL Using User-Defined Table Type in C#</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Convert Rows to columns using &#8216;Pivot&#8217; in SQL Server</title>
		<link>https://www.iodocs.com/convert-rows-columns-using-pivot-sql-server/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Fri, 14 Oct 2016 01:50:18 +0000</pubDate>
				<category><![CDATA[Sql Server]]></category>
		<guid isPermaLink="false">http://iodocs.com/?p=272</guid>

					<description><![CDATA[<p>If you are using SQL Server 2014+, then you can use the PIVOT function to transform the data from rows into columns. It sounds like you will need to use dynamic sql if the weeks are unknown but it is easier to see the correct code using a hard-coded version initially. If your values are known, then [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/convert-rows-columns-using-pivot-sql-server/">Convert Rows to columns using &#8216;Pivot&#8217; in SQL Server</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
