<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Display Current Backup/Restore Progress Using DMVs	</title>
	<atom:link href="https://www.cloudcorner.gr/microsoft/display-current-backuprestore-progress-using-dmvs/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.cloudcorner.gr/microsoft/display-current-backuprestore-progress-using-dmvs/</link>
	<description>Remarks from a Cloud Architect encounters</description>
	<lastBuildDate>Wed, 19 Dec 2018 12:27:42 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		By: Pantelis Apostolidis		</title>
		<link>https://www.cloudcorner.gr/microsoft/display-current-backuprestore-progress-using-dmvs/#comment-11</link>

		<dc:creator><![CDATA[Pantelis Apostolidis]]></dc:creator>
		<pubDate>Tue, 24 Feb 2015 13:09:31 +0000</pubDate>
		<guid isPermaLink="false">https://proximagr.wordpress.com/2015/02/24/display-current-backuprestore-progress-using-dmvs/#comment-11</guid>

					<description><![CDATA[[code language=&quot;sql&quot;]USE master

SELECT
session_id as SPID,
CONVERT(VARCHAR(50),start_time,100) AS start_time,
percent_complete,
CONVERT(VARCHAR(50),dateadd(second,estimated_completion_time/1000, getdate()),100) as estimated_completion_time,
command, a.text AS Query
FROM sys.dm_exec_requests r
CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) a
WHERE r.command LIKE &#039;BACKUP%&#039; OR r.command LIKE &#039;RESTORE%&#039;[/code]]]></description>
			<content:encoded><![CDATA[<p>[code language=&#8221;sql&#8221;]USE master</p>
<p>SELECT<br />
session_id as SPID,<br />
CONVERT(VARCHAR(50),start_time,100) AS start_time,<br />
percent_complete,<br />
CONVERT(VARCHAR(50),dateadd(second,estimated_completion_time/1000, getdate()),100) as estimated_completion_time,<br />
command, a.text AS Query<br />
FROM sys.dm_exec_requests r<br />
CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) a<br />
WHERE r.command LIKE &#8216;BACKUP%&#8217; OR r.command LIKE &#8216;RESTORE%'[/code]</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
