﻿<?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>TSQL Restore İşlemi &#8211; SQL Server Eğitimleri</title>
	<atom:link href="https://sqlserveregitimleri.com/etiket/tsql-restore-islemi/feed" rel="self" type="application/rss+xml" />
	<link>https://sqlserveregitimleri.com</link>
	<description>SQL Server ile ilgili her şey</description>
	<lastBuildDate>Thu, 16 Feb 2023 05:31:19 +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 Yedekleme veya Geri Yükleme İlerleyişini Görmek</title>
		<link>https://sqlserveregitimleri.com/sql-serverda-yedekleme-veya-geri-yukleme-ilerleyisini-gormek</link>
		
		<dc:creator><![CDATA[Yavuz Selim Kart]]></dc:creator>
		<pubDate>Thu, 16 Feb 2023 05:31:19 +0000</pubDate>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server'da Geri Yükleme]]></category>
		<category><![CDATA[SQL Server'da Yedekleme]]></category>
		<category><![CDATA[TSQL Restore İşlemi]]></category>
		<guid isPermaLink="false">https://sqlserveregitimleri.com/?p=15163</guid>

					<description><![CDATA[Herkese merhaba, Bu yazıda SQL Server’da yedekleme veya geri yükleme ilerleyişini görmek ile ilgili bilgi vermeye çalışacağım. SQL Server&#8217;da bazı durumlarda yedekleme veya geri yükleme...]]></description>
										<content:encoded><![CDATA[<p>Herkese merhaba,</p>
<p>Bu yazıda SQL Server’da yedekleme veya geri yükleme ilerleyişini görmek ile ilgili bilgi vermeye çalışacağım.</p>
<p>SQL Server&#8217;da bazı durumlarda yedekleme veya geri yükleme ilerleyişini görmek 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 session_id AS SPID,
       command AS [Command],
       a.text AS Query,
       start_time AS [Start Time],
       percent_complete AS [Percent Complete],
       dateadd(second, estimated_completion_time / 1000, getdate()) AS [Estimated Completion Time]
FROM sys.dm_exec_requests r
    CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) a
WHERE r.command like 'BACKUP%'
      OR r.command like 'RESTORE%'</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"> 160</span><span class='epvc-label'> Kez Okundu</span></div>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
