User Chris Driver - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:55:59Zhttp://stackoverflow.com/feeds/user/5217http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81360/how-to-retrieve-stored-procedure-return-values-from-a-tableadapter3How to retrieve stored procedure return values from a TableAdapterChris Driver2008-09-17T09:12:13Z2009-07-02T15:17:53Z
<p>I cannot find an elegant way to get the return value from a stored procedure when using TableAdapters.</p>
<p>It appears the TableAdapter does not support SQL stored procedure return values when using a non-scalar stored procedure call. You'd expect the return value from the auto-generated function would be the return value from the stored procedure but it isn't (it is actually the number of rows affected). Although possible to use 'out' parameters and pass a variable as a ref to the auto generated functions it isn't a very clean solution.</p>
<p>I have seen some ugly hacks on the web to solve this, but no decent solution. Any help would be appreciated.</p>
http://stackoverflow.com/questions/81360/how-to-retrieve-stored-procedure-return-values-from-a-tableadapter/1049670#10496700Answer by Chris Driver for How to retrieve stored procedure return values from a TableAdapterChris Driver2009-06-26T15:14:00Z2009-06-26T15:14:00Z<p>Closing this question as it appears return values aren't supported and there is no elegant workaround!</p>
http://stackoverflow.com/questions/945325/syncing-stored-procedures-between-two-databases/945356#9453564Answer by Chris Driver for Syncing stored procedures between two databases?Chris Driver2009-06-03T15:15:40Z2009-06-03T15:22:17Z<p>I would recommend purchasing (or just evaluating) a dedicated tool to achieve this. There are a number of products on the market including:
<a href="http://www.apexsql.com/sql%5Ftools%5Fdiff.asp" rel="nofollow">Apex SQL Diff</a> and <a href="http://www.red-gate.com/products/SQL%5FCompare/index.htm" rel="nofollow">Redgate SQL Compare</a></p>
<p>I have used Apex SQL Diff for a number of years and would wholeheartedly recommend it.</p>
http://stackoverflow.com/questions/532662/how-to-identify-performance-and-concurrency-issues-on-an-asp-net-iis-sql-serv2How to identify performance and concurrency issues on an ASP.NET / IIS / SQL Server websiteChris Driver2009-02-10T14:56:20Z2009-03-18T16:55:52Z
<p>I would appreciate any advice regarding tools and practices I could use to confirm my recently completed website is performing correctly.</p>
<p>Although I am confident the code is not producing errors and is functionally operating as it should, I have little understanding of how to identify IIS, SQL Server and Windows performance/concurrency issues. For example if the website was briefly hit by a huge deluge of traffic, how would I be aware that event had ever happened and how would I know whether the website coped with it.</p>
<p>The website was written using ASP.NET 2.0 and C# running on Windows 2003 R2 Standard Edition, SQL Server 2005 Workgroup Edition and IIS 6.</p>
http://stackoverflow.com/questions/614336/check-if-a-server-is-available/614639#6146391Answer by Chris Driver for Check if a server is availableChris Driver2009-03-05T12:52:44Z2009-03-05T12:52:44Z<p>From your question it appears the purpose of connecting to the server is to use its database. Your priority must be to check whether you can successfully connect to the database. It doesn't matter if you can <code>PING</code> the server or get an <code>HTTP</code> response (as suggested in other answers), your process will fail unless you successfully establish a connection to the <strong>database</strong>. You mention that checking a database connection takes too long, why don't you just change the <code>Connection Timeout</code> setting in your application's connection string to a more impatient value such as 5 seconds (<code>Connection Timeout=5</code>)?</p>
http://stackoverflow.com/questions/586277/do-you-leave-windows-automatic-updates-enabled-on-your-production-iis-server/586470#5864703Answer by Chris Driver for Do you leave Windows Automatic Updates enabled on your production IIS server?Chris Driver2009-02-25T15:28:43Z2009-02-25T16:10:20Z<p>For a production Windows server I would <strong>not</strong> recommend setting Windows Update to download and install updates automatically. A better approach is to download updates automatically but manually install them.</p>
<p>The benefits of this approach are:</p>
<ol>
<li>
You can review the proposed updates prior to installation and where necessary, research the implications of installing the update. This may seem like more work - it is! but at least you will be in control. Microsoft also offers a
<a href="http://technet.microsoft.com/en-gb/security/dd252948.aspx" rel="nofollow">free mailing list</a> that gives you early notification of the type of updates to be released in the next batch of Windows Updates.
</li>
<li>
You can decide a reboot time that has minimum impact on the visitors to your website. It would seem your website runs from a single server, so it might be useful to display a banner on your website that warns your visitors of an impending reboot. I have implemented something similar that appears one hour before a reboot and displays a message saying 'The website will close in x minutes for maintenance. Maintenance should take no longer than 10 minutes'
</li>
<li>
Because you have manually initiated a reboot of the server, you can check that the server has come back up successfully after the reboot. If it hasn't, you can speak to your hosting provider and deal with the problem.
</li>
</ol>
<p>Basically it's all about control and with automatic downloads and automatic installation, you don't get much!!</p>
http://stackoverflow.com/questions/183488/what-does-the-sql-server-error-string-data-right-truncation-mean-and-how-do-i/183518#1835182Answer by Chris Driver for What does the SQL Server Error "String Data, Right Truncation" mean and how do I fix it?Chris Driver2008-10-08T15:58:02Z2008-10-08T16:37:31Z<p>Either the parameter supplied for <code>ZIP_CODE</code> is larger (in length) than <code>ZIP_CODE</code>s column width or the parameter supplied for <code>CITY</code> is larger (in length) than <code>CITY</code>s column width. </p>
<p>It would be interesting to know the values supplied for the two <code>?</code> placeholders.</p>
http://stackoverflow.com/questions/121579/im-getting-a-strange-unhandled-exception-from-my-asp-net-application-validatio/121583#1215837Answer by Chris Driver for I'm getting a strange unhandled exception from my asp.net application - Validation of viewstate MAC failedChris Driver2008-09-23T15:04:16Z2008-09-23T15:10:45Z<p>I seem to recall that this error can occur if you click a button/link etc before the page has fully loaded.</p>
<p>If this is the case, the error is caused by an ASP.net 2.0 feature called Event Validation. This is a security feature that ensures that postback actions only come from events allowed and created by the server to help prevent spoofed postbacks. This feature is implemented by having controls register valid events when they render (as in, during their actual Render() methods). The end result is that at the bottom of your rendered
form tag, you'll see something like this:</p>
<pre><code><input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="AEBnx7v.........tS" />
</code></pre>
<p>When a postback occurs, ASP.net uses the values stored in this hidden field to ensure that the button you clicked invokes a valid event. If it's not valid, you get the exception that you've been seeing.</p>
<p>The problem you're seeing happens specifically when you postback before the EventValidation field has been rendered. If EventValidation is enabled (which it is, by default), but ASP.net doesn't see the hidden field when you postback, you also get the exception. If you submit a form before it has been entirely rendered, then chances are the EventValidation field has not yet been rendered, and thus ASP.net cannot validate your click.</p>
<p>One work around is of course to just disable event validation, but you have to be aware of the security implications. Alternatively, just never post back before the form has finished rendering. Of course, that's hard to tell your users, but perhaps you could disable the UI until the form has rendered?</p>
<p>from <a href="http://forums.asp.net/p/955145/1173230.aspx" rel="nofollow">http://forums.asp.net/p/955145/1173230.aspx</a></p>
http://stackoverflow.com/questions/62013/problem-with-login-control-of-asp-net/62084#620840Answer by Chris Driver for Problem with Login control of ASP.NETChris Driver2008-09-15T10:10:33Z2008-09-15T10:10:33Z<p>Do you have <code>requireSSL="true"</code> in your web.config?
I had similar symptoms to you. If you set requireSSL to true, there are some <a href="http://msdn.microsoft.com/en-us/library/ms998347.aspx#paght000022_additionalconsiderations" rel="nofollow">additional considerations</a>.</p>
http://stackoverflow.com/questions/52172/unmovable-files-on-windows-xp/52222#522221Answer by Chris Driver for Unmovable Files on Windows XPChris Driver2008-09-09T15:49:23Z2008-09-09T15:49:23Z<p>Terry, the answers all mention ways to prevent files from becoming unmovable during defragmentation. From your question it appears that you are in fact wanting to <em>make</em> your personal files unmovable. Can you please clarify what is appealing about making your files unmovable.</p>
http://stackoverflow.com/questions/51969/how-to-detect-readcommittedsnapshot-is-enabled1How to detect READ_COMMITTED_SNAPSHOT is enabled?Chris Driver2008-09-09T14:07:11Z2008-09-09T14:18:29Z
<p>Hello, In MS SQL Server is there a way to detect whether a database has had its isolation level set via the T-SQL command <code>ALTER DATABASE <database> SET READ_COMMITTED_SNAPSHOT ON;</code></p>
<p>I cannot find a simple way to detect this in either T-SQL or via the Management Studio's GUI.</p>
<p>TIA</p>
http://stackoverflow.com/questions/1415495/sync-two-sql-server-databasesComment by Chris Driver on sync two sql server databasesChris Driver2009-09-14T10:11:52Z2009-09-14T10:11:52Z@SweetGangster, you need to clarify what changes you are making directly to the intDB database. You have already mentioned you have added additional Stored Procedures, do you make any other changes to tables, data etc? This will affect the answers you get to your question.http://stackoverflow.com/questions/1415495/sync-two-sql-server-databases/1415586#1415586Comment by Chris Driver on sync two sql server databasesChris Driver2009-09-14T09:56:42Z2009-09-14T09:56:42ZFrom the comment/question I asked it appears he is adding Stored Procedures to his intDB. Therefore a normal backup/restore would cause him to lose any changes he made to intDB.http://stackoverflow.com/questions/1415495/sync-two-sql-server-databasesComment by Chris Driver on sync two sql server databasesChris Driver2009-09-12T16:33:28Z2009-09-12T16:33:28ZDo you ever make local changes to intDB and if so, would it be a problem if extDB overwrote these changes?http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/291022#291022Comment by Chris Driver on Worst UI You've Ever UsedChris Driver2009-07-10T10:40:48Z2009-07-10T10:40:48ZA horrific UI, but a fantastic program. The non-resizable, 3 line folder view in the top left is pricelesshttp://stackoverflow.com/questions/626859/what-is-your-favourite-programmers-context-menu-addition-for-your-windows-machin/626861#626861Comment by Chris Driver on What is your favourite programmer's context-menu addition for your Windows machine?Chris Driver2009-06-09T17:22:16Z2009-06-09T17:22:16Z@jeffamaphone, I think you just need to SHIFT+RCLICK :)http://stackoverflow.com/questions/233147/visual-studio-2008-find-in-files-lists-everything-twiceComment by Chris Driver on Visual studio 2008 - Find in files : lists everything twiceChris Driver2009-05-19T15:49:45Z2009-05-19T15:49:45ZIf it makes you feel any better, I have the same problem! Everything lists twice. Like you, mine is a VS2008 web-site project.http://stackoverflow.com/questions/626859/what-is-your-favourite-programmers-context-menu-addition-for-your-windows-machin/626900#626900Comment by Chris Driver on What is your favourite programmer's context-menu addition for your Windows machine?Chris Driver2009-03-09T17:51:21Z2009-03-09T17:51:21ZSpotters badge for you Karim!http://stackoverflow.com/questions/614336/check-if-a-server-is-available/614639#614639Comment by Chris Driver on Check if a server is availableChris Driver2009-03-05T13:17:58Z2009-03-05T13:17:58ZYes you are correct, but I am suggesting you use this shortened Connection Timeout only for your initial 'probe' to check the server and database is alive. After that, connect using a more sensible sized timeout.http://stackoverflow.com/questions/614336/check-if-a-server-is-available/614350#614350Comment by Chris Driver on Check if a server is availableChris Driver2009-03-05T12:54:21Z2009-03-05T12:54:21ZI agree with DonkeyMaster, it's the database he's interested in. So he really needs to be checking that, not just that the server responds to a PINGhttp://stackoverflow.com/questions/532662/how-to-identify-performance-and-concurrency-issues-on-an-asp-net-iis-sql-serv/532757#532757Comment by Chris Driver on How to identify performance and concurrency issues on an ASP.NET / IIS / SQL Server websiteChris Driver2009-02-10T15:23:31Z2009-02-10T15:23:31ZCheers Marcus, very helpful.http://stackoverflow.com/questions/532662/how-to-identify-performance-and-concurrency-issues-on-an-asp-net-iis-sql-serv/532716#532716Comment by Chris Driver on How to identify performance and concurrency issues on an ASP.NET / IIS / SQL Server websiteChris Driver2009-02-10T15:14:27Z2009-02-10T15:14:27ZGood suggestion, many thanks.http://stackoverflow.com/questions/532662/how-to-identify-performance-and-concurrency-issues-on-an-asp-net-iis-sql-serv/532686#532686Comment by Chris Driver on How to identify performance and concurrency issues on an ASP.NET / IIS / SQL Server websiteChris Driver2009-02-10T15:13:42Z2009-02-10T15:13:42ZI will look into WebLoad. Thanks.http://stackoverflow.com/questions/532662/how-to-identify-performance-and-concurrency-issues-on-an-asp-net-iis-sql-serv/532695#532695Comment by Chris Driver on How to identify performance and concurrency issues on an ASP.NET / IIS / SQL Server websiteChris Driver2009-02-10T15:12:45Z2009-02-10T15:12:45ZI believe that SQL Trace is part of SQL Server Profiler which (rather annoyingly) is not included with SQL Server 2005 Workgroup Edition. Aside from that, a good suggestion :)http://stackoverflow.com/questions/81360/how-to-retrieve-stored-procedure-return-values-from-a-tableadapter/156145#156145Comment by Chris Driver on How to retrieve stored procedure return values from a TableAdapterChris Driver2008-10-02T09:44:48Z2008-10-02T09:44:48ZThanks for the suggestion, but unfortunately SETting the ROWCOUNT doesn't appear to solve my issue.http://stackoverflow.com/questions/121579/im-getting-a-strange-unhandled-exception-from-my-asp-net-application-validatio/121775#121775Comment by Chris Driver on I'm getting a strange unhandled exception from my asp.net application - Validation of viewstate MAC failedChris Driver2008-09-23T16:10:46Z2008-09-23T16:10:46ZGood tip Darren, I'll remember that when I eventually get to code in asp.net 3.5 :)