﻿<?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 mdf ve ldf &#8211; SQL Server Eğitimleri</title>
	<atom:link href="https://sqlserveregitimleri.com/etiket/sql-server-mdf-ve-ldf/feed" rel="self" type="application/rss+xml" />
	<link>https://sqlserveregitimleri.com</link>
	<description>SQL Server ile ilgili her şey</description>
	<lastBuildDate>Sun, 26 Dec 2021 19:41:12 +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’da MDF, LDF’lerin Dosya Boyut Bilgilerini Öğrenmek</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-mdf-ldflerin-dosya-boyut-bilgilerini-ogrenmek</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Sat, 12 Sep 2020 22:23:17 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[MDF LDF’lerin Dosya Boyut Bilgilerini Öğrenmek]]></category>
		<category><![CDATA[sql server mdf ve ldf]]></category>
		<category><![CDATA[SQL Server’da MDF LDF’lerin Dosya Boyut Bilgilerini Öğrenmek]]></category>
		<guid isPermaLink="false">https://sqlserveregitimleri.com/?p=10079</guid>

					<description><![CDATA[Herkese merhaba, Bu yazıda SQL Server&#8217;da MDF, LDF’lerin dosya boyut bilgilerini öğrenmek hakkında bilgi vereceğim. Aşağıdaki kod yardımıyla SQL Server&#8217;da bulunan tüm veritabanlarının dosya boyut...]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba,</p>
<p>Bu yazıda SQL Server&#8217;da MDF, LDF’lerin dosya boyut bilgilerini öğrenmek hakkında bilgi vereceğim.</p>
<p>Aşağıdaki kod yardımıyla SQL Server&#8217;da bulunan tüm veritabanlarının dosya boyut bilgilerini öğrenebilirsiniz.</p>
<pre class="line-numbers"><code class="language-sql">SELECT DB_NAME(mf.database_id) AS VeritabaniAdi,
       mf.physical_name AS FizikselYolu,
       size_on_disk_bytes / 1024 / 1024 AS Boyut
FROM sys.dm_io_virtual_file_stats(NULL, NULL) AS divfs
    JOIN sys.master_files AS mf
        ON mf.database_id = divfs.database_id
           AND mf.file_id = divfs.file_id
ORDER BY VeritabaniAdi;</code></pre>
<p>Kodu çalıştırdığınızda aşağıdaki gibi bir sonuç alacaksınız.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-10083 size-contentberg-main" src="https://sqlserveregitimleri.com/wp-content/uploads/2020/09/sql-serverda-mdf-ldflerin-dosya-boyut-bilgilerini-ogrenmek-1-700x450.jpg" alt="SQL Server’da MDF, LDF’lerin Dosya Boyut Bilgilerini Öğrenmek" width="700" height="450" /></p>
<p>Görüldüğü üzere MDF, LDF’lerin dosya boyut bilgilerini öğrenmiş 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"> 562</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
