<?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>Wed, 22 May 2013 02:12:37 GMT</lastBuildDate>
 <pubDate>Wed, 22 May 2013 02:12:37 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>Maintenance Window</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62067#62067</link>
  <description>This is a suggestion.
&lt;br /&gt;

&lt;br /&gt;
Actually we can set maintenance window i.e from 11pm, 5 hours. 
&lt;br /&gt;
May be is more useful working time:
&lt;br /&gt;
From Monday to Friday, 6am to 10pm and nothing on weekends or Monday to Friday, 6am to 10pm and Saturday from 6am to 1pm and nothing on Sunday.
&lt;br /&gt;

&lt;br /&gt;
Just a thought.</description>
  <category>SQL Monitor 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17209</comments>
  <dc:creator>Luis Martin</dc:creator>
  <pubDate>Wed, 22 May 2013 00:49:51 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62067#62067</guid>
 </item>
 <item>
  <title>RE: Smart Assembly Failed</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62066#62066</link>
  <description>There is no crash, it says it builds the assembly yet it doesnt build the assembly.
&lt;br /&gt;

&lt;br /&gt;
The only option I have set in SA in the error reporting. Its only just started happening. It used to work on the previous apps, I just figured there was a bug somewhere.</description>
  <category>SmartAssembly 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17176</comments>
  <dc:creator>jf3000</dc:creator>
  <pubDate>Tue, 21 May 2013 21:58:45 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62066#62066</guid>
 </item>
 <item>
  <title>RE: Found new bug when using &amp;quot;Add object existence check&amp;quot; option</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62065#62065</link>
  <description>Here is a simple scenario for you to reproduce this error.  Hope this helps.
&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;
-- Create identical TestA and TestB databases
&lt;br /&gt;
create database TestA ;
&lt;br /&gt;
go
&lt;br /&gt;
use TestA ;
&lt;br /&gt;
go
&lt;br /&gt;
create default &amp;#91;dbo&amp;#93;.&amp;#91;empty_number&amp;#93; AS 0 ;
&lt;br /&gt;
go
&lt;br /&gt;
create table dbo.Table1
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#40;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column1 char&amp;#40;10&amp;#41; not null,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column2 int not null
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#41; ;
&lt;br /&gt;

&lt;br /&gt;
execute sp_bindefault N'dbo.empty_number', N'dbo.Table1.column2' ;
&lt;br /&gt;
go
&lt;br /&gt;

&lt;br /&gt;
create database TestB ;
&lt;br /&gt;
go
&lt;br /&gt;
use TestB ;
&lt;br /&gt;
go
&lt;br /&gt;
create default &amp;#91;dbo&amp;#93;.&amp;#91;empty_number&amp;#93; AS 0 ;
&lt;br /&gt;
go
&lt;br /&gt;
create table dbo.Table1
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#40;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column1 char&amp;#40;10&amp;#41; not null,
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;column2 int not null
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;#41; ;
&lt;br /&gt;

&lt;br /&gt;
execute sp_bindefault N'dbo.empty_number', N'dbo.Table1.column2' ;
&lt;br /&gt;
go
&lt;br /&gt;

&lt;br /&gt;
-- Now drop the &amp;quot;column2&amp;quot; in Table1 in the TestA database.
&lt;br /&gt;
use TestA ;
&lt;br /&gt;
go
&lt;br /&gt;
execute sp_unbindefault N'dbo.Table1.column2' ;
&lt;br /&gt;
go
&lt;br /&gt;
alter table dbo.Table1 drop column column2 ;
&lt;br /&gt;
go
&lt;br /&gt;

&lt;br /&gt;
-- Now use SQL Compare 10 to generate a script to make TestB match TestA.&amp;nbsp; Be sure to
&lt;br /&gt;
-- check the &amp;quot;Add object existence checks&amp;quot; option before generating the script.
&lt;br /&gt;
-- Run the generated script on the TestB database and see the error.
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
  <category>SQL Compare 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17103</comments>
  <dc:creator>JohnnyT</dc:creator>
  <pubDate>Tue, 21 May 2013 20:48:58 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62065#62065</guid>
 </item>
 <item>
  <title>Crash of WebDev.WebServer40.exe on Snapshot</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62064#62064</link>
  <description>I'm trying to profile an ASP.net MVC application (VS Development Server)but when I try to take a snapshot the webserver process crashes (error log below).
