<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xml:base="http://www.red-gate.com/MessageBoard/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Red Gate forums</title>
 <link>http://www.red-gate.com/MessageBoard/</link>
 <description>Product Support and Discussion</description>
 <language>en</language>
 <copyright>Copyright Red Gate Software Ltd</copyright>
 <managingEditor>internalsupport@red-gate.com</managingEditor>
 <webMaster>internalsupport@red-gate.com</webMaster>
 <docs>http://blogs.law.harvard.edu/tech/rss</docs>
 <ttl>60</ttl>
 <lastBuildDate>Fri, 24 May 2013 20:50:07 GMT</lastBuildDate>
 <pubDate>Fri, 24 May 2013 20:50:07 GMT</pubDate>
 <image>
  <url>http://www.red-gate.com/messageboard/templates/subRed/images/logo_phpBB.gif</url>
  <title>Red Gate forums</title>
  <link>http://www.red-gate.com/MessageBoard/</link>
 </image>
 <item>
  <title>SQL Prompt versus SSMS 2012 intellisense</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62148#62148</link>
  <description>Hi folks - 
&lt;br /&gt;

&lt;br /&gt;
I just installed SSMS 2012.  I've been using SQL PRompt 5 with SSMS 2008 R2 until now and like it.  However in SSMS 2012 Microsoft seems to have improved the internal intellisense.  Also both the intellisense and SQL Prompt are on by default so I have two layered suggestion boxes popping up.  Can someone clarify how SQL Prompt differs from the built-in offering?
&lt;br /&gt;

&lt;br /&gt;
Thanks,
&lt;br /&gt;

&lt;br /&gt;
John</description>
  <category>SQL Prompt 5</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17256</comments>
  <dc:creator>freecell1</dc:creator>
  <pubDate>Fri, 24 May 2013 18:31:07 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62148#62148</guid>
 </item>
 <item>
  <title>sql prompt fails to format forceseek index hint (sql 2012)</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62147#62147</link>
  <description>SQL prompt fails to format below index hint, MSDN documentation is below.
&lt;br /&gt;
This is a major problem now, I cannot use sqlprompt period for formatting since most of my scripts uses the forceseek hint.
&lt;br /&gt;
Thank you
&lt;br /&gt;

&lt;br /&gt;
WITH ( FORCESEEK(1(CntyCd, PclId, PclSeqNbr)))
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
SELECT CONCAT(@D, k.AddrAptNbr, @D, k.AddrCarrt, @D, k.AddrDirLeftCd, @D, k.AddrDirRightCd, @D, k.AddrHse1Nbr, @D,
&lt;br /&gt;
                                               k.AddrHse2Nbr, @D, k.AddrModeCd, @D, k.AddrPfx1Cd, @D, k.AddrSfx1Cd, @D, k.AddrSfx2Cd, @D, k.AddrStreetName, @D,
&lt;br /&gt;
                                               LTRIM(k.AddrTypCd), @D, k.CbsaCd, @D, k.CensId, @D, LTRIM(k.CSZTypInd), @D, k.DPIDCd, @D, k.DpvCd, @D,
&lt;br /&gt;
                                               k.GeoMatchCd, @D, k.LatDegr, @D, k.LongDegr, @D, k.MatchCd, @D, k.OrigAddr1, @D, k.OrigAddr2, @D, k.OrigAddr3, @D,
&lt;br /&gt;
                                               k.OrigCityName, @D, k.OrigStCd, @D, k.StdAddr1, @D, k.StdHse1Nbr, @D, k.StdHse2Nbr, @D, k.StreetNamePfx, @D,
&lt;br /&gt;
                                               k.StdCityName, @D, k.StdStCd, @D, k.OrigZipCd, @D, k.StdZipCd)
&lt;br /&gt;
                                 FROM   tTrans.TransSitus AS k WITH ( FORCESEEK(1(CntyCd, BatchDt, BatchSeq)))
&lt;br /&gt;
                                 WHERE  k.CntyCd = @CntyCd
&lt;br /&gt;
                                        AND k.BatchDt = t.BatchDt
&lt;br /&gt;
                                        AND k.BatchSeq = t.BatchSeq
