﻿<?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 Tablo Listesi &#8211; SQL Server Eğitimleri</title>
	<atom:link href="https://sqlserveregitimleri.com/etiket/sql-server-tablo-listesi/feed" rel="self" type="application/rss+xml" />
	<link>https://sqlserveregitimleri.com</link>
	<description>SQL Server ile ilgili her şey</description>
	<lastBuildDate>Tue, 11 Apr 2023 06:22:03 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>SQL Server&#8217;da Tablo Listesini Almak</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-tablo-listesini-almak</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Tue, 11 Apr 2023 06:22:03 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Tablo Listesi]]></category>
		<category><![CDATA[SQL Server Tablolar]]></category>
		<category><![CDATA[TSQL Tablolar]]></category>
		<guid isPermaLink="false">https://sqlserveregitimleri.com/?p=16106</guid>

					<description><![CDATA[Herkese merhaba. Bu yazıda SQL Server’da tablo listesini almak ile ilgili bilgi vereceğim SQL Server&#8217;da bazı durumlarda tablo listesini almak isteyebilirsiniz. Aşağıdaki kodu kullanarak sizler...]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba. Bu yazıda SQL Server’da tablo listesini almak ile ilgili bilgi vereceğim</p>
<p>SQL Server&#8217;da bazı durumlarda tablo listesini almak isteyebilirsiniz.</p>
<p>Aşağıdaki kodu kullanarak sizler de bu işlemi rahatlıkla yapabilirsiniz.</p>
<pre class="line-numbers"><code class="language-sql">SELECT
	*
FROM INFORMATION_SCHEMA.TABLES
ORDER BY TABLE_NAME;</code></pre>
<p>Yukarıdaki kodu çalıştırınca aşağıdakine benzer bir sonuç göreceksiniz.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-16108 size-full" src="https://sqlserveregitimleri.com/wp-content/uploads/2023/04/sql-serverda-tablo-listesini-almak-1.jpg" alt="SQL Server'da Tablo Listesini Almak" width="700" height="563" srcset="https://sqlserveregitimleri.com/wp-content/uploads/2023/04/sql-serverda-tablo-listesini-almak-1.jpg 700w, https://sqlserveregitimleri.com/wp-content/uploads/2023/04/sql-serverda-tablo-listesini-almak-1-373x300.jpg 373w, https://sqlserveregitimleri.com/wp-content/uploads/2023/04/sql-serverda-tablo-listesini-almak-1-315x253.jpg 315w, https://sqlserveregitimleri.com/wp-content/uploads/2023/04/sql-serverda-tablo-listesini-almak-1-168x135.jpg 168w" sizes="(max-width: 700px) 100vw, 700px" /></p>
<p>Görüldüğü üzere tablo listesini almış olduk.</p>
<p>Herkese çalışma hayatında ve yaşamında başarılar kolaylıklar.</p>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 182</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>SQL Server’da Veritabanı Tablo Listesini Satır Sayısı ile Birlikte Almak</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-veritabani-tablo-listesini-satir-sayisi-ile-birlikte-almak</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Thu, 16 Nov 2017 06:29:38 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server Satır Sayısı]]></category>
		<category><![CDATA[SQL Server Tablo Listesi]]></category>
		<category><![CDATA[SQL Server Tablo Sayısı]]></category>
		<guid isPermaLink="false">http://sqlserveregitimleri.com/?p=2666</guid>

					<description><![CDATA[Herkese merhaba, Bu yazıda SQL Server’da veritabanı tablo listesini satır sayısı ile birlikte almak ile ilgili bilgi vermeye çalışacağım. SQL Server&#8217;da bazı durumlarda veritabanı tablo...]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba,</p>
<p>Bu yazıda SQL Server’da veritabanı tablo listesini satır sayısı ile birlikte almak ile ilgili bilgi vermeye çalışacağım.</p>
<p>SQL Server&#8217;da bazı durumlarda veritabanı tablo listesini satır sayısı ile birlikte almak isteyebilirsiniz.</p>
<p>Aşağıdaki kodu kullanarak siz de bu işlemi rahatlıkla yapabilirsiniz.</p>
<pre class="line-numbers"><code class="language-sql">SELECT
	OBJECT_NAME(object_id) [Tablo Adı]
   ,st.row_count AS [Satır Sayısı]
FROM sys.dm_db_partition_stats st
WHERE index_id &lt; 2
AND OBJECT_NAME(object_id) NOT LIKE '%sys%'
ORDER BY st.row_count DESC</code></pre>
<p>Herkese çalışma hayatında ve yaşamında başarılar kolaylıklar.</p>
<div class='epvc-post-count'><span class='epvc-eye'></span>  <span class="epvc-count"> 660</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