&lt;br /&gt;

&lt;br /&gt;
I'm using VS2012 11.0.50727.1 and Ants 7.4.0.41
&lt;br /&gt;

&lt;br /&gt;
Any help would be gratefully received.
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
Richard
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
Faulting application name: WebDev.WebServer40.exe, version: 10.0.40219.1, time stamp: 0x4d5f345a
&lt;br /&gt;
Faulting module name: diasymreader.dll, version: 8.0.50727.5420, time stamp: 0x4ca2cdf7
&lt;br /&gt;
Exception code: 0xc0000005
&lt;br /&gt;
Fault offset: 0x0005436c
&lt;br /&gt;
Faulting process id: 0x1ee8
&lt;br /&gt;
Faulting application start time: 0x01ce563d88bcd142
&lt;br /&gt;
Faulting application path: C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0\WebDev.WebServer40.exe
&lt;br /&gt;
Faulting module path: C:\Windows\Microsoft.NET\Framework\v2.0.50727\diasymreader.dll
&lt;br /&gt;
Report Id: ec688b30-c230-11e2-b982-001c4277449c</description>
  <category>ANTS Memory Profiler 7</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17208</comments>
  <dc:creator>MrT</dc:creator>
  <pubDate>Tue, 21 May 2013 16:43:32 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62064#62064</guid>
 </item>
 <item>
  <title>RE: Profiling a different machine</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62063#62063</link>
  <description>Ah, so sorry about this inconvenience. Remote profiling is on our feature request list though and I've also shared your reply with the team--thanks very much for the feedback!</description>
  <category>ANTS Memory Profiler 7</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17159</comments>
  <dc:creator>jessica.ramos</dc:creator>
  <pubDate>Tue, 21 May 2013 15:58:24 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62063#62063</guid>
 </item>
 <item>
  <title>RE: ANTS Crashing ASPNET Dev IIS Server on Profiler Launch</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62062#62062</link>
  <description>Hi Josh,
&lt;br /&gt;

&lt;br /&gt;
Sorry for the delay in replying while I was on vacation last week.  
&lt;br /&gt;

&lt;br /&gt;
If I understand your comments correctly, your problem is with ANTS Memory Profiler 7.4, not ANTS Performance Profiler. I'm afraid the Memory Profiler doesn't currently support Silverlight 5, and there's also a known bug where (as you say), the add-in in Visual Studio 2012 launches the wrong version of the Web Development server. 
&lt;br /&gt;

&lt;br /&gt;
Both of these issues were fixed in the recently-released ANTS Performance Profiler 8.0 and we'll endevor to get these fixes into the earliest betas of ANTS Memory Profiler 8.0 once we open that beta program shortly.</description>
  <category>ANTS Performance Profiler 7</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=15553</comments>
  <dc:creator>dom.smith</dc:creator>
  <pubDate>Tue, 21 May 2013 15:35:40 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62062#62062</guid>
 </item>
 <item>
  <title>RE: SQL Compare SDK removing users from database</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62061#62061</link>
  <description>The solution to this issue is to loop through the objects in the database, ensure you set all the users .Selected = false then the SQL compare will completely ignore them.</description>
  <category>SQL Comparison SDK 10</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17192</comments>
  <dc:creator>chris.brown</dc:creator>
  <pubDate>Tue, 21 May 2013 15:08:22 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62061#62061</guid>
 </item>
 <item>
  <title>RE: Wrong line numbers in stack traces</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62060#62060</link>
  <description>Hello,
&lt;br /&gt;

