User Nathan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T21:06:18Z http://stackoverflow.com/feeds/user/24954 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1853768/how-to-detect-svn-file-folder-renames-or-moves-with-sharpsvn 0 How to Detect svn file/folder renames or moves with SharpSvn? Nathan 2009-12-05T22:59:22Z 2009-12-06T23:57:27Z <p>How can I to detect subversion file/folder renames or moves when doing comparisons between revisions? How can I distinguish them from a "normal" add and delete?</p> http://stackoverflow.com/questions/1256385/asp-net-mvc-1-0-custom-modelbinders-how-to-handle-form-posts-and-parameter-name 0 Asp.Net MVC 1.0 custom Modelbinders - how to handle form posts and parameter names? Nathan 2009-08-10T18:16:34Z 2009-11-15T03:00:03Z <p>I have a custom model binding:</p> <pre><code>using System.Web.Mvc; using MyProject.Model; namespace MyProject.ModelBinders { public class VersionedIdModelBinder : IModelBinder { public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { //Not completely happy with this. What if the parameter was named something besides id? return VersionedId.Parse(bindingContext.ValueProvider["id"].RawValue.ToString()); } } } </code></pre> <p>which works as long as the id is passed in the url (either explicitly or via a route definition.) However, if the Id is passed in a form as a hidden input field:</p> <pre><code>&lt;input type="hidden" id="id" name="id" value="12a" /&gt; </code></pre> <p>Then ValueProvider["id"].RawValue is a string array, so the code below doesn't behave as expected.</p> <p>In the controller code, I expect to simply be able to do:</p> <pre><code>public ActionResult MyAction(VersionedId id) { ... } </code></pre> <p>Two questions:</p> <ol> <li>I am surprised that passing the id via form post causes the RawValue to be a string array. Is this the expected behavior, and is the "standard" way to handle this to check the type of the RawValue? I need to be able to handle both form posts and url routes.</li> <li>Is it normal to check for the Name of the parameter in the model binder, or is there another way to do this whereby the controller action can use whatever parameter name it likes?</li> </ol> http://stackoverflow.com/questions/1704554/any-way-to-override-net-windows-service-name-without-recompiling 0 Any way to override .NET Windows Service Name without recompiling? Nathan 2009-11-09T23:03:25Z 2009-11-09T23:47:31Z <p>I have a windows service executable that I know is written in .NET which I need to install under a different service name to avoid a conflict. The install doesn't provide anyway to specify a service name. If I only have access to the binary, is there anyway to override the service name when I install it with installutil?</p> http://stackoverflow.com/questions/1627325/sanitize-search-string-for-dynamic-sql-queries/1627401#1627401 3 Answer by Nathan for Sanitize search string for Dynamic SQL Queries Nathan 2009-10-26T21:19:32Z 2009-10-26T22:28:07Z <p>You don't need to use stored procedures to be safe. (As a matter a fact, stored procedures don't necessarily guarantee safety against injection attacks if the stored procedures themselves construct dynamic queries.) And manual escaping is difficult to do 100% safely, and not recommended.</p> <p>Instead, use parameterized queries, which nearly all databases support.</p> http://stackoverflow.com/questions/1521198/implications-of-machine-aspnet-user-as-administrator-role 1 Implications of Machine\ASPNET user as administrator role? Nathan 2009-10-05T16:54:37Z 2009-10-06T10:10:03Z <p>Hi,</p> <p>We are receiving an application from a third party that will eventually be installed in our production environment.</p> <p>As part of the setup, they want us to make Machine\ASPNET an Administrator account.</p> <p>This seems to me like bad practice, but I need specific reasons if I am going to push back on this.</p> <p>What are the implications of running Machine\ASPNET as an administrator?</p> <p>Additional details:</p> <ul> <li>This will be deployed under IIS6 on Windows Server 2003</li> <li>This is a three tier application. I believe they want the Machine\ASPNET user as administrator on the middle tier, where the WCF services will be deployed.</li> </ul> http://stackoverflow.com/questions/1500008/net-scheduler-that-runs-assemblies/1500069#1500069 1 Answer by Nathan for .NET scheduler that runs assemblies? Nathan 2009-09-30T19:05:26Z 2009-09-30T19:05:26Z <p>Take a look at Quartz.NET (<a href="http://quartznet.sourceforge.net/" rel="nofollow">http://quartznet.sourceforge.net/</a>). It may serve your needs.</p> http://stackoverflow.com/questions/1337980/sql-server-check-nocheck-difference-in-generated-scripts 1 SQL Server Check/NoCheck difference in generated scripts Nathan 2009-08-26T22:49:26Z 2009-09-01T13:54:19Z <p>I am trying to sync up the schemas between to different databases. Basically, I ran tasks->Generate Scripts with SQL Server Management Studio (2005) on both databases and am comparing the output with a diff tool.</p> <p>For some reason, one script adds the constraint <strong>WITH CHECK</strong> and one <strong>WITH NO CHECK</strong>, followed by both constraints being re-enabled.</p> <p>I for the first database I get:</p> <pre><code>ALTER TABLE [dbo].[Profile] WITH CHECK ADD CONSTRAINT [FK_Profile_OrganizationID] FOREIGN KEY([OrganizationID]) REFERENCES [dbo].[Organization] ([OrganizationID]) GO ALTER TABLE [dbo].[Profile] CHECK CONSTRAINT [FK_Profile_OrganizationID] GO </code></pre> <p>The second database generates as </p> <pre><code>ALTER TABLE [dbo].[Profile] WITH NOCHECK ADD CONSTRAINT [FK_Profile_OrganizationID] FOREIGN KEY([OrganizationID]) REFERENCES [dbo].[Organization] ([OrganizationID]) GO ALTER TABLE [dbo].[Profile] CHECK CONSTRAINT [FK_Profile_OrganizationID] GO </code></pre> <p>So I have two questions:</p> <ol> <li><p>Is the end result the same? (<strong>Edit:</strong> It seems that a lot of people are picking up on only the first statement of the two scripts. I am interested in the end result of the entirety of both scripts.)</p></li> <li><p>If the end result is the same, why does Management Studio generate them differently for different databases?</p></li> </ol> http://stackoverflow.com/questions/1098554/sql-server-how-to-make-server-check-all-its-check-constraints/1341830#1341830 1 Answer by Nathan for SQL Server: How to make server check all its check constraints? Nathan 2009-08-27T15:28:57Z 2009-08-27T15:28:57Z <p><strong>DBCC CHECKCONSTRAINTS WITH ALL_CONSTRAINTS</strong> won't actually make your constraints trusted. It will report any rows that violate the constraints. To actually make all of your constraints trusted, you can do the following:</p> <pre><code>DBCC CHECKCONSTRAINTS WITH ALL_CONSTRAINTS --This reports any data that violates constraints. --This reports all constraints that are not trusted SELECT OBJECT_NAME(parent_object_id) AS table_name, name FROM sys.check_constraints WHERE is_not_trusted = 1 UNION ALL SELECT OBJECT_NAME(parent_object_id) AS table_name, name FROM sys.foreign_keys WHERE is_not_trusted = 1 ORDER BY table_name --This makes all constraints trusted - but first anything reported by DBCC CHECKCONSTRAINTS WITH ALL_CONSTRAINTS --must be fixed. exec sp_msforeachtable 'ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all' </code></pre> <p>Note that on the last statement, the WITH CHECK CHECK is not a typo. The "WITH CHECK" will check all table data to ensure there are not violations, and will make the constraint trusted, while the check will make sure the constraints is enabled.</p> <p>See also: <a href="http://sqlblog.com/blogs/tibor%5Fkaraszi/archive/2008/01/12/non-trusted-constraints.aspx" rel="nofollow">http://sqlblog.com/blogs/tibor_karaszi/archive/2008/01/12/non-trusted-constraints.aspx</a></p> <p><a href="http://sqlblog.com/blogs/tibor%5Fkaraszi/archive/2008/01/12/non-trusted-constraints-and-performance.aspx" rel="nofollow">http://sqlblog.com/blogs/tibor_karaszi/archive/2008/01/12/non-trusted-constraints-and-performance.aspx</a></p> http://stackoverflow.com/questions/534415/sspi-errors-for-sql-server-authentication 0 SSPI Errors for SQL Server Authentication?! Nathan 2009-02-10T22:02:03Z 2009-08-18T20:00:02Z <p>We have several old ASP and PHP web applications which use SQL Server Authentication. Periodically, all the applications lose the ability to connect to our SQL Server 2000 database server, getting access denied.</p> <p>Corresponding to roughly the same times, we are getting</p> <pre><code>1115 Cannot generate SSPI Context SQLSTATE HY000 </code></pre> <p>errors on the SQLServer 2000 server.</p> <p>And here's the weird part - rebooting the <strong>web</strong> server fixes the problem. Rebooting the database server has no effect.</p> <p>This makes no sense to me - I didn't think SSPI was in any way involved with SQL Server Authentication.</p> <p>Any ideas?</p> <p><strong>Edit:</strong></p> <p>Some additional details:</p> <p>The web server is in the DMZ. The hosts file on the web server has an entry for the database server (and the ip address is correct), so the web server (theoretically at least) shouldn't even be going to DNS to connect to the database server.</p> <p>It does not appear to be a firewall issue.</p> http://stackoverflow.com/questions/1230212/asp-net-webservice-corrupts-uploaded-file/1230307#1230307 1 Answer by Nathan for ASP.NET Webservice corrupts uploaded file Nathan 2009-08-04T22:55:37Z 2009-08-04T22:55:37Z <p>Are your pdf files larger than 4MB? That is the default maximum request length for ASP.NET. You can override that setting in your web.config with:</p> <pre><code>&lt;httpRuntime maxRequestLength="8192" /&gt; </code></pre> <p>However, be aware that this will increase your memory usage on your server - by default asp.net will cache the entire request in memory.</p> <p>Also, I'm not entirely certain this is the problem in your case, since normally this exceeding the request length would cause an exception to be thrown - not silent file corruption.</p> <p>see also <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626" rel="nofollow">http://support.microsoft.com/default.aspx?scid=kb;EN-US;295626</a></p> http://stackoverflow.com/questions/1201367/cannot-start-iis-on-my-pc-com-system-application-access-is-denied/1230254#1230254 0 Answer by Nathan for Cannot Start IIS on my PC: COM+ System Application: Access is Denied Nathan 2009-08-04T22:36:56Z 2009-08-04T22:36:56Z <p>Have you seen this link?</p> <p><a href="http://support.microsoft.com/kb/909444" rel="nofollow">http://support.microsoft.com/kb/909444</a></p> <p>I'm having the same problem, and it appears it <em>might</em> have fixed it for me - though I did have to reboot afterwards which isn't explicitly in the kb instructions. </p> <p>(Though it's hard to tell right now if this actually fixed it, because sometimes for me the problem would disappear on its own after a reboot (which doesn't make a lot of sense given the steps in the kb)).</p> http://stackoverflow.com/questions/1224541/fluent-nhibernate-mapping-for-class-with-calculated-properties/1224624#1224624 2 Answer by Nathan for (Fluent) NHibernate mapping for class with calculated properties Nathan 2009-08-03T21:03:06Z 2009-08-03T21:03:06Z <p>The real question to me is why is fluent NHibernate trying to map the Age property at all? It's not even in your mapping. I've only used earlier versions of fluent NHibernate, prior to the whole auto-mapping functionality, and never had this problem. </p> <p>I suspect that either your Conventions are causing it to try to map Age, or you somehow have auto-mapping enabled which is conflicting with your manual mapping.</p> <p>Also be aware that Fluent NHibernate somewhat recently changed conventions. So I would take a look at the following documentation:</p> <p><a href="http://wiki.fluentnhibernate.org/show/AutoMapping" rel="nofollow">http://wiki.fluentnhibernate.org/show/Conventions</a></p> <p><a href="http://wiki.fluentnhibernate.org/show/ConvertingToNewStyleConventions" rel="nofollow">http://wiki.fluentnhibernate.org/show/ConvertingToNewStyleConventions</a></p> <p><a href="http://wiki.fluentnhibernate.org/show/AutoMapping" rel="nofollow">http://wiki.fluentnhibernate.org/show/AutoMapping</a></p> http://stackoverflow.com/questions/1223710/we-have-to-use-c-for-performance-reasons/1223757#1223757 3 Answer by Nathan for We have to use C "for performance reasons" Nathan 2009-08-03T18:05:20Z 2009-08-03T19:55:37Z <p>I'm not really a systems/embedded programmer, but it seems to me that embedded programs generally need deterministic performance - that immediately rules out many garbage collected languages, because they are <em>not</em> deterministic in general. However, there has been work on deterministic garbage collection (for example, Metronome for Java: <a href="http://www.ibm.com/developerworks/java/library/j-rtj4/index.html" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-rtj4/index.html</a>)</p> <p>The issue is one of constraints - do the languages/runtimes meet the deterministic, memory usage, etc requirements.</p> http://stackoverflow.com/questions/1196531/how-to-debug-net-windows-service-onstart-method 3 How to debug .NET Windows Service OnStart method? Nathan 2009-07-28T20:27:51Z 2009-07-29T07:41:49Z <p>I have code written in .net that only fails when installed as a windows service. The failure doesn't allow the service to even start. I can't figure out how I can step into the OnStart method.</p> <p><a href="http://msdn.microsoft.com/en-us/library/7a50syb3%28VS.80%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/7a50syb3%28VS.80%29.aspx</a> gives a tantalizing clue:</p> <blockquote> <p>Attaching to the service's process allows you to debug most but not all of the service's code; for example, because the service has already been started, you cannot debug the code in the service's OnStart method this way, or the code in the Main method that is used to load the service. <strong>One way to work around this is to create a temporary second service in your service application that exists only to aid in debugging. You can install both services, and then start this "dummy" service to load the service process.</strong> Once the temporary service has started the process, you can then use the Debug menu in Visual Studio to attach to the service process. </p> </blockquote> <p>However, I'm not clear how it is exactly that you are supposed to create the dummy service to load the service process.</p> http://stackoverflow.com/questions/1173533/avi-files-play-locally-using-wmp-but-not-off-my-website-wmp-activex/1174085#1174085 0 Answer by Nathan for AVI files play locally using WMP but not off my website WMP ActiveX Nathan 2009-07-23T19:52:44Z 2009-07-23T19:52:44Z <p>I would check the mime type settings on your web server. I didn't see, however, which webserver you are using? (e.g. Apache, IIS, etc)</p> http://stackoverflow.com/questions/296834/fluent-nhibernate-how-to-map-a-subclass-one-to-one 5 Fluent NHibernate - how to map a subclass one-to-one? Nathan 2008-11-17T20:39:48Z 2009-07-23T12:39:17Z <p>Suppose I have three classes. It is valid to instantiate A, but there are also special cases B and D which subclass A, adding additional information.</p> <p>How would I do the mapping files for this in (fluent) NHibernate?</p> <pre><code>public class A { public int ID { get; set;} public string CommonProperty1 { get; set; } public string CommonProperty2 { get; set; } } public class B : A { public string BSpecificProperty1 { get; set; } //not null public string BSpecificProperty2 { get; set; } //not null } public class D : A { public string DSpecificProperty { get; set; } //not null } </code></pre> <p>I tried the following, but it doesn't work at all:</p> <pre><code>public class AMap : ClassMap&lt;A&gt; { public AMap() { Id(x =&gt; x.ID); Map(x =&gt; x.CommonProperty1); Map(x =&gt; x.CommonProperty2); } } public class BMap : ClassMap&lt;B&gt; { public BMap() { References(x =&gt; x.ID); Map(x =&gt; x.BSpecificProperty1) .CanNotBeNull(); Map(x =&gt; x.BSpecificProperty2) .CanNotBeNull(); } } public class DMap : ClassMap&lt;D&gt; { public DMap() { References(x =&gt; x.ID); Map(x =&gt; x.DSpecificProperty) .CanNotBeNull(); } } </code></pre> http://stackoverflow.com/questions/1075540/linq-to-sql-how-to-do-where-column-in-list-of-values 3 Linq to SQL how to do "where [column] in (list of values)" Nathan 2009-07-02T16:59:58Z 2009-07-02T17:18:25Z <p>I have a function where I get a list of ids, and I need to return the a list matching a description that is associated with the id. E.g.:</p> <pre><code>public class CodeData { string CodeId {get; set;} string Description {get; set;} } public List&lt;CodeData&gt; GetCodeDescriptionList(List&lt;string&gt; codeIDs) //Given the list of institution codes, return a list of CodeData //having the given CodeIds } </code></pre> <p>So if I were creating the sql for this myself, I would simply do something like the following (where the in clause contains all the values in the codeIds argument):</p> <pre><code>Select CodeId, Description FROM CodeTable WHERE CodeId IN ('1a','2b','3') </code></pre> <p>In Linq to Sql I can't seem to find the equivalent of the "IN" clause. The best I've found so far (which doesn't work) is:</p> <pre><code> var foo = from codeData in channel.AsQueryable&lt;CodeData&gt;() where codeData.CodeId == "1" || codeData.CodeId == "2" select codeData; </code></pre> <p>The problem being, that I can't dynamically generate a list of "OR" clauses for linq to sql, because they are set at compile time.</p> <p>How does one accomplish a where clause that checks a column is in a dynamic list of values using Linq to Sql? </p> http://stackoverflow.com/questions/436715/what-is-nv32ts-and-its-sql-injection-attack-trying-to-do 4 What is NV32ts and its SQL Injection Attack trying to do? Nathan 2009-01-12T19:39:19Z 2009-07-01T16:42:31Z <p>I have been getting a number of attacks on my website lately, with a User-Agent of NV32ts.</p> <p>They all are some variation of the following injection attacks against a querystring variable (where 99999 represents a valid querystring value, the attack is appended to the value):</p> <p>(For convenience I have urldecoded the following attacks)</p> <pre><code>999999 And char(124)+(Select Cast(Count(1) as varchar(8000))+char(124) From [sysobjects] Where 1=1)&gt;0 </code></pre> <p>or</p> <pre><code>999999' And char(124)+(Select Cast(Count(1) as varchar(8000))+char(124) From [sysobjects] Where 1=1)&gt;0 and ''=' </code></pre> <p>or </p> <pre><code>999999' And char(124)+(Select Cast(Count(1) as varchar(8000))+char(124) From [sysobjects] Where 1=1)&gt;0 and ''=' </code></pre> <p>I believe that sysobjects has something to do with the Sql Server master database, but I can't figure out what they are trying to accomplish.</p> <p><strong>Edit:</strong> I have now seen these same things with two different user agents:</p> <ul> <li>NV32ts</li> <li>Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; <strong>WWTClient2</strong>)</li> </ul> http://stackoverflow.com/questions/967047/how-to-perform-a-binary-search-on-ilistt/967180#967180 0 Answer by Nathan for How to perform a binary search on IList<T>? Nathan 2009-06-08T21:43:47Z 2009-06-08T21:43:47Z <p>If you can use .NET 3.5, you can use the build in Linq extension methods:</p> <pre><code>using System.Linq; IList&lt;string&gt; ls = ...; ls.OrderBy(x =&gt; x).ToList().BinarySearch(...) </code></pre> <p>However, this is really just a slightly different way of going about Andrew Hare's solution.</p> http://stackoverflow.com/questions/923503/how-to-create-options-dialog-with-vbscript 0 How to create options dialog with VbScript? Nathan 2009-05-28T22:25:17Z 2009-06-04T01:40:05Z <p>I have a third party application that invokes a vsbscript file for certain operations. I would like to put up a user prompt with a choice of options, either a drop down list or checkbox or some such. However, all I can find is the input box option.</p> <p>I don't think HTAs are an option in my case (unless there is a way to call them from a .vbs file?)</p> <p>My other thought was some sort of ActiveX control, but I can't locate a built-in one that would be available by default on WindowsXP/Vista.</p> <p>Anybody have any ideas on how I could accomplish this?</p> http://stackoverflow.com/questions/841504/how-to-grant-permissions-to-sqlserver-2005-system-stored-procs-e-g-spstartjob 1 How to grant permissions to SqlServer 2005 system stored procs (e.g. sp_start_job) Nathan 2009-05-08T19:51:35Z 2009-05-25T15:11:59Z <p>I want to be able to invoke an SSIS package at will from a web application. I've found that I can do this successfully with sp_start_job when running on my local machine. However, when I publish to our test site, I get:</p> <pre><code>The EXECUTE permission was denied on the object 'sp_start_job', database 'msdb', schema dbo' </code></pre> <p>So I tried this </p> <pre><code>USE msdb CREATE USER [TheUser] FOR LOGIN [TheLogin] GO GRANT EXECUTE ON sp_start_job TO [TheUser] GO </code></pre> <p>However, after running this, I am still getting the permission denied error. Is there something special you have to do to grant permissions to system stored procs?</p> <p>Edit: don't know if it makes a difference or not, but the Webserver is in a DMZ, so I am using sql server authentication to communicate between webserver and db server.</p> http://stackoverflow.com/questions/835093/sql-server-2005-ssis-agent-query-status-of-a-job 0 Sql Server 2005 SSIS/Agent - Query status of a job Nathan 2009-05-07T14:46:13Z 2009-05-12T02:32:40Z <p>Is there a way to query the current status (executing, idle, etc) and the last result (successfull, failed, etc), and the last run time for a specific job name? The end result I am looking for is being able to display this information in an internal web application for various SSIS packages.</p> http://stackoverflow.com/questions/481954/sql-server-db-restored-login-failed-error/841615#841615 0 Answer by Nathan for SQL server DB restored.Login failed error Nathan 2009-05-08T20:20:34Z 2009-05-08T20:20:34Z <p>First check to see if you have orphaned users with the following stored procedure:</p> <pre><code>exec sp_change_users_login @Action='Report' </code></pre> <p>Then you can remap the users to the login with:</p> <pre><code>exec sp_change_users_login @Action='update_one', @UserNamePattern='UserName', @LoginName='LoginName' </code></pre> <p>(substitute 'UserName' and 'LoginName' with the appropriate values for your setup).</p> http://stackoverflow.com/questions/841396/what-is-a-quick-way-to-force-crlf-in-c-net/841410#841410 2 Answer by Nathan for What is a quick way to force CRLF in C# / .NET? Nathan 2009-05-08T19:28:13Z 2009-05-08T19:28:13Z <pre><code>string nonNormalized = "\r\n\n\r"; string normalized = nonNormalized.Replace("\r", "\n").Replace("\n", "\r\n"); </code></pre> http://stackoverflow.com/questions/841376/unable-to-start-debugging-on-the-web-server-visual-studio-2008/841404#841404 0 Answer by Nathan for Unable to start debugging on the Web Server. Visual Studio 2008 Nathan 2009-05-08T19:26:06Z 2009-05-08T19:26:06Z <p>Is your pc and the webserver on the same Windows domain? If not, or there is a DMZ between your pc and the web server you could experience problems unless you've explicitly setup trust between the machines.</p> http://stackoverflow.com/questions/835093/sql-server-2005-ssis-agent-query-status-of-a-job/835609#835609 1 Answer by Nathan for Sql Server 2005 SSIS/Agent - Query status of a job Nathan 2009-05-07T16:10:09Z 2009-05-07T16:10:09Z <pre><code>exec msdb.dbo.sp_help_job @job_name = 'TheJobName' </code></pre> <p>gives the information I want. So then I can just use a SqlDataReader to get the information. Note that this stored procedure returns multiple result sets.</p> <p>The micrsoft documentation on this store procedure is <a href="http://msdn.microsoft.com/en-us/library/ms186722%28SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms186722(SQL.90).aspx</a></p> http://stackoverflow.com/questions/553063/nhibernate-manytomany-and-eager-loading-strange-resultset-for-setfetchmode-combi/619894#619894 0 Answer by Nathan for NHibernate ManyToMany and eager loading: strange resultset for SetFetchmode combined with SetResultTransformer and SetMaxResult Nathan 2009-03-06T18:21:25Z 2009-03-06T18:21:25Z <p>I have the same problem. An adaptation of the following using detached criteria and subqueries looks like it might be promising. I'm going to do a more thorough trial of it when I get some time.</p> <p><a href="http://blogs.taiga.nl/martijn/2008/11/20/nhibernate-criteria-queries-across-multiple-many-many-associations/" rel="nofollow">http://blogs.taiga.nl/martijn/2008/11/20/nhibernate-criteria-queries-across-multiple-many-many-associations/</a></p> http://stackoverflow.com/questions/375178/asp-net-cache-problem-when-logout/603573#603573 0 Answer by Nathan for ASP.net: Cache problem when logout Nathan 2009-03-02T19:13:28Z 2009-03-02T19:13:28Z <p>Add this to global.asax and it will set the no-cache headers for <em>all</em> pages in the web application. Be sure that disabling caching is really what you want to do however - because caching is a performance benefit.</p> <p>You can of course, also apply the same Response.Cache commands to pages individually.</p> <p>This works in FireFox 3, IE7, and somewhat in Opera 9.6. (In Opera, it will work if you <em>don't</em> to any post requests. If you do, the page will still be accessible from the back button the first time, but not afterwards.)</p> <pre><code> protected void Application_PreSendRequestHeaders(object sender, EventArgs e) { if (!Request.Path.Contains("/Content/")) //We WANT images, css, javascripts to be cached! { //Otherwise, all of our pages contain sensitive information, and we don't want them cached. Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches); //for Opera. May only work on https sites Response.Cache.SetNoStore(); } } </code></pre> http://stackoverflow.com/questions/561912/how-to-export-binary-data-in-sqlserver-to-file-using-dts 0 How to Export binary data in SqlServer to file using DTS Nathan 2009-02-18T16:50:06Z 2009-02-20T17:08:29Z <p>I have an image column in a sql server 2000 table that is used to store the binary of a pdf file.</p> <p>I need to export the contents of each row in the column to an actual physical file using SqlServer 2000 DTS.</p> <p>I found the following method for vb at <a href="http://www.freevbcode.com/ShowCode.asp?ID=1654&amp;NoBox=True" rel="nofollow">http://www.freevbcode.com/ShowCode.asp?ID=1654&amp;NoBox=True</a></p> <pre><code>Set rs = conn.execute("select BinaryData from dbo.theTable") FileHandle = FreeFile Open ("AFile") For Binary As #FileHandle ByteLength = LenB(rs("BinaryData")) ByteContent = rs("BinaryData").GetChunk(ByteLength) Put #FileHandle, ,ByteContent Close #FileHandle </code></pre> <p>Unfortunately, the DTS script task is VBSCript, not VB, and it throws up on the <strong>AS</strong> keyword in the third line.</p> <p>Any other ideas?</p> http://stackoverflow.com/questions/463499/how-to-create-composite-unique-constraint-in-fluentnhibernate 2 How to create composite UNIQUE constraint in FluentNHibernate? Nathan 2009-01-20T23:09:59Z 2009-02-18T16:21:47Z <p>I know that I can Map(x => x.GroupName).WithUniqueConstraint() for a single property.</p> <p>But how do create a composite unique constraint in fluent nHibernate (where the unique constraint operates on the combination of two columns)?</p> http://stackoverflow.com/questions/1791511/run-exe-from-client-side Comment by Nathan on Run EXE FROM CLIENT SIDE Nathan 2009-11-24T17:18:14Z 2009-11-24T17:18:14Z For clarification, do you mean that you want the exe to run <i>on the server</i> in response to an action initiated on the website? This is possible. Do you mean that you want the exe to automatically be invoked on the <i>client</i> machine? This is not possible (unless there is a security hole in the browser) due to security reasons stated in answers. http://stackoverflow.com/questions/1785772/completely-disable-djangos-csrf-protection-in-svn-trunk Comment by Nathan on Completely disable Django's CSRF protection in SVN Trunk Nathan 2009-11-23T20:41:35Z 2009-11-23T20:41:35Z I'm not familiar with Django, but am familiar with CSRF - out of curiosity, why do you want to disable CSRF protection? In general, preventing CSRF attacks is a <i>good</i> thing. http://stackoverflow.com/questions/1777674/values-on-second-form-are-not-receiveing-in-php-page Comment by Nathan on values on second form are not receiveing in php page Nathan 2009-11-22T03:00:33Z 2009-11-22T03:00:33Z This question is way too vague to receive any answers. Suggest you review <a href="http://www.catb.org/~esr/faqs/smart-questions.html" rel="nofollow">catb.org/~esr/faqs/&hellip;</a> http://stackoverflow.com/questions/1704554/any-way-to-override-net-windows-service-name-without-recompiling/1704720#1704720 Comment by Nathan on Any way to override .NET Windows Service Name without recompiling? Nathan 2009-11-10T15:56:15Z 2009-11-10T15:56:15Z My problem was that there apparently <i>must</i> be a space between the equal sign and the binPath value, e.g. sc create ahSchedulerService binPath= &quot;MyService.exe&quot;, not sc create ahSchedulerService binPath=&quot;MyService.exe&quot;. http://stackoverflow.com/questions/1704554/any-way-to-override-net-windows-service-name-without-recompiling/1704720#1704720 Comment by Nathan on Any way to override .NET Windows Service Name without recompiling? Nathan 2009-11-10T15:42:17Z 2009-11-10T15:42:17Z This looks like exactly what I want -- however I can't get it to work. I just keep getting a &quot;usage&quot; message. http://stackoverflow.com/questions/1704554/any-way-to-override-net-windows-service-name-without-recompiling/1704600#1704600 Comment by Nathan on Any way to override .NET Windows Service Name without recompiling? Nathan 2009-11-09T23:20:20Z 2009-11-09T23:20:20Z I don't see how that helps me if I only have access to the binary? http://stackoverflow.com/questions/1627325/sanitize-search-string-for-dynamic-sql-queries/1627338#1627338 Comment by Nathan on Sanitize search string for Dynamic SQL Queries Nathan 2009-10-26T22:10:01Z 2009-10-26T22:10:01Z Ah. Sorry I misread that. Unfortunately the stupid new stackoverflow rules won't let me undo the down vote unless you edit the answer. http://stackoverflow.com/questions/1627325/sanitize-search-string-for-dynamic-sql-queries/1627338#1627338 Comment by Nathan on Sanitize search string for Dynamic SQL Queries Nathan 2009-10-26T21:20:31Z 2009-10-26T21:20:31Z Adding semicolons doesn't help. I can get around those simply with a sql comment. http://stackoverflow.com/questions/1562041/how-does-windows-linux-or-unix-takes-care-of-halting-problem/1562081#1562081 Comment by Nathan on How does Windows Linux or Unix takes care of halting problem? Nathan 2009-10-15T16:59:48Z 2009-10-15T16:59:48Z The question was not asked as a joke question, and it does a disservice to the asker when the a joke answer is not clearly labeled as a joke answer. Especially when there are other real answers below. http://stackoverflow.com/questions/1562041/how-does-windows-linux-or-unix-takes-care-of-halting-problem/1562081#1562081 Comment by Nathan on How does Windows Linux or Unix takes care of halting problem? Nathan 2009-10-13T18:38:39Z 2009-10-13T18:38:39Z Seems to me this is a sarcastic answer which doesn't represent reality. http://stackoverflow.com/questions/1500087/i-have-a-simple-database-of-content-should-i-hash-the-id-so-that-people-dont/1500112#1500112 Comment by Nathan on I have a simple database of content. Should I hash the "id" so that people don't look over it in the URL? Nathan 2009-09-30T19:24:50Z 2009-09-30T19:24:50Z Additional comment: hashes are completely predictable with a known text, still leaving you open to dictionary style attacks - applying a random salt to the hash can help - though depending on how you do it, you can still potentially leave yourself open to replay attacks. All this to underscore that you absolutely <i>must</i> implement a strong role based security mechanism. http://stackoverflow.com/questions/1500008/net-scheduler-that-runs-assemblies/1500056#1500056 Comment by Nathan on .NET scheduler that runs assemblies? Nathan 2009-09-30T19:09:36Z 2009-09-30T19:09:36Z +1 Posted duplicate answer before I saw yours. http://stackoverflow.com/questions/1337980/sql-server-check-nocheck-difference-in-generated-scripts/1338565#1338565 Comment by Nathan on SQL Server Check/NoCheck difference in generated scripts Nathan 2009-08-27T15:31:29Z 2009-08-27T15:31:29Z Found this article: <a href="http://sqlblog.com/blogs/tibor_karaszi/archive/2008/01/12/non-trusted-constraints.aspx" rel="nofollow">sqlblog.com/blogs/tibor_karaszi/&hellip;</a> So it appears that the second statement in the batch only ensures that the constraint is enabled, it doesn't actually check the existing data. To actually check the existing data, I need to ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all http://stackoverflow.com/questions/1337980/sql-server-check-nocheck-difference-in-generated-scripts/1338565#1338565 Comment by Nathan on SQL Server Check/NoCheck difference in generated scripts Nathan 2009-08-27T14:35:36Z 2009-08-27T14:35:36Z As for the second part of your answer, you are indeed correct that is_not_trusted is set on one of the databases, and not on the other. What affect does this have? http://stackoverflow.com/questions/1337980/sql-server-check-nocheck-difference-in-generated-scripts/1338474#1338474 Comment by Nathan on SQL Server Check/NoCheck difference in generated scripts Nathan 2009-08-27T14:24:24Z 2009-08-27T14:24:24Z Actually, at this particular point in time, both databases are on the same server - so there's definitely not any Sql Server version differences