<?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>T-SQL Archives - SQL and IT Tutorials</title>
	<atom:link href="https://expert-only.com/en/t-sql/feed/" rel="self" type="application/rss+xml" />
	<link>https://expert-only.com/en/t-sql/</link>
	<description></description>
	<lastBuildDate>Fri, 15 Mar 2024 17:30:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://expert-only.com/wp-content/uploads/2020/08/cropped-favicon-32x32.jpg</url>
	<title>T-SQL Archives - SQL and IT Tutorials</title>
	<link>https://expert-only.com/en/t-sql/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Manage Line Breaks in SQL Server ?</title>
		<link>https://expert-only.com/en/t-sql/how-to-manage-line-breaks-in-sql-server/</link>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Wed, 18 Mar 2026 05:06:38 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=6989</guid>

					<description><![CDATA[<p>How to insert or remove SQL Server line breaks, also called carriage returns in strings, columns and variables? Transact-SQL scripts to manage line breaks in SQL Server strings stored in columns or variables. In other words how to remove <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/how-to-manage-line-breaks-in-sql-server/" title="How To Manage Line Breaks in SQL Server ?">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/how-to-manage-line-breaks-in-sql-server/">How To Manage Line Breaks in SQL Server ?</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to Find Duplicate Records in SQL Server: A Comprehensive Guide</title>
		<link>https://expert-only.com/en/t-sql/find-duplicate-records-in-sql-server/</link>
					<comments>https://expert-only.com/en/t-sql/find-duplicate-records-in-sql-server/#respond</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Fri, 15 Mar 2024 06:11:00 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=30739</guid>

					<description><![CDATA[<p>Find duplicate records on one or multiple columns in SQL Server is a crucial task for maintaining data integrity and accuracy in your databases. Duplicates can skew your analysis, leading to potentially costly business decisions. This guide provides a <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/find-duplicate-records-in-sql-server/" title="How to Find Duplicate Records in SQL Server: A Comprehensive Guide">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/find-duplicate-records-in-sql-server/">How to Find Duplicate Records in SQL Server: A Comprehensive Guide</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/find-duplicate-records-in-sql-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SQL Server UNPIVOT Example</title>
		<link>https://expert-only.com/en/t-sql/sql-server-unpivot/</link>
					<comments>https://expert-only.com/en/t-sql/sql-server-unpivot/#comments</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Wed, 13 Mar 2024 06:08:00 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=9107</guid>

					<description><![CDATA[<p>Using this T-SQL example, you can easily transform columns into rows with just one step thanks to the SQL Server UNPIVOT function. It is the exact opposite of the PIVOT query. In this example, only the six first months <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/sql-server-unpivot/" title="SQL Server UNPIVOT Example">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/sql-server-unpivot/">SQL Server UNPIVOT Example</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/sql-server-unpivot/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to Split a String after a Character with SQL Server ?</title>
		<link>https://expert-only.com/en/t-sql/split-a-string-after-a-character/</link>
					<comments>https://expert-only.com/en/t-sql/split-a-string-after-a-character/#respond</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Tue, 12 Mar 2024 06:35:37 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=6960</guid>

					<description><![CDATA[<p>How to split a simple string stored in a variable after a specific character using SQL Server functions? For example, use the substring function to split a string like file.txt to separate the file name from its extension after <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/split-a-string-after-a-character/" title="How to Split a String after a Character with SQL Server ?">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/split-a-string-after-a-character/">How to Split a String after a Character with SQL Server ?</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/split-a-string-after-a-character/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Display Month Name in SQL Server in Different Languages</title>
		<link>https://expert-only.com/en/t-sql/display-month-name-in-sql-server-in-different-languages/</link>
					<comments>https://expert-only.com/en/t-sql/display-month-name-in-sql-server-in-different-languages/#respond</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Mon, 11 Mar 2024 05:41:00 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=30604</guid>

					<description><![CDATA[<p>Languages are a significant part of human history, culture, and communication and different languages offer unique insights into diverse worldviews and traditions. The following are ten of the most widely spoken languages around the world. Each language is accompanied <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/display-month-name-in-sql-server-in-different-languages/" title="Display Month Name in SQL Server in Different Languages">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/display-month-name-in-sql-server-in-different-languages/">Display Month Name in SQL Server in Different Languages</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/display-month-name-in-sql-server-in-different-languages/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Get the Size of all Tables in SQL Server ?</title>
		<link>https://expert-only.com/en/t-sql/how-to-get-the-size-of-all-tables-in-sql-server/</link>
					<comments>https://expert-only.com/en/t-sql/how-to-get-the-size-of-all-tables-in-sql-server/#respond</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Thu, 07 Mar 2024 05:42:59 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=9062</guid>

					<description><![CDATA[<p>Transact-SQL query to display the list of all table names from a database with size and disk space used on the server. Listing SQL Server table size and disk space can be very convenient specially to analyse the disk <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/how-to-get-the-size-of-all-tables-in-sql-server/" title="How to Get the Size of all Tables in SQL Server ?">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/how-to-get-the-size-of-all-tables-in-sql-server/">How to Get the Size of all Tables in SQL Server ?</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/how-to-get-the-size-of-all-tables-in-sql-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Execute a Procedure with Parameters in SQL Server ?</title>
		<link>https://expert-only.com/en/t-sql/how-to-execute-a-procedure-with-parameters-in-sql-server/</link>
					<comments>https://expert-only.com/en/t-sql/how-to-execute-a-procedure-with-parameters-in-sql-server/#respond</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Tue, 05 Mar 2024 06:13:42 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=8870</guid>

					<description><![CDATA[<p>Tutorial with T-SQL code examples to execute a SQL Server stored procedure with one or multiple input parameters. Depending on the T-SQL code, execute a procedure with parameters in SQL Server by providing mandatory values or default ones will <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/how-to-execute-a-procedure-with-parameters-in-sql-server/" title="How to Execute a Procedure with Parameters in SQL Server ?">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/how-to-execute-a-procedure-with-parameters-in-sql-server/">How to Execute a Procedure with Parameters in SQL Server ?</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/how-to-execute-a-procedure-with-parameters-in-sql-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Split Text with Separator in Lines with SQL Server STRING_SPLIT function</title>
		<link>https://expert-only.com/en/t-sql/split-text-with-separator-into-lines-in-sql-server-string-split/</link>
					<comments>https://expert-only.com/en/t-sql/split-text-with-separator-into-lines-in-sql-server-string-split/#respond</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Fri, 01 Mar 2024 05:38:00 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=30391</guid>

					<description><![CDATA[<p>The functionality to split text into different lines based on a separator is available natively from SQL Server 2016 and later. In order to split text with separator into lines, I have been using T-SQL user-defined functions for years <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/split-text-with-separator-into-lines-in-sql-server-string-split/" title="Split Text with Separator in Lines with SQL Server STRING_SPLIT function">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/split-text-with-separator-into-lines-in-sql-server-string-split/">Split Text with Separator in Lines with SQL Server STRING_SPLIT function</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/split-text-with-separator-into-lines-in-sql-server-string-split/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Split Delimited String into One Column in SQL Server ?</title>
		<link>https://expert-only.com/en/t-sql/how-to-split-delimited-string-into-one-column-in-sql-server/</link>
					<comments>https://expert-only.com/en/t-sql/how-to-split-delimited-string-into-one-column-in-sql-server/#comments</comments>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Thu, 29 Feb 2024 06:02:00 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=7019</guid>

					<description><![CDATA[<p>How to split data from a unique string in line with a delimiter into one column using SQL Server ? Tutorial on how to split a delimited string into one unique column in SQL Server, the delimiter used is <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/how-to-split-delimited-string-into-one-column-in-sql-server/" title="How to Split Delimited String into One Column in SQL Server ?">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/how-to-split-delimited-string-into-one-column-in-sql-server/">How to Split Delimited String into One Column in SQL Server ?</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
					<wfw:commentRss>https://expert-only.com/en/t-sql/how-to-split-delimited-string-into-one-column-in-sql-server/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to Call a SQL Server Function using T-SQL ?</title>
		<link>https://expert-only.com/en/t-sql/how-to-call-sql-server-function/</link>
		
		<dc:creator><![CDATA[Expert-Only]]></dc:creator>
		<pubDate>Wed, 28 Feb 2024 04:54:00 +0000</pubDate>
				<category><![CDATA[T-SQL]]></category>
		<guid isPermaLink="false">https://expert-only.com/?p=6867</guid>

					<description><![CDATA[<p>How to call SQL Server functions from Transact-SQL scripts? Tutorial on how to call a SQL Server function using T-SQL scripts, with and without parameters. Indeed, the T-SQL syntax for calling a function is different from calling a stored <a class="mh-excerpt-more" href="https://expert-only.com/en/t-sql/how-to-call-sql-server-function/" title="How to Call a SQL Server Function using T-SQL ?">...</a></p>
<p>L’article <a href="https://expert-only.com/en/t-sql/how-to-call-sql-server-function/">How to Call a SQL Server Function using T-SQL ?</a> est apparu en premier sur <a href="https://expert-only.com/en/">SQL and IT Tutorials</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