&lt;br /&gt;
I am currently having the same issue using version 6.8.0.117. Line numbers sometimes seem to be incorrect by one or more lines. I have created a little repo that illustrates the problem:
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://www.edevis.com/upgrades/3473C9BC-0140-4DDD-A177-6E462CA834FD/ConsoleApplication1.zip&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Download&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Use build config 'Release_Obfuscated' which automatically creates the obfuscated assembly using the supplied .saproj file.
&lt;br /&gt;

&lt;br /&gt;
What I have found out is that setting 'Control Flow Obfuscated' level changes the returned line numbers. I dont know if all levels should support the decoding, but I found no statement telling me otherwise.</description>
  <category>SmartAssembly 6</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=16072</comments>
  <dc:creator>edevis</dc:creator>
  <pubDate>Tue, 21 May 2013 14:56:25 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62060#62060</guid>
 </item>
 <item>
  <title>Registrering fails for database with federation</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62059#62059</link>
  <description>I am evaluating MySQL Compare.
&lt;br /&gt;

&lt;br /&gt;
When trying to compare two databases where one contains a federated table (using the FEDERATED database engine), registering fails for the database containing the federated data (not for the other), aborting the  comparison operation. 
&lt;br /&gt;

&lt;br /&gt;
Only a portion of the MySQL Compare error message fits the screen:
&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;The foreign data source you're trying to reference does not exist. Data source error&amp;#58; error&amp;#58; 1142 'SELECT command denied to user 'fedUser'@...&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Accessing the sole federated table in MySQL Workbench 5.2.47 which uses &amp;quot;fedUser&amp;quot; as user in its connection works fine. It clearly exists and data is retrieved. So why is MySQL Compare complaining about this?  &lt;img src=&quot;images/smiles/icon_question.gif&quot; alt=&quot;Question&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
The connection method is TCP/IP for the problematic database containing the federated table; SSH for the other database.</description>
  <category>MySQL Compare</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17207</comments>
  <dc:creator>evaluator</dc:creator>
  <pubDate>Tue, 21 May 2013 12:48:50 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62059#62059</guid>
 </item>
 <item>
  <title>SQL Monitor v3.4 has been released.</title>
  <link>http://www.red-gate.com/MessageBoard/viewtopic.php?p=62058#62058</link>
  <description>SQL Monitor v3.4 is now available to download from &lt;a href=&quot;http://www.red-gate.com/products/dba/sql-monitor/&quot; target=&quot;_blank&quot;&gt;http://www.red-gate.com/products/dba/sql-monitor/&lt;/a&gt; 
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;What’s new in this release? &lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
•	Time ranges and comparison on the Analysis graph are fully customisable, making it easier to identify unusual patterns of behaviour.
&lt;br /&gt;
•	There are now more ways to manipulate the Analysis graph, including clicking and dragging to change the time frame, and zooming in and out with the mouse wheel (not available in IE7 and IE8).
&lt;br /&gt;
•	Log files can be retrieved from the ‘Configuration -&amp;gt; About’ page. 
&lt;br /&gt;

&lt;br /&gt;
For more information, see the &lt;a href=&quot;https://documentation.red-gate.com/display/SM34/SQL+Monitor+3.4+release+notes&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;release notes&lt;/a&gt;. 
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;Find out more or contact us: &lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://www.red-gate.com/products/dba/sql-monitor/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;Read more&lt;/a&gt; about SQL Monitor 3 and its key features. 
&lt;br /&gt;
Report any issues and raise questions on the &lt;a href=&quot;http://www.red-gate.com/messageboard/viewforum.php?f=158&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;support forum&lt;/a&gt; or email us at &lt;a href=&quot;mailto:support@red-gate.com&quot;&gt;support@red-gate.com&lt;/a&gt;.</description>
  <category>SQL Monitor 3</category>
  <comments>http://www.red-gate.com/MessageBoard/posting.php?mode=reply&amp;t=17206</comments>
  <dc:creator>priyasinha</dc:creator>
  <pubDate>Tue, 21 May 2013 12:44:54 GMT</pubDate>
  <guid isPermaLink="true">http://www.red-gate.com/MessageBoard/viewtopic.php?p=62058#62058</guid>
 </item>
</channel>
</rss>
