<?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; 2005 Improvements in TempDB</title>
	<atom:link href="http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/</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: SQL SERVER – Database Worst Practices – New Town and New Job and New Disasters Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-147576</link>
		<dc:creator><![CDATA[SQL SERVER – Database Worst Practices – New Town and New Job and New Disasters Journey to SQLAuthority]]></dc:creator>
		<pubDate>Tue, 12 Jul 2011 01:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-147576</guid>
		<description><![CDATA[[...] Improvements in TempDB [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Improvements in TempDB [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sathish</title>
		<link>http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-44063</link>
		<dc:creator><![CDATA[sathish]]></dc:creator>
		<pubDate>Wed, 05 Nov 2008 14:14:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-44063</guid>
		<description><![CDATA[I have to access temp table(created in one stored procedure)in another Sp, so for this can i use tempdb..#temp or global temp tables i.e. ##Temp. which one is efficient, because i guess, access using temdb..#Temp is as good as creating one connection. Please revert back to me.]]></description>
		<content:encoded><![CDATA[<p>I have to access temp table(created in one stored procedure)in another Sp, so for this can i use tempdb..#temp or global temp tables i.e. ##Temp. which one is efficient, because i guess, access using temdb..#Temp is as good as creating one connection. Please revert back to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amit</title>
		<link>http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-39307</link>
		<dc:creator><![CDATA[amit]]></dc:creator>
		<pubDate>Wed, 18 Jun 2008 07:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-39307</guid>
		<description><![CDATA[hi,
i encounter one problem. well i have created a databse sfimport and its all .ldf and .mdf files are created on f drive and i have made the mode &quot;simple&quot; .There are approximately 10crores records in this db.
and now i am trying to update these records.
but the problem is its increasing the ldf file of tempdb database which is syatem database becuse of which my space on c drive is geeting very less and the query for update are geeting stop by giving the below error
&quot;sg 1105, Level 17, State 2, Line 1
Could not allocate space for object &#039;dbo.SORT temporary run storage:  152711031947264&#039; in database &#039;tempdb&#039; because the &#039;PRIMARY&#039; filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.
Msg 9002, Level 17, State 4, Line 1
The transaction log for database &#039;tempdb&#039; is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
&quot;
but i dont know why , i am not doing anything with tempdb all my things are done on sfimport database which is on f drive . pls tell me the solution of this problem i am not able to understand this 
pls reply me as soon as possible]]></description>
		<content:encoded><![CDATA[<p>hi,<br />
i encounter one problem. well i have created a databse sfimport and its all .ldf and .mdf files are created on f drive and i have made the mode &#8220;simple&#8221; .There are approximately 10crores records in this db.<br />
and now i am trying to update these records.<br />
but the problem is its increasing the ldf file of tempdb database which is syatem database becuse of which my space on c drive is geeting very less and the query for update are geeting stop by giving the below error<br />
&#8220;sg 1105, Level 17, State 2, Line 1<br />
Could not allocate space for object &#8216;dbo.SORT temporary run storage:  152711031947264&#8242; in database &#8216;tempdb&#8217; because the &#8216;PRIMARY&#8217; filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.<br />
Msg 9002, Level 17, State 4, Line 1<br />
The transaction log for database &#8216;tempdb&#8217; is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases<br />
&#8221;<br />
but i dont know why , i am not doing anything with tempdb all my things are done on sfimport database which is on f drive . pls tell me the solution of this problem i am not able to understand this<br />
pls reply me as soon as possible</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger</title>
		<link>http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-37189</link>
		<dc:creator><![CDATA[Roger]]></dc:creator>
		<pubDate>Wed, 07 May 2008 12:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/28/sql-server-2005-improvements-in-tempdb/#comment-37189</guid>
		<description><![CDATA[Hi, I am wanting to execute a remote proc that is stored under a userid on another server ,from the SQL SERVER 2005 on my local. What is the sql script to do this.]]></description>
		<content:encoded><![CDATA[<p>Hi, I am wanting to execute a remote proc that is stored under a userid on another server ,from the SQL SERVER 2005 on my local. What is the sql script to do this.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