&lt;br /&gt;
                                        AND k.SitusSeq = 1
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/ms187373.aspx&quot; target=&quot;_blank&quot;&gt;http://msdn.microsoft.com/en-us/library/ms187373.aspx&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
WITH  ( &amp;lt;table_hint&amp;gt; [ [, ]...n ] )
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;table_hint&amp;gt; ::= 
&lt;br /&gt;
[ NOEXPAND ] { 
&lt;br /&gt;
    INDEX  ( index_value [ ,...n ] ) | INDEX =  ( index_value )    | FORCESEEK [( index_value ( index_column_name  [ ,... ] ) ) ]
&lt;br /&gt;
  | FORCESCAN
&lt;br /&gt;
  | FORCESEEK
&lt;br /&gt;
  | HOLDLOCK 
&lt;br /&gt;
  | NOLOCK 
&lt;br /&gt;
  | NOWAIT
&lt;br /&gt;
  | PAGLOCK 
&lt;br /&gt;
  | READCOMMITTED 
&lt;br /&gt;
  | READCOMMITTEDLOCK 
&lt;br /&gt;
  | READPAST 
&lt;br /&gt;
  | READUNCOMMITTED 
&lt;br /&gt;
  | REPEATABLEREAD 
&lt;br /&gt;
  | ROWLOCK 
&lt;br /&gt;
  | SERIALIZABLE 
&lt;br /&gt;
  | SPATIAL_WINDOW_MAX_CELLS = integer
&lt;br /&gt;
  | TABLOCK 
&lt;br /&gt;
  | TABLOCKX 
&lt;br /&gt;
  | UPDLOCK 
&lt;br /&gt;
  | XLOCK 
&lt;br /&gt;
}</description>
  <category>SQL Prompt 5</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17255</comments>
  <dc:creator>gokhanvarol@gmail.com</dc:creator>
  <pubDate>Fri, 24 May 2013 16:00:59 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62147#62147</guid>
 </item>
 <item>
  <title>Formatting cursor logic indents weird</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62146#62146</link>
  <description>Here's a kill user script I found on the web a long time ago, I've flattened it out to show what it looks like before SQL Prompt format
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;DECLARE @strSQL VARCHAR&amp;#40;255&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
--PRINT 'Killing Users'
&lt;br /&gt;
--PRINT '-----------------'
&lt;br /&gt;
CREATE TABLE #tmpUsers &amp;#40;
&lt;br /&gt;
spid INT,
&lt;br /&gt;
eid INT,
&lt;br /&gt;
STATUS VARCHAR&amp;#40;30&amp;#41;,
&lt;br /&gt;
loginname VARCHAR&amp;#40;50&amp;#41;,
&lt;br /&gt;
hostname VARCHAR&amp;#40;50&amp;#41;,
&lt;br /&gt;
blk INT,
&lt;br /&gt;
dbname VARCHAR&amp;#40;50&amp;#41;,
&lt;br /&gt;
cmd VARCHAR&amp;#40;30&amp;#41;,
&lt;br /&gt;
request_id INT
&lt;br /&gt;
&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
INSERT INTO #tmpUsers
&lt;br /&gt;
EXEC SP_WHO
&lt;br /&gt;

&lt;br /&gt;
DECLARE LoginCursor CURSOR READ_ONLY
&lt;br /&gt;
FOR
&lt;br /&gt;
SELECT spid,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;dbname
&lt;br /&gt;
FROM #tmpUsers
&lt;br /&gt;
WHERE dbname = @dbname
&lt;br /&gt;

&lt;br /&gt;
DECLARE @spid VARCHAR&amp;#40;10&amp;#41;
&lt;br /&gt;
DECLARE @dbname2 VARCHAR&amp;#40;40&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
OPEN LoginCursor
&lt;br /&gt;

&lt;br /&gt;
FETCH NEXT
&lt;br /&gt;
FROM LoginCursor
&lt;br /&gt;
INTO @spid,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;@dbname2
&lt;br /&gt;

