<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2008 &#8211; SQL Server Start Time</title>
	<atom:link href="http://blog.sqlauthority.com/2008/06/17/sql-server-2008-sql-server-start-time/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/06/17/sql-server-2008-sql-server-start-time/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Thu, 09 Feb 2012 10:31:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Esteban Garcia</title>
		<link>http://blog.sqlauthority.com/2008/06/17/sql-server-2008-sql-server-start-time/#comment-41396</link>
		<dc:creator><![CDATA[Esteban Garcia]]></dc:creator>
		<pubDate>Wed, 06 Aug 2008 14:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=650#comment-41396</guid>
		<description><![CDATA[You can also get the start date by looking at master.sysprocesses and getting the first connection initiated by sql server:

SELECT login_time FROM sysprocesses WHERE spid = 1]]></description>
		<content:encoded><![CDATA[<p>You can also get the start date by looking at master.sysprocesses and getting the first connection initiated by sql server:</p>
<p>SELECT login_time FROM sysprocesses WHERE spid = 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Worth</title>
		<link>http://blog.sqlauthority.com/2008/06/17/sql-server-2008-sql-server-start-time/#comment-39560</link>
		<dc:creator><![CDATA[Simon Worth]]></dc:creator>
		<pubDate>Fri, 27 Jun 2008 17:59:07 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=650#comment-39560</guid>
		<description><![CDATA[In previous versions of SQL Server (I think as low as 7) you could use the following query

select crdate from master..sysdatabases where name=&#039;tempdb&#039;

This works because tempdb is recreated when the server starts.  It&#039;s create date should be very close to the time the server started.

If I run the query against the DMV to get the start time of the server on 2008 as well as the query for create time on tempdb, my results are only off by 2 seconds.]]></description>
		<content:encoded><![CDATA[<p>In previous versions of SQL Server (I think as low as 7) you could use the following query</p>
<p>select crdate from master..sysdatabases where name=&#8217;tempdb&#8217;</p>
<p>This works because tempdb is recreated when the server starts.  It&#8217;s create date should be very close to the time the server started.</p>
<p>If I run the query against the DMV to get the start time of the server on 2008 as well as the query for create time on tempdb, my results are only off by 2 seconds.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

