<?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>Getting Schema List - MSSQL Query</title>
	<atom:link href="https://mssqlquery.com/tag/getting-schema-list/feed" rel="self" type="application/rss+xml" />
	<link>https://mssqlquery.com</link>
	<description>MSSQL and TSQL Programming and TSQL Examples</description>
	<lastBuildDate>Mon, 19 Sep 2022 20:23:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.3.1</generator>

<image>
	<url>https://mssqlquery.com/wp-content/uploads/2023/06/cropped-mssql-query-icon-32x32.png</url>
	<title>Getting Schema List - MSSQL Query</title>
	<link>https://mssqlquery.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Getting Schema List in SQL Server</title>
		<link>https://mssqlquery.com/getting-schema-list-in-sql-server</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Mon, 19 Sep 2022 20:23:44 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Getting Schema List]]></category>
		<category><![CDATA[Getting Schema List SQL Server]]></category>
		<category><![CDATA[TSQL Getting Schema List]]></category>
		<guid isPermaLink="false">https://mssqlquery.com/?p=1051</guid>

					<description><![CDATA[<p>Hello everyone, In this article, I will try to give information about getting the Schema list in SQL Server. In SQL Server you may want to get the Schema list in some cases. You can easily do this using the code below. SELECT s.name AS schema_name, s.schema_id, u.name AS schema_owner&#46;&#46;&#46;</p>
<p>The post <a href="https://mssqlquery.com/getting-schema-list-in-sql-server">Getting Schema List in SQL Server</a> first appeared on <a href="https://mssqlquery.com">MSSQL Query</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Hello everyone,</p>
<p>In this article, I will try to give information about getting the Schema list in SQL Server.</p>
<p>In SQL Server you may want to get the Schema list in some cases.</p>
<p>You can easily do this using the code below.</p>
<pre class="line-numbers"><code class="language-sql">SELECT s.name AS schema_name,
       s.schema_id,
       u.name AS schema_owner
FROM sys.schemas s
    INNER JOIN sys.sysusers u
        ON u.uid = s.principal_id
ORDER BY s.name;
</code></pre>
<p>When you run the above code, you will see a result similar to the one below.</p>
<p><img decoding="async" fetchpriority="high" class="alignnone wp-image-1054 size-full" src="https://mssqlquery.com/wp-content/uploads/2022/09/getting-schema-list-in-sql-server-1.jpg" alt="Getting Schema List in SQL Server" width="700" height="546" srcset="https://mssqlquery.com/wp-content/uploads/2022/09/getting-schema-list-in-sql-server-1.jpg 700w, https://mssqlquery.com/wp-content/uploads/2022/09/getting-schema-list-in-sql-server-1-300x234.jpg 300w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<p>As you can see, we have received the Schema list.</p>
<p>Good luck to everyone in business and life.</p>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 91</span><span class='epvc-label'> Views</span></div><p>The post <a href="https://mssqlquery.com/getting-schema-list-in-sql-server">Getting Schema List in SQL Server</a> first appeared on <a href="https://mssqlquery.com">MSSQL Query</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Getting Schema List of All Databases in SQL Server</title>
		<link>https://mssqlquery.com/getting-schema-list-of-all-databases-in-sql-server</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Thu, 21 Apr 2022 21:22:32 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Getting Schema List]]></category>
		<category><![CDATA[Getting Schema List of All Databases]]></category>
		<category><![CDATA[Getting Schema List SQL]]></category>
		<guid isPermaLink="false">https://mssqlquery.com/?p=906</guid>

					<description><![CDATA[<p>Hello to everyone, In this article, I will try to give information about getting the Schema list of all databases in SQL Server. In SQL Server in some cases you may want to get the Schema list of all databases. You can easily do this using the code below. DECLARE&#46;&#46;&#46;</p>
<p>The post <a href="https://mssqlquery.com/getting-schema-list-of-all-databases-in-sql-server">Getting Schema List of All Databases in SQL Server</a> first appeared on <a href="https://mssqlquery.com">MSSQL Query</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Hello to everyone,</p>
<p>In this article, I will try to give information about getting the Schema list of all databases in SQL Server.</p>
<p>In SQL Server in some cases you may want to get the Schema list of all databases.</p>
<p>You can easily do this using the code below.</p>
<pre class="line-numbers"><code class="language-sql">DECLARE @SQL NVARCHAR(MAX);

SELECT @SQL
    = STUFF(
(
    SELECT ' UNION ALL
SELECT ' + +QUOTENAME(name, '''')
           + ' as DbName, cast(Name as varchar(128)) COLLATE DATABASE_DEFAULT 
AS Schema_Name FROM ' + QUOTENAME(name) + '.sys.schemas'
    FROM sys.databases
    ORDER BY [name]
    FOR XML PATH(''), TYPE
).value('.', 'nvarchar(max)'),
1   ,
12  ,
''
           );

SET @SQL = @SQL + N' ORDER BY DbName, Schema_Name';

EXECUTE (@SQL);</code></pre>
<p>When you run the above code, you will see a result similar to the one below.</p>
<p><img decoding="async" class="alignnone wp-image-908 size-full" src="https://mssqlquery.com/wp-content/uploads/2022/04/getting-schema-list-of-all-databases-in-sql-server-1.jpg" alt="Getting Schema List of All Databases in SQL Server" width="700" height="575" srcset="https://mssqlquery.com/wp-content/uploads/2022/04/getting-schema-list-of-all-databases-in-sql-server-1.jpg 700w, https://mssqlquery.com/wp-content/uploads/2022/04/getting-schema-list-of-all-databases-in-sql-server-1-300x246.jpg 300w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<p>As you can see, we have the Schema list of all databases.</p>
<p>Good luck to everyone in business and life.</p>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 186</span><span class='epvc-label'> Views</span></div><p>The post <a href="https://mssqlquery.com/getting-schema-list-of-all-databases-in-sql-server">Getting Schema List of All Databases in SQL Server</a> first appeared on <a href="https://mssqlquery.com">MSSQL Query</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