&lt;br /&gt;
WHILE &amp;#40;@@fetch_status &amp;lt;&amp;gt; - 1&amp;#41;
&lt;br /&gt;
BEGIN
&lt;br /&gt;
IF &amp;#40;@@fetch_status &amp;lt;&amp;gt; - 2&amp;#41;
&lt;br /&gt;
BEGIN
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;--PRINT 'Killing ' + @spid
&lt;br /&gt;
SET @strSQL = 'KILL ' + @spid
&lt;br /&gt;
EXEC &amp;#40;@strSQL&amp;#41;
&lt;br /&gt;
END
&lt;br /&gt;
FETCH NEXT
&lt;br /&gt;
FROM LoginCursor
&lt;br /&gt;
INTO @spid,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;@dbname2
&lt;br /&gt;
END
&lt;br /&gt;

&lt;br /&gt;
CLOSE LoginCursor
&lt;br /&gt;

&lt;br /&gt;
DEALLOCATE LoginCursor
&lt;br /&gt;

&lt;br /&gt;
DROP TABLE #tmpUsers
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;--PRINT 'Done'
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Here's the same script after formatting it with SQL Prompt:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DECLARE @strSQL VARCHAR&amp;#40;255&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
--PRINT 'Killing Users'
&lt;br /&gt;
--PRINT '-----------------'
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; CREATE TABLE #tmpUsers
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#40;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; spid INT ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; eid INT ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; STATUS VARCHAR&amp;#40;30&amp;#41; ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; loginname VARCHAR&amp;#40;50&amp;#41; ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; hostname VARCHAR&amp;#40;50&amp;#41; ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; blk INT ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dbname VARCHAR&amp;#40;50&amp;#41; ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cmd VARCHAR&amp;#40;30&amp;#41; ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; request_id INT
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; INSERT&amp;nbsp; INTO #tmpUsers
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXEC SP_WHO
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DECLARE LoginCursor CURSOR READ_ONLY
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; FOR
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SELECT&amp;nbsp; spid ,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dbname
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FROM&amp;nbsp; &amp;nbsp; #tmpUsers
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WHERE&amp;nbsp; &amp;nbsp;dbname = @dbname
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DECLARE @spid VARCHAR&amp;#40;10&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DECLARE @dbname2 VARCHAR&amp;#40;40&amp;#41;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; OPEN LoginCursor
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; FETCH NEXT
&lt;br /&gt;
FROM LoginCursor
&lt;br /&gt;
INTO @spid, @dbname2
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; WHILE &amp;#40; @@fetch_status &amp;lt;&amp;gt; -1 &amp;#41; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BEGIN
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IF &amp;#40; @@fetch_status &amp;lt;&amp;gt; -2 &amp;#41; 
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BEGIN
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;--PRINT 'Killing ' + @spid
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SET @strSQL = 'KILL ' + @spid
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EXEC &amp;#40;@strSQL&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; END
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FETCH NEXT
&lt;br /&gt;
FROM LoginCursor
&lt;br /&gt;
INTO @spid, @dbname2
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; END
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; CLOSE LoginCursor
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DEALLOCATE LoginCursor
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp; DROP TABLE #tmpUsers
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;--PRINT 'Done'
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
The &amp;quot;Fetch next&amp;quot; are the parts I find odd.  Fetch Next gets indented away from FROM LoginCursor INTO .... 
&lt;br /&gt;

&lt;br /&gt;
then the second fetch next before the END code gets formatted even further out, I guess because it's part of the indent logic for the WHILE BEGIN/END BLOCK?</description>
  <category>SQL Prompt 5</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17254</comments>
  <dc:creator>Mindflux</dc:creator>
  <pubDate>Fri, 24 May 2013 15:20:21 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62146#62146</guid>
 </item>
 <item>
  <title>RE: sql monitor alert level not changing down a level</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62145#62145</link>
  <description>My mistake Steven. I assumed that you are talking about built-in Fragmented indexes alert. I have received your email. Replying you in few minutes.
&lt;br /&gt;

&lt;br /&gt;
Thanks,
&lt;br /&gt;
Priya</description>
  <category>SQL Monitor 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17251</comments>
  <dc:creator>priyasinha</dc:creator>
  <pubDate>Fri, 24 May 2013 14:44:06 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62145#62145</guid>
 </item>
 <item>
  <title>Changeset Comments Policy Error</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62144#62144</link>
  <description>I have Team Foundation server setup to require a Check In Comment on all check ins.  I was excited to see that SQL Source was going to support this feature. 
&lt;br /&gt;

