﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Discuss Content Posted by Steve Jones / Article Discussions / Article Discussions by Author </title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Thu, 24 May 2012 13:05:43 GMT</lastBuildDate><ttl>20</ttl><item><title>Clustered Instances</title><link>http://www.sqlservercentral.com/Forums/Topic1222850-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/77346/"&gt;Clustered Instances&lt;/A&gt;[/B]</description><pubDate>Thu, 15 Dec 2011 22:39:06 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Checking database access</title><link>http://www.sqlservercentral.com/Forums/Topic1233694-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Security/87385/"&gt;Checking database access&lt;/A&gt;[/B]</description><pubDate>Tue, 10 Jan 2012 20:49:52 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL Server Agent Proxies</title><link>http://www.sqlservercentral.com/Forums/Topic1300027-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/SQL+Agent/87715/"&gt;SQL Server Agent Proxies&lt;/A&gt;[/B]</description><pubDate>Mon, 14 May 2012 22:10:15 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>You have 1,000,000 records in your customers table....</title><link>http://www.sqlservercentral.com/Forums/Topic690138-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/60126/"&gt;You have 1,000,000 records in your customers table....&lt;/A&gt;[/B]</description><pubDate>Fri, 03 Apr 2009 12:23:56 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Which SQL Server 2000 upgrade path is invalid?</title><link>http://www.sqlservercentral.com/Forums/Topic685419-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/60129/"&gt;Which SQL Server 2000 upgrade path is invalid?&lt;/A&gt;[/B]</description><pubDate>Fri, 27 Mar 2009 15:21:32 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>You need to create a DTSRUN command to...</title><link>http://www.sqlservercentral.com/Forums/Topic401696-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/DTS/60131/"&gt;You need to create a DTSRUN command to...&lt;/A&gt;[/B]</description><pubDate>Sun, 23 Sep 2007 12:57:43 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Your Windows 2000 IIS application is installed on...</title><link>http://www.sqlservercentral.com/Forums/Topic459734-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/SQL+Server+Development/60135/"&gt;Your Windows 2000 IIS application is installed on...&lt;/A&gt;[/B]</description><pubDate>Mon, 25 Feb 2008 08:51:45 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Setup SQL Server on Amazon RDS</title><link>http://www.sqlservercentral.com/Forums/Topic1296874-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/articles/SQL+Server+2008+R2/90227/"&gt;Setup SQL Server on Amazon RDS&lt;/A&gt;[/B]</description><pubDate>Tue, 08 May 2012 22:29:05 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL server 2008 Build List</title><link>http://www.sqlservercentral.com/Forums/Topic576343-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/articles/SQL+Server+2008/63491/"&gt;SQL server 2008 Build List&lt;/A&gt;[/B]</description><pubDate>Thu, 25 Sep 2008 13:10:12 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Contained Database users</title><link>http://www.sqlservercentral.com/Forums/Topic1282134-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/89249/"&gt;Contained Database users&lt;/A&gt;[/B]</description><pubDate>Wed, 11 Apr 2012 23:43:04 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Without cursor i need the solution to update 12 lakhs records</title><link>http://www.sqlservercentral.com/Forums/Topic1282479-32-1.aspx</link><description>Hi,Please suggest me how do i update the below workorderidtemp table colums claimid,cliamseq without using below cursorI had a workorderid's which is having child id's as parentid's , i don't know how many parentid's does one workorderid have i need to update claimid as 1 those parentid's which comes under that workorderid.At the same i need to update claimseq like if one workorderid have 10 parentid's the latest parentid has a claimseq 10 and workorderid has a claimseq 1.i have sample table with data likeCREATE TABLE [dbo].[workorderidtemp](    [WorkOrderID] [int] NOT NULL,    [ParentID] [int] NULL,    [ClaimID] [int] NULL,    [ClaimSeq] [int] NULL,    [calldate] [datetime] NULL) ON [PRIMARY]INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1','0','0','0',convert(datetime,'Jan  1 2001 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('11','1','0','0',convert(datetime,'Jan  1 2002 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('12','1','0','0',convert(datetime,'Jan  1 2003 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('13','1','0','0',convert(datetime,'Jan  1 2003 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('111','11','0','0',convert(datetime,'Jan  2 2004 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('112','11','0','0',convert(datetime,'Jan  5 2004 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('113','12','0','0',convert(datetime,'Jan  3 2004 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('114','13','0','0',convert(datetime,'Jan  3 2003 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('115','12','0','0',convert(datetime,'Jan  2 2004 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1111','111','0','0',convert(datetime,'Jan  2 2005 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1112','111','0','0',convert(datetime,'Jan  2 2006 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1113','113','0','0',convert(datetime,'Jan  2 2007 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1114','112','0','0',convert(datetime,'Jan  3 2005 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1115','113','0','0',convert(datetime,'Jan  8 2007 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1116','114','0','0',convert(datetime,'Jan 12 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('1117','115','0','0',convert(datetime,'Feb  2 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('21','2','0','0',convert(datetime,'Feb 23 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('22','2','0','0',convert(datetime,'Feb 25 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('23','2','0','0',convert(datetime,'Mar  2 2009 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('221','21','0','0',convert(datetime,'Dec  2 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('222','21','0','0',convert(datetime,'Feb  3 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('223','22','0','0',convert(datetime,'Feb  2 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('224','23','0','0',convert(datetime,'Feb  3 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('225','22','0','0',convert(datetime,'Feb  4 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2221','222','0','0',convert(datetime,'Feb  5 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2222','222','0','0',convert(datetime,'Feb  6 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2223','223','0','0',convert(datetime,'Feb  7 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2224','222','0','0',convert(datetime,'Feb  8 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2225','223','0','0',convert(datetime,'Feb  9 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2226','224','0','0',convert(datetime,'Feb 10 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2227','225','0','0',convert(datetime,'Feb 11 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('3','0','0','0',convert(datetime,'Mar  2 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('4','4','0','0',convert(datetime,'Apr  2 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('5','5','0','0',convert(datetime,'May  2 2008 12:00AM'))INSERT workorderIdTemp(WorkOrderID,ParentID,ClaimID,ClaimSeq,calldate)       VALUES('2','0','0','0',convert(datetime,'Feb  2 2008 12:00AM'))where i need to update the claimid and claimseqFor one workorderid and those parentid will have claimid has a '1' and next workorderid and those parentid will have claimid has a '2'At the same i need to update claimseq where one workorderid strats with claimseq '1' and its latest parentis will have latest claimseqI have a cursor to updated these columnsupdate WorkOrderidtemp set ClaimId = Workorderid, ClaimSeq = 1 where parentid is nulldeclare @count int          declare @workorderid as intdeclare @claimid as int-- deallocate cur_WODECLARE cur_WO CURSOR FOR select workorderid, claimid from WorkOrderidTemp where claimId is not null and parentid is nullOpen cur_WOFETCH NEXT from cur_WO into @workorderid, @claimidWHILE @@FETCH_STATUS = 0Beginselect @count = 1while @count &amp;gt; 0        begin            update WorkOrderidTemp  set claimId = @claimid where parentid            in (select workorderid from WorkOrderidTemp  where claimid = @claimid)            select @count = count(*) from WorkOrderidTemp  where                    parentid in (                        select workorderid from WorkOrderidTemp  where claimid = @claimid                                ) and claimId is null        end    FETCH NEXT from cur_WO into @workorderid, @claimidEndBut i need to update 12 lakhs records in my database ,please is there any othere solution to update these columnsIf i use these  cursor it is taking too much of time</description><pubDate>Thu, 12 Apr 2012 09:12:30 GMT</pubDate><dc:creator>msmartsairam</dc:creator></item><item><title>AlwaysOn Secondaries</title><link>http://www.sqlservercentral.com/Forums/Topic1274823-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/High+Availability/89250/"&gt;AlwaysOn Secondaries&lt;/A&gt;[/B]</description><pubDate>Wed, 28 Mar 2012 20:57:23 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>DateTime Functions</title><link>http://www.sqlservercentral.com/Forums/Topic1278522-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/T-SQL/89253/"&gt;DateTime Functions&lt;/A&gt;[/B]</description><pubDate>Wed, 04 Apr 2012 20:17:08 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>NOT BETWEEN</title><link>http://www.sqlservercentral.com/Forums/Topic1275491-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/T-SQL/88647/"&gt;NOT BETWEEN&lt;/A&gt;[/B]</description><pubDate>Thu, 29 Mar 2012 21:27:48 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>MDS</title><link>http://www.sqlservercentral.com/Forums/Topic1277771-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/MDS/89251/"&gt;MDS&lt;/A&gt;[/B]</description><pubDate>Tue, 03 Apr 2012 21:35:32 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>The Beginning of April</title><link>http://www.sqlservercentral.com/Forums/Topic1276207-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/humor/89252/"&gt;The Beginning of April&lt;/A&gt;[/B]</description><pubDate>Sat, 31 Mar 2012 13:03:55 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>How to add Identity an existing column</title><link>http://www.sqlservercentral.com/Forums/Topic1277162-32-1.aspx</link><description>Hi All, Can any one help to me ,How to add Identity an existing column, It is empty table.CREATE table Temp(ID int, Name varchar(10))SELECT 1 as ADTID, ID,Name  INTO temp1 from tempALTER TABLE temp1 ALTER COLUMN ADTID INT NOT NULL ALTER TABLE temp1 ADD CONSTRAINT PKKK PRIMARY KEY (ADTID)I need to add identity on ADTID column, How i can Add ThanksRamana.P</description><pubDate>Tue, 03 Apr 2012 03:51:29 GMT</pubDate><dc:creator>Ramana P</dc:creator></item><item><title>SOME</title><link>http://www.sqlservercentral.com/Forums/Topic1269998-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/T-SQL/88654/"&gt;SOME&lt;/A&gt;[/B]</description><pubDate>Tue, 20 Mar 2012 22:31:04 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL Server Agent Roles</title><link>http://www.sqlservercentral.com/Forums/Topic1270607-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Security/87713/"&gt;SQL Server Agent Roles&lt;/A&gt;[/B]</description><pubDate>Wed, 21 Mar 2012 21:16:13 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Contained Databases</title><link>http://www.sqlservercentral.com/Forums/Topic1274035-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/SQL+Server+2012/89248/"&gt;Contained Databases&lt;/A&gt;[/B]</description><pubDate>Tue, 27 Mar 2012 21:51:18 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL Server 2012 Build List</title><link>http://www.sqlservercentral.com/Forums/Topic1276719-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/articles/SQL+Server+2012/87518/"&gt;SQL Server 2012 Build List&lt;/A&gt;[/B]</description><pubDate>Mon, 02 Apr 2012 09:48:32 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Enabling TDE</title><link>http://www.sqlservercentral.com/Forums/Topic1116730-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Security/73593/"&gt;Enabling TDE&lt;/A&gt;[/B]</description><pubDate>Sun, 29 May 2011 01:58:07 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Resource Governor Pools</title><link>http://www.sqlservercentral.com/Forums/Topic1107475-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Resource+Governor/73222/"&gt;Resource Governor Pools&lt;/A&gt;[/B]</description><pubDate>Wed, 11 May 2011 23:23:52 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL Server Agent Roles</title><link>http://www.sqlservercentral.com/Forums/Topic1258600-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/SQL+Agent/87712/"&gt;SQL Server Agent Roles&lt;/A&gt;[/B]</description><pubDate>Mon, 27 Feb 2012 20:33:31 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>BETWEEN</title><link>http://www.sqlservercentral.com/Forums/Topic1261195-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/T-SQL/88648/"&gt;BETWEEN&lt;/A&gt;[/B]</description><pubDate>Sat, 03 Mar 2012 15:07:40 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>CREATE ROLE</title><link>http://www.sqlservercentral.com/Forums/Topic1265672-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Security/88838/"&gt;CREATE ROLE&lt;/A&gt;[/B]</description><pubDate>Mon, 12 Mar 2012 21:11:58 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Query Plans</title><link>http://www.sqlservercentral.com/Forums/Topic1119225-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/73588/"&gt;Query Plans&lt;/A&gt;[/B]</description><pubDate>Thu, 02 Jun 2011 23:37:44 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQLCLR Appdomains</title><link>http://www.sqlservercentral.com/Forums/Topic1069394-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/SQLCLR/72198/"&gt;SQLCLR Appdomains&lt;/A&gt;[/B]</description><pubDate>Thu, 24 Feb 2011 22:32:10 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Service Service Accounts</title><link>http://www.sqlservercentral.com/Forums/Topic1257073-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/88465/"&gt;Service Service Accounts&lt;/A&gt;[/B]</description><pubDate>Thu, 23 Feb 2012 20:43:59 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL CMD</title><link>http://www.sqlservercentral.com/Forums/Topic1060036-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/72169/"&gt;SQL CMD&lt;/A&gt;[/B]</description><pubDate>Mon, 07 Feb 2011 23:25:22 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Restore</title><link>http://www.sqlservercentral.com/Forums/Topic1048359-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/72147/"&gt;Restore&lt;/A&gt;[/B]</description><pubDate>Sat, 15 Jan 2011 11:40:08 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Page Compression</title><link>http://www.sqlservercentral.com/Forums/Topic1108908-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/73554/"&gt;Page Compression&lt;/A&gt;[/B]</description><pubDate>Sun, 15 May 2011 08:14:11 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Bad Passwords</title><link>http://www.sqlservercentral.com/Forums/Topic1115174-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/73226/"&gt;Bad Passwords&lt;/A&gt;[/B]</description><pubDate>Wed, 25 May 2011 22:00:37 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>New Log Files</title><link>http://www.sqlservercentral.com/Forums/Topic1041273-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Administration/72024/"&gt;New Log Files&lt;/A&gt;[/B]</description><pubDate>Thu, 30 Dec 2010 21:52:03 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL Server 2008 Build List</title><link>http://www.sqlservercentral.com/Forums/Topic908263-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/articles/SQL+Server+2008+R2/70092/"&gt;SQL Server 2008 Build List&lt;/A&gt;[/B]</description><pubDate>Wed, 21 Apr 2010 19:40:47 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Model Database</title><link>http://www.sqlservercentral.com/Forums/Topic1255679-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/System+databases/88463/"&gt;Model Database&lt;/A&gt;[/B]</description><pubDate>Tue, 21 Feb 2012 20:36:39 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>NUMA</title><link>http://www.sqlservercentral.com/Forums/Topic1160345-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/NUMA/73632/"&gt;NUMA&lt;/A&gt;[/B]</description><pubDate>Mon, 15 Aug 2011 21:22:03 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Happy President's Day 2012</title><link>http://www.sqlservercentral.com/Forums/Topic1254445-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/articles/bloopers/88585/"&gt;Happy President's Day 2012&lt;/A&gt;[/B]</description><pubDate>Sun, 19 Feb 2012 10:18:17 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>Subscriber Backup Devices</title><link>http://www.sqlservercentral.com/Forums/Topic1252838-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Replication/87525/"&gt;Subscriber Backup Devices&lt;/A&gt;[/B]</description><pubDate>Wed, 15 Feb 2012 20:26:33 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item><item><title>SQL Agent Roles</title><link>http://www.sqlservercentral.com/Forums/Topic1247798-32-1.aspx</link><description>Comments posted to this topic are about the item [B]&lt;A HREF="/questions/Security/87711/"&gt;SQL Agent Roles&lt;/A&gt;[/B]</description><pubDate>Mon, 06 Feb 2012 21:35:18 GMT</pubDate><dc:creator>Steve Jones - SSC Editor</dc:creator></item></channel></rss>