&lt;br /&gt;
When we upgraded to the new version, even if we enter a comment we get an error.
&lt;br /&gt;

&lt;br /&gt;
&amp;quot;This Commit doesn't meet the server's policy requirements, or the policy isn't configured on your machince.  The Server returned the follwing &amp;quot;Internal error in ChangeShet commetns Policy.  Error loading the changeset comments Policy policy.&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
It does reference a CheckForComments.CS with instructions.  Please help?  We are dead in the water and can't check code in right now!</description>
  <category>SQL Source Control 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17253</comments>
  <dc:creator>flyer299</dc:creator>
  <pubDate>Fri, 24 May 2013 14:26:11 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62144#62144</guid>
 </item>
 <item>
  <title>RE: sql monitor alert level not changing down a level</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62143#62143</link>
  <description>ive got all the screen shots exce[t the 'frgmented indexe' tab - there isnt one !</description>
  <category>SQL Monitor 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17251</comments>
  <dc:creator>stevenhoban</dc:creator>
  <pubDate>Fri, 24 May 2013 13:45:09 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62143#62143</guid>
 </item>
 <item>
  <title>Hopefully an easy question</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62142#62142</link>
  <description>Good morning all!
&lt;br /&gt;

&lt;br /&gt;
Resolved my issue which was unable to locate triggers pertaining to certain tables after decryption.  Realized the code is just all tied to the table and I have to pull the trigger code specifically and then mail it off to the developer for review.</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17252</comments>
  <dc:creator>jessay</dc:creator>
  <pubDate>Fri, 24 May 2013 13:39:40 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62142#62142</guid>
 </item>
 <item>
  <title>RE: sql monitor alert level not changing down a level</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62141#62141</link>
  <description>Hi Steven,
&lt;br /&gt;

&lt;br /&gt;
Could you please email screen shot of the following at &lt;a href=&quot;mailto:priya.sinha@red-gate.com&quot;&gt;priya.sinha@red-gate.com&lt;/a&gt;:
&lt;br /&gt;
- Details tab for the alert.
&lt;br /&gt;
- Fragmented indexes tab for the alert.
&lt;br /&gt;
- Alert history tab for the alert.
&lt;br /&gt;
- Click on 'configure alert' link on the alert details page and then send screen shot of the Alert settings page.
&lt;br /&gt;

&lt;br /&gt;
Thanks,
&lt;br /&gt;
Priya</description>
  <category>SQL Monitor 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17251</comments>
  <dc:creator>priyasinha</dc:creator>
  <pubDate>Fri, 24 May 2013 13:28:55 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62141#62141</guid>
 </item>
 <item>
  <title>sql monitor alert level not changing down a level</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62140#62140</link>
  <description>I have the alert &amp;quot;Increased % of fragmented indexes&amp;quot; set up on sql monitor. The medium level alert is set when the value reaches 25 and the alert was fired at value 29. I last night ran some index maintenance jobs to rebuild if over 30% fragmentation and reorganise if over 5%.
&lt;br /&gt;
The alert collects the data once a day @ 13:35 and i can see the alert has now been 'downgraded' from medium to Low when i click on the 'alert history'
&lt;br /&gt;
How is it then, that the actual alert on the inbox is still showing as 'Medium' - should this not have changed to a blue 'low'.?
&lt;br /&gt;
Also if i set to re-organise my indexes with 5% or above fragmentation level, howcome this is still showing as a downgraded leve. Shouldnt it be set to 'ended'
&lt;br /&gt;
Thanks
&lt;br /&gt;
Steven</description>
  <category>SQL Monitor 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17251</comments>
  <dc:creator>stevenhoban</dc:creator>
  <pubDate>Fri, 24 May 2013 13:01:16 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62140#62140</guid>
 </item>
 <item>
  <title>RE: Use migration script with Snapshots</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62139#62139</link>
  <description>Sounds good, I sent you a PM with contact and more general information.
&lt;br /&gt;

&lt;br /&gt;
Once we get this finalized, I will provide a write up and share with the group on a solid CI-&amp;gt;automated deploy process.</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17223</comments>
  <dc:creator>rickjr82</dc:creator>
  <pubDate>Fri, 24 May 2013 12:42:16 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62139#62139</guid>
 </item>
</channel>
</rss>
