User Ole Lynge - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:51:44Z http://stackoverflow.com/feeds/user/41094 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1492568/optimize-multiple-joins-with-table-functions 0 Optimize multiple joins with table functions Ole Lynge 2009-09-29T13:30:18Z 2009-11-15T06:00:03Z <p>I would like to join several times with the same table function for different input variables in the same query. But this turns in my case out to be much slower than using table variables and selecting from the table functions separately.</p> <p>How can I avoid table variables and still have a fast query?</p> <p>For example, we have a SQL query like</p> <pre> SELECT P.ProjectName, A.Number, B.Number FROM Project AS P LEFT JOIN dbo.fn_ProjectNumber(@dateA) AS A ON P.ProjectID = A.ProjectID LEFT JOIN dbo.fn_ProjectNumber(@dateB) AS B ON P.ProjectID = B.ProjectID </pre> <p>but it is much slower than selecting from the functions separately into variables and then joining later, for example:</p> <pre> INSERT INTO @tempA SELECT P.ProjectID, A.Number FROM Project AS P LEFT JOIN dbo.fn_ProjectNumber(@dateA) AS A ON P.ProjectID = A.ProjectID INSERT INTO @tempB SELECT P.ProjectID, B.Number FROM Project AS P LEFT JOIN dbo.fn_ProjectNumber(@dateB) AS B ON P.ProjectID = B.ProjectID SELECT P.ProjectName, A.Number, B.Number FROM Project AS P LEFT JOIN @tempA AS A ON P.ProjectID = A.ProjectID LEFT JOIN @tempA AS B ON P.ProjectID = B.ProjectID </pre> <p>What could be the cause of this? Is there a way I can get a fast query and avoid table variables?</p> <p><hr /></p> <p>More details:</p> <p>This is only an example similar to what I'm doing, but the function <code>fn_ProjectNumber(@date datetime)</code> would contain something like joins between four tables...</p> <pre> </pre> http://stackoverflow.com/questions/1706306/asp-net-user-browse-selected-restricted-raw-data-from-sql-server 0 ASP.NET user browse selected/restricted raw data from sql-server Ole Lynge 2009-11-10T08:04:25Z 2009-11-10T08:22:51Z <p>In an ASP.NET WebForms application I would like to allow the end-user to browse selected raw data in an sql-server database.</p> <p>However, I would like to restrict access for the user to only view some of the data based on the username.</p> <p>I'm not sure how to do this in a way that is possible for the user to understand, since SQL is not necessarily known to the user.</p> <p>What options do I have here?</p> <p><hr></p> <p>As a basis for this I have considered creating one sql function per table in question. That function should return the data that the user is allowed to view, e.g.,</p> <pre><code>CREATE FUNCTION ufn_RawData_Employee(@username nvarchar(256)) RETURNS TABLE AS ( SELECT * FROM Employee WHERE [@username is allowed to view the given Employee] )</code></pre> <p>In a webpage the end-user might then type an SQL-like statement like</p> <pre><code>SELECT Name, HireDate FROM ((Employee))</code></pre> <p>where <code>(([TableName]))</code> then could be replaced by <code>ufn_RawData_[TableName]([UserName])</code> before calling the database. (For security reasons such calls could then be performed by a sql user whose <em>only</em> permissions are SELECT permissions to these functions.)</p> <p>However, this approach might be too difficult for the end-user. I would like to know if an easier/user-friendlier solution exists for the end-user to browse selected raw data?</p> http://stackoverflow.com/questions/1629795/what-are-possible-reasons-for-potentially-dangerous-request-rawurl 0 What are possible reasons for "Potentially dangerous Request.RawUrl"? Ole Lynge 2009-10-27T10:07:21Z 2009-10-27T10:13:15Z <p>In an asp.net web forms application we get an error message with "A potentially dangerous Request.RawUrl" sometimes, but I cannot find the source of it.</p> <p>What are the possible reasons for this exception?</p> <p><hr /></p> <p>Some details from our case:</p> <pre> Event message: A validation error has occurred Exception type: System.Web.HttpRequestValidationException Exception message: A potentially dangerous Request.RawUrl value was detected from the client (="..._Combin%20%20%20%20%20%2..."). Request URL: https://somesite/somepage.aspx ?_TSM_HiddenField_=ctl00_sm1_HiddenField &_TSM_Combin%20&lt;/div>%20%20%20%20%20%20%20%20&lt;div%20id= Stack trace: at System.Web.HttpRequest.ValidateString(String s, String valueName, String collectionName) at System.Web.HttpRequest.get_RawUrl() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP.somepage_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) </pre> <p>I recognise the part with TSM_HiddenField in the html of the generated page:</p> <pre> &lt;script src="/somepage.aspx?_TSM_HiddenField_=ctl00_sm1_HiddenField&amp;_TSM_CombinedScripts_= %3b%3bAjaxControlToolkit%2c+Version%3d3.5.11119.20050%2c+Culture%3dneutral%2c +PublicKeyToken%3d28f01b0e84b6d53e%3ada-DK%3a8e147239-dd05-47b0-8fb3-f743a139f982 %3ae2e86ef9%3a1df13a87%3a8ccd9c1b%3ac4c00916%3a9ea3f0e2%3a9e8e87e9 %3a4c9865be%3aba594826%3ac76f1358" type="text/javascript">&lt;/script> </pre> <p>... so it seems to be related to AjaxControlToolkit in this case, but how can this exception happen?</p> <p>(It happens when a user is logged in, so I doubt there is some crawler or hack attempt involved...)</p> http://stackoverflow.com/questions/1359666/help-me-come-up-with-a-deployment-strategy/1596679#1596679 0 Answer by Ole Lynge for Help me come up with a deployment strategy Ole Lynge 2009-10-20T19:03:01Z 2009-10-20T19:11:45Z <p>I have tried the following for deployment on a production server, using NAnt to handle the logic:</p> <p>1) Check folder with latest release build for revision number.</p> <p>If a newer revision is available:</p> <p>2) Fetch file with compiled web site and database scripts (see below).</p> <p>3) Take web site offline (add app_offline.htm).</p> <p>4) Apply database scripts (see below).</p> <p>5) Put web site online (delete app_offline.htm).</p> <p><hr /></p> <p>Concerning deploying changes to the database schema, I've been inspired by <a href="http://odetocode.com/blogs/scott/archive/2008/02/03/versioning-databases-branching-and-merging.aspx" rel="nofollow">some posts by K. Scott Allen</a>. A short version of these is:</p> <p>1) Script each new change to the database schema (tables, indexes, seed data), and store each new change in separate files (e.g. <code>schema-001.0001.sql</code>, <code>schema-001.0002.sql</code>, etc.). Keep these files in a separate folder, e.g. <code>sql\schema</code>.</p> <p>2) Script misc. objects (stored procedure, functions, triggers, and views) in separate files in separate folders, e.g. <code>sql\procedures\uspGetProducts.sql</code>, <code>sql\procedures\uspUpdateProduct.sql</code>, <code>sql\functions\</code>, <code>sql\triggers\</code>, <code>sql\views\</code></p> <p>3) When deploying: a) Drop all misc. objects from part 2, b) apply the schema changes from part 1 that have not been applied previuously, c) and finally recreate all misc. objects from part 2.</p> <p>These scripts can be deployed automatically by e.g. Nant scripts on the production server.</p> http://stackoverflow.com/questions/452517/does-this-entity-repository-service-example-fit-into-domain-driven-design 0 Does this Entity Repository Service example fit into Domain-Driven Design? Ole Lynge 2009-01-17T00:13:29Z 2009-10-04T03:41:03Z <p>I would like to know if you find the following pattern meaningful in domain driven design.</p> <p>The domain layer consists of model and repository. The application layer consists of services that handles queries from the user interface, or from controllers in the Model-View-Controller pattern.</p> <p>Details of the structure:</p> <pre> // Assembly Model: public class Phrase { public int PhraseId { get; <b>private</b> set; } public string PhraseText { get; <b>private</b> set; } <b>public Phrase(string phraseText) { this.PhraseText = phraseText; } public void SetId(int phraseId) { this.PhraseId = phraseId; }</b> } // Assembly Repository (references assembly Model): public interface IPhraseRepository { Phrase SavePhrase(<b>Phrase phrase</b>); <b>Phrase GetPhrase(int phraseId);</b> } // Assembly Services (references assemblies Model and Repository): public class PhraseService { private IPhraseRepository _phraseRepository; public PhraseService(IPhraseRepository phraseRepository) { _phraseRepository = phraseRepository; } public Phrase SavePhrase(string phraseText) { Phrase phrase = _phraseRepository.SavePhrase(<b>new Phrase(phraseText)</b>); // doing other things like sending mail, logging, etc. // ... return Phrase; } } </pre> <p>Particularly, would it make sense to move the method into the Phrase entity class? In that case, how would that be called?</p> <p>EDIT:</p> <p>The example above has been modified after the answer from moffdub and the comment from Adeel Ansari. The changes are <b>highlighted</b>.</p> <p>I would like to ask about the added IPhraseRepository.GetPhrase(phraseId) and how you would include that?</p> http://stackoverflow.com/questions/638599/should-i-keep-todo-lists-in-source-control 3 Should I keep todo lists in source control? Ole Lynge 2009-03-12T13:20:33Z 2009-10-02T13:07:48Z <p>I have some trouble figuring out the best way to store my programming todo lists.</p> <p>I consider the following:</p> <ul> <li>one todo list in source control for each project</li> <li>a master todo list (with general tasks) in a personal folder in source control</li> </ul> <p>How do you find that? </p> <p>What would you suggest?</p> <p>Edit:</p> <p>Thanks for the suggestions. I use a bug tracking system (BugTracker.NET) for bugs and for tasks that involve requests from other people such that they can see the status. And I use //TODO in code.</p> <p>I have a lot of additional notes about what to do. Would you recommend also putting that in the bug tracker (especially if it is not possible to put them as //TODO in code)?</p> http://stackoverflow.com/questions/1499076/asp-net-mvc-updating-multiple-partials-view/1499741#1499741 0 Answer by Ole Lynge for ASP.NET MVC - Updating Multiple Partials/View Ole Lynge 2009-09-30T18:04:37Z 2009-09-30T18:04:37Z <p>I would have one ViewModel for the nav page (e.g. <code>CategoryListViewModel</code>) and one for the content page (e.g. <code>ProductListViewModel</code>). Then load the <code>CategoryListViewModel</code> in a base controller:</p> <pre><code> public abstract class BaseController : Controller { var _categoryRepository = new CategoryRepository(); protected BaseController() { ViewData["Categories"] = _categoryRepository.GetCategories(); } } public class ProductsController : BaseController { var _productRepository = new ProductRepository(); public ActionResult Index() { return View(_productRepository.GetProducts()); } } </code></pre> <p>and then in the <code>MasterPage</code> read the categories from the <code>ViewData</code>, and in the content page read the products from the <code>Model</code> on the <code>ViewPage</code>.</p> http://stackoverflow.com/questions/1470725/sql-server-reporting-wrap-output-rows 1 Sql Server Reporting wrap output rows Ole Lynge 2009-09-24T09:52:38Z 2009-09-24T19:58:07Z <p>With Sql Server Reporting Services I would like to generate a report with line details for some orders like this:</p> <pre> Order Details 2315 1x5432 Apple Tree, 9x912 Roses, 1x13 Spade 2316 3x12 Lawn grass </pre> <p>How could I do that most effectively, either with transact sql or by using something built into Reporting Services? (I might end up with <em>many</em> orders so a call for each order line might be expensive...)</p> http://stackoverflow.com/questions/1470725/sql-server-reporting-wrap-output-rows/1473092#1473092 0 Answer by Ole Lynge for Sql Server Reporting wrap output rows Ole Lynge 2009-09-24T17:30:52Z 2009-09-24T19:58:07Z <p>I solved it using <code>COALESCE</code>, inspired by <a href="http://bytes.com/topic/sql-server/answers/712734-how-merge-multi-rows-single-row" rel="nofollow">this thread</a>:</p> <pre><code> CREATE FUNCTION GetDetails(@OrderID varchar(10)) RETURNS varchar(1000) AS BEGIN DECLARE @result varchar(1000), @delimiter char SET @delimiter = ',' SELECT @result = COALESCE(@result + @delimiter, '') + Details FROM ( SELECT ProductNumber , Quantity + 'x' + ProductNumber + ' ' + ProductName AS Details FROM OrderDetail where OrderID = @OrderID ) OrderDetail ORDER BY ProductNumber RETURN @result END </code></pre> <p>and then, as in <a href="http://stackoverflow.com/questions/1470725/sql-server-reporting-wrap-output-rows/1472054#1472054">the answer by Jeremy Stein</a>:</p> <pre><code>SELECT OrderId, GetDetails(OrderId) AS Details FROM Order </code></pre> http://stackoverflow.com/questions/1456496/how-do-i-monitor-and-find-unused-indexes-in-sql-database 1 How do I monitor and find unused indexes in sql database Ole Lynge 2009-09-21T19:53:02Z 2009-09-21T20:00:18Z <p>I would like to monitor index usage for an sql database, in order to find unused indexes and then drop them. How can I monitor index usage most efficiently? And which scripts could be useful?</p> <p>(I'm aware of <a href="http://stackoverflow.com/questions/290773/identifying-unused-objects-in-microsoft-sql-server-2005">this question about identifying unused objects</a>, but this applies only to the current run of the sql server. I would like to monitor index usage over a period of time...)</p> http://stackoverflow.com/questions/1421597/avoid-program-stopped-working-in-c-net 2 Avoid "program stopped working" in C#/.NET Ole Lynge 2009-09-14T13:39:20Z 2009-09-14T14:14:11Z <p>I have a console application written in C#/.NET that I want to run from a script (nant). If an exception occurs in the console application, I would like nant to continue, but in Windows Vista there is a popup that searches for solutions and asks for debug etc.</p> <p>I would like to avoid the popup with "program stopped working" when an exception happens in the console application. How can I control this from C#/.NET?</p> <p>(A similar question addresses <a href="http://stackoverflow.com/questions/312300/catch-the-program-stopped-working-on-vista">the issue for the C language</a>, but I would like a solution for C#/.NET.)</p> <p>(To clarify: I would like the exception to be passed to nant, but <em>without</em> the popup.)</p> http://stackoverflow.com/questions/1254572/cross-browser-link-to-file-on-local-system 1 Cross-browser link to file on local system Ole Lynge 2009-08-10T12:24:35Z 2009-08-10T12:31:14Z <p>I would like to make a link from a web page to a file on a local filesystem and make it work in all browsers (or at least in Internet Explorer, Firefox and Chrome).</p> <p>For example, the following works in Internet Explorer:</p> <pre><code>&lt;a href="\\myserver\doc\info.pdf"&gt;Info here&lt;/a&gt; </code></pre> <p>but not in Firefox and Chrome.</p> <p>Is there a way to make a link that works in all browsers? </p> <p>Or a way to use javascript to detect which browser it is and then display the appropriate link based on the filename?</p> http://stackoverflow.com/questions/851844/what-indexes-optimize-this-query-with-four-joins 1 What indexes optimize this query with four joins? Ole Lynge 2009-05-12T08:58:45Z 2009-07-14T02:16:44Z <p>I have an sql query with inner joins of four tables that takes more than 30 seconds with the current indexes and query structure. I would like to make it as fast as possible; at least faster than 5 seconds.</p> <p>I first thought about denormalizing, but read <a href="http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive/174047#174047">here</a> that generally it should be possible to optimize via correct indexes etc. I cannot figure it out in this case. The current query plan contains an index scan on the smallest table and a 'no join predicate' warning on one of the inner joins.</p> <ul> <li>How can I optimize the speed of the following?</li> <li>Which indexes?</li> <li>Which query structure?</li> <li>Other considerations?</li> </ul> <p>We have the following tables (with number of rows and relevant fields indicated):</p> <pre> TableName Rows Fields ------------------- ----- ---------------------------------------------- ProjectType 150 ProjectTypeID, ProjectTypeName Employee 200 EmployeeID, RefDepartmentID Project 0.2M ProjectID, RefProjectTypeID ProjectTransaction 3.5M Hours, RefEmployeeID, RefProjectID, Date, Type </pre> <p>The query should sum the hours for a given department, date range, etc. Currently I try:</p> <pre><code>SELECT E.RefDepartmentID, SUM(PTran.Hours) FROM Employee E JOIN ProjectTransaction PTran ON E.EmployeeID = PTran.RefEmployeeID JOIN Project P ON PTran.RefProjectID = P.ProjectID JOIN ProjectType PType ON P.RefProjectTypeID = PType.ProjectTypeID WHERE E.RefDepartmentID = @departmentID AND @from &lt;= PTran.Date AND PTran.Date &lt;= @to AND PTran.Type = 0 AND PType.ProjectTypeName NOT IN (N'1', N'2', N'3') GROUP BY E.RefDepartmentID </code></pre> <p><hr /></p> <p>Thanks for all the quick answers. (I already had indexes on 'foreign keys' and criteria in <code>WHERE</code> clause.) I reordered the query to have the two small tables first, then the medium sized, and the big one last. And voila takes around one second:</p> <pre><code>SELECT E.RefDepartmentID, SUM(PTran.Hours) FROM Employee E JOIN ProjectType PType ON E.RefCustomerID = PType.RefCustomerID JOIN Project P ON PType.ProjectTypeID = P.RefProjectTypeID JOIN ProjectTransaction PTran ON E.EmployeeID = PTran.RefEmployeeID AND P.ProjectID = PTran.RefProjectID WHERE E.RefDepartmentID = @departmentID AND @from &lt;= PTran.Date AND PTran.Date &lt;= @to AND PTran.Type = 0 AND PType.ProjectTypeName NOT IN (N'1', N'2', N'3') GROUP BY E.RefDepartmentID </code></pre> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/1104402#1104402 0 Answer by Ole Lynge for Do you have a hobby development project? Ole Lynge 2009-07-09T14:53:10Z 2009-07-09T14:53:10Z <p>Yes, I work on a web site I call <a href="http://hibes.sourceforge.net" rel="nofollow">History Based Estimation</a>.</p> <p>It is a solution for recording elapsed time and estimates for tasks and projects. It uses the accuracy of historical estimates for making simulations that result in statistical probabilities of various completion dates. Read <a href="http://olelynge.blogspot.com/2009/07/history-based-estimation.html" rel="nofollow">more about it here</a>.</p> <p>It is inspired by <a href="http://www.joelonsoftware.com/items/2007/10/26.html" rel="nofollow">Evidence Based Scheduling</a>, and I am just starting to use it for my estimates and schedules for both work and home projects. </p> <p>It is <a href="http://sourceforge.net/projects/hibes/" rel="nofollow">open source on SourceForge.net</a>. I started <a href="http://olelynge.blogspot.com/2009/07/history-based-estimation.html" rel="nofollow">a few weeks ago</a> and guess it has not been downloaded from SourceForge by anyone yet.</p> <p>I hope this project will help me handling my estimates and schedules. If it can be turned into something that would help other people as well, that would be great.</p> <p>Technical note: It is written with ASP.NET WebForms / C# / LinqToSql / Sql Server database, and I try to use a repository pattern with dependency injection.</p> http://stackoverflow.com/questions/991344/merging-from-branch-to-trunk-with-merge-range-of-revisions 4 Merging from branch to trunk with 'Merge range of revisions' Ole Lynge 2009-06-13T19:34:13Z 2009-06-14T20:48:25Z <p>I have merged in Subversion/TortoiseSVN like this a few times:</p> <p>Method A:</p> <ul> <li><p>1) I change the trunk and commit.</p></li> <li><p>2) I make other changes in a branch and commit.</p></li> <li><p>3) In a working copy from trunk: I merge from the branch using TortoiseSVN's 'Merge a range of revisions'.</p></li> <li><p>4) Then I commit the trunk and delete the branch.</p></li> </ul> <p>However, the <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-merge.html" rel="nofollow">TortoiseSVN-manual</a> recommends the following instead of 3) and 4):</p> <p>Method B:</p> <ul> <li><p>3*) In a working copy from the branch: Merge changes from trunk using TortoiseSVN's 'Merge a range of revisions'.</p></li> <li><p>4*) Commit the branch including trunk changes.</p></li> <li><p>5*) In a working copy from the trunk: Merge changes from the branch using TortoiseSVN's 'Reintegrate a branch'.</p></li> <li><p>6*) Commit the trunk and delete the branch.</p></li> </ul> <p>I find A much easier and have not found a reason why I shouldn't do it like that.</p> <p>What are the arguments for method B, or A, when merging from a branch back to the trunk?</p> http://stackoverflow.com/questions/939132/how-to-format-a-number-as-percentage-without-the-percentage-sign 2 How to format a number as percentage without the percentage sign? Ole Lynge 2009-06-02T12:00:26Z 2009-06-02T14:26:22Z <p>How do I in .NET format a number as percentage without showing the percentage sign?</p> <p>If I have the number <code>0.13</code> and use the format string <code>{0:P0}</code> the output is <code>13 %</code>.</p> <p>However I would like to get <code>13</code> instead, <em>without</em> having to multiply the number by 100 and using the format string <code>{0:N0}</code>.</p> <p>(Background: In ASP.NET I have a GridView with a BoundField where I would like to display a number as percentage but without the percentage sign (%). How do I do that?)</p> <p><hr /></p> <p>Thanks for the answers. At the time of editing 4 out of 6 suggest what I would like to avoid, as explained above. I was looking for a way to use a format string only, and avoid multiplying by 100 and using <code>{0:N0}</code>, but the answers indicate that's impossible...</p> <p><hr /></p> <p>Solved by using <a href="#939311" rel="nofollow">the accepted solution</a> by <a href="http://stackoverflow.com/users/67392/richard">Richard</a>:</p> <pre><code> public class MyCulture : CultureInfo { public MyCulture() : base(Thread.CurrentThread.CurrentCulture.Name) { this.NumberFormat.PercentSymbol = ""; } } Thread.CurrentThread.CurrentCulture = new MyCulture(); </code></pre> http://stackoverflow.com/questions/922559/how-should-i-begin-this-kind-of-project 0 How should I begin this kind of project? Ole Lynge 2009-05-28T18:50:48Z 2009-05-29T13:23:32Z <p>In order to understand how other people work with project solving I put up this project formulation:</p> <ul> <li><p>The project involves several different customer databases where data should be read and uploaded to the project's database server.</p></li> <li><p>Close to nothing is generally known about the customer's database when a new customer arrives, apart from some general knowledge about the business type of the customer.</p></li> <li><p>It requires a program to read the data from the customers.</p></li> <li><p>It requires a web site with diverse cross sections of the customers' data, in an attempt to do something in a general way for the different customers.</p></li> <li><p>It requires the handling of a several GB database. And synchronization of millions of rows with the customers' databases.</p></li> <li><p>The visual appearance and functionality of the web site should be dazzling, including charts, report-server-like functionality with email and sms reports.</p></li> <li><p>The different customers will probably also have different requirements so the system should be parameterized in some way.</p></li> <li><p>The different users will probably also like to have some personalized pages.</p></li> <li><p>Some advertisement pages for the project, documentation and manuals will probably also be needed.</p></li> <li><p>The web pages should load faster than 0.1 second and serve hundreds of simultaneous users.</p></li> </ul> <p>How would you approach such a requirement?</p> <p>How many people would you take on the project, initially?</p> <p>Which different specialities / expertises would you expect to need?</p> <p>How carefully would you plan such a project?</p> <p><hr /></p> <p>EDIT: OK it might sound unrealistic, but what should the first steps be and what kind of organization would be capable of handling this appropriately?</p> http://stackoverflow.com/questions/916873/switching-data-access-strategy-far-into-a-project 2 Switching data access strategy far into a project? Ole Lynge 2009-05-27T16:55:53Z 2009-05-28T18:20:46Z <p>In a project we have implemented the data access layer (DAL) with a visual designer that auto-generates a lot of code (in our case: strong-typed DataSets and DataSetTableAdapters in .NET).</p> <p>However, using source control I find it troublesome to edit and add new things to the DAL. We have started coding new data access by manually writing the SQL statements (in our case: ADO.NET SqlCommands etc) which seems cleaner to me to edit, and especially to see the changes in via source control.</p> <p>But I'm also worried about mixing the methods of data access. What would you suggest? Stick with the auto-generation method, continue converting to 'manual' SQL statements when changes are needed, or something else?</p> <p>Edit: Inspired by the nice answers that address the general problem of switching data access strategy, I have generalized the formulation of the question.</p> <p>The handling of the model data is not very object-oriented. We use .NET DataTables instead of custom objects.</p> http://stackoverflow.com/questions/876788/asp-net-validation-error-in-combinedscript 0 ASP.NET validation error in 'CombinedScript'? Ole Lynge 2009-05-18T08:59:44Z 2009-05-18T09:25:39Z <p>We have an ASP.NET web forms application which occasionally generates a validation error like below. What can be the reason for this?</p> <pre>A validation error has occurred. Exception type: System.Web.HttpRequestValidationException Exception message: A potentially dangerous Request.QueryString value was detected from the client (_TSM_CombinedScripts_="... &lt;/div> ..."). Request URL: https://...:443/Default.aspx?_TSM_HiddenField_= ctl00_sm1_HiddenField&_TSM_CombinedScripts_= %3b%3bAjaxControlToolkit%2c+Version%3d3.5.11119.20050%2c +Culture%3dneutral%2c +PublicKeyToken%3d28f01b0e8%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 &lt;/div>%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20&lt;div%20class= Stack trace: at System.Web.HttpRequest.ValidateString(String s, String valueName, String collectionName) at System.Web.HttpRequest.ValidateNameValueCollection(NameValueCollection nvc, String collectionName) at System.Web.HttpRequest.get_QueryString() at System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull) at System.Web.UI.Page.DeterminePostBackMode() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP.user_default_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) </pre> <p><hr /></p> <p>More details:</p> <p>I do not think it is a 'malicious' request, but is due to some incorrect handling of this script link. If so, how to handle that?</p> <p>The following script block is in the generated html source for the page in question:</p> <pre>&lt;script src="/Default.aspx?_TSM_HiddenField_= ctl00_sm1_HiddenField&amp;_TSM_CombinedScripts_= %3b%3bAjaxControlToolkit%2c+Version%3d3.5.11119.20050%2c +Culture%3dneutral%2c +PublicKeyToken%3d28f01c0e84b6d53e%3aen%3a7e147239-dd05-47b0-7fb3- f743a139f982%3be2e86bf9%3a1aa13a87%3a8ccd9c1b%3a9ea3f0e2%3a9e7e87e9 %3a4c9865be%3aba594826%3ac4c00916%3a630bb7c2%3af442e939" type="text/javascript">&lt;/script> </pre> http://stackoverflow.com/questions/874576/is-latex-worth-learning-today/874621#874621 3 Answer by Ole Lynge for Is LaTeX worth learning today? Ole Lynge 2009-05-17T13:27:34Z 2009-05-17T13:27:34Z <p>For your last question:</p> <blockquote> <p>how does one use LaTeX on a Windows machine? What software do I really need?</p> </blockquote> <p>I use <a href="http://miktex.org/" rel="nofollow">MiKTeX</a> as the LaTeX compiler and write the source .tex file in some texteditor like notepad, programmer's notepad or notepad++.</p> http://stackoverflow.com/questions/801909/why-is-some-sql-query-much-slower-when-used-with-sqlcommand 4 Why is some sql query much slower when used with SqlCommand? Ole Lynge 2009-04-29T11:26:34Z 2009-05-15T07:51:55Z <p>I have a stored procedure that executes much faster from Sql Server Management Studio (2 seconds) than when run with <code>System.Data.SqlClient.SqlCommand (times out after 2 minutes).</p> <p>What could be the reason for this?</p> <p><hr /></p> <p>Details: In Sql Server Management Studio this runs in 2 seconds (on production database):</p> <pre>EXEC sp_Stat @DepartmentID = NULL </code></pre> <p>In .NET/C# the following times out after 2 minutes (on production database):</p> <pre><code>string selectCommand = @" EXEC sp_Stat @DepartmentID = NULL"; string connectionString = "server=***;database=***;user id=***;pwd=***"; using (SqlConnection connection = new SqlConnection(connectionString)) { using (SqlCommand command = new SqlCommand(selectCommand, connection)) { connection.Open(); using (SqlDataReader reader = command.ExecuteReader()) { while (reader.Read()) { } } } } </code></pre> <p>I also tried with <code>selectCommand = "sp_Stat"</code>, <code>CommandType = StoredProcedure</code>, and an <code>SqlParameter</code>, but it's the same result.</p> <p>And without <code>EXEC</code> it's the same result as well.</p> <p>On an almost data-empty development database both cases finishes in less than 1 second. So it's related to that there's a lot of data in the database, but it seems to only happen from .NET...</p> <p><hr /></p> <p>What Marc Gravell wrote about different <code>SET</code> values makes the difference in the presented case.</p> <p>SQL Server Profiler showed that Sql Server Management Studio runs the following <code>SET</code>'s that .NET Sql Client Data Provider does not:</p> <pre><code> SET ROWCOUNT 0 SET TEXTSIZE 2147483647 SET NOCOUNT OFF SET CONCAT_NULL_YIELDS_NULL ON SET ARITHABORT ON SET LOCK_TIMEOUT -1 SET QUERY_GOVERNOR_COST_LIMIT 0 SET DEADLOCK_PRIORITY NORMAL SET TRANSACTION ISOLATION LEVEL READ COMMITTED SET ANSI_NULLS ON SET ANSI_NULL_DFLT_ON ON SET ANSI_PADDING ON SET ANSI_WARNINGS ON SET CURSOR_CLOSE_ON_COMMIT OFF SET IMPLICIT_TRANSACTIONS OFF SET QUOTED_IDENTIFIER ON SET NOEXEC, PARSEONLY, FMTONLY OFF </code></pre> <p>When I included these, the same query took the same amount of time in SSMS and .NET. And the responsible <code>SET</code> is ...</p> <pre><code>SET ARITHABORT ON </code></pre> <p>What have I learnt? Maybe to use a profiler instead of guessing...</p> <p>(The solution at first seemed to be related to parameter sniffing. But I had mixed some things up...)</p> http://stackoverflow.com/questions/296458/typed-dataset-connection-required-to-have-one-in-the-xsd-file/859682#859682 0 Answer by Ole Lynge for Typed DataSet connection - required to have one in the .xsd file? Ole Lynge 2009-05-13T18:43:05Z 2009-05-13T18:43:05Z <p>In a similar case I stored the connection string for the dataset in a settings file / app.config (default behaviour in Visual Studio when creating a dataset) with integrated security to a local development database. In order to be able to access this from external projects, I changed the settings file to be <code>public</code> instead of the default <code>internal</code> (in the visual designer). This resulted in code like (in Properties\Settings.Designer.cs):</p> <pre><code>public sealed partial class Settings { [...] [global::System.Configuration.DefaultSettingValueAttribute ("Data Source=.;Initial Catalog=MyDb;Integrated Security=True;")] public string MyConnectionString { get { return ((string)(this["MyConnectionString"])); } } } </code></pre> <p>Then I manually modified the property to include a public setter as well:</p> <pre><code>public string MyConnectionString { get { return ((string)(this["MyConnectionString"])); } set { this["MyConnectionString"] = value; } } </code></pre> <p>Finally I set the connection string from an external project like:</p> <pre><code>MyDataAccessLibrary.Properties.Settings.Default.MyConnectionString = ... </code></pre> http://stackoverflow.com/questions/842913/how-can-i-redirect-after-actionresult-has-been-determined -1 How can I redirect after ActionResult has been determined? Ole Lynge 2009-05-09T08:07:40Z 2009-05-09T08:11:55Z <p>In ASP.NET MVC I would like to do something like:</p> <ul> <li>Let a base controller check for the type of the <code>ActionResult</code>.</li> <li>If the <code>ActionResult</code> is a <code>ViewResult</code>, load some shared data for all views.</li> <li>If the shared data fulfills some specific criteria, redirect to a login page.</li> </ul> <p>How would you implement that?</p> <p><hr /></p> <p>I thought about the following, but it seems the redirect does not work (due to the action has already been executed?). Is there a way around this?</p> <pre><code>public abstract class BaseController : Controller { protected override void OnActionExecuted (ActionExecutedContext filterContext) { base.OnActionExecuted(filterContext); // If the result is a view result, // then it loads the shared data (for use in shared view): if (filterContext.Result is ViewResult) LoadSharedData(); } private void LoadSharedData() { // TODO: Loads the data that is common for all views. // TODO: If the shared data fulfills some specific criteria, // it will redirect to a login page. Redirect("http://someurl"); } } </code></pre> http://stackoverflow.com/questions/842913/how-can-i-redirect-after-actionresult-has-been-determined/842923#842923 0 Answer by Ole Lynge for How can I redirect after ActionResult has been determined? Ole Lynge 2009-05-09T08:11:55Z 2009-05-09T08:11:55Z <p>I think I found an answer by trying this:</p> <pre><code>filterContext.Result = Redirect("http://someurl"); </code></pre> <p>It works.</p> http://stackoverflow.com/questions/828715/can-i-abort-a-specific-sql-statement-after-a-given-timespan 2 Can I abort a specific sql statement after a given timespan? Ole Lynge 2009-05-06T09:00:35Z 2009-05-06T11:48:04Z <p>I would like to be able to abort a specific sql statement if it takes longer than a specified number of seconds. How can I do that? </p> <p>For example, I would like to do something like:</p> <pre><code> SET NextStatementTimeOutSeconds = 60 SELECT * FROM MyTable IF @@LastStatementTimedOut = 1 PRINT 'Statement timed out after 60 seconds' ELSE PRINT 'Statement completed in less than 60 seconds' </code></pre> <p>Please note that I made up <code>NextStatementTimeOutSeconds</code> and <code>@@LastStatementTimedOut</code> in order to illustrate what I would like to do.</p> <p><hr /></p> <p>Thanks for the suggestions. I'm thinking about using such a timeout inside a single sql script/batch like the one above, if possible.</p> <p>Background: We have several stored procedures that I'd like to be faster than X seconds. So I'd call them one after each other; and if one takes more than X seconds, I'd just abort and print a statement like 'sproc 13 takes too long'. The data varies and I'm trying different index changes, so I'd like to time-test all sprocs after such changes in order to make sure that all of them are below X seconds.</p> http://stackoverflow.com/questions/821164/setting-up-virtual-directory-when-using-iis-for-asp-net-mvc-debugging/826454#826454 1 Answer by Ole Lynge for Setting up virtual directory when using IIS for ASP.NET MVC debugging Ole Lynge 2009-05-05T19:09:06Z 2009-05-05T19:09:06Z <p>You say that </p> <blockquote>the ASP.NET MVC application is assumed to run from the root directory and the MVC would parse "myapp" as a controller</blockquote> <p>However, it is possible to run ASP.NET MVC from a virtual directory by adding wildcard mapping as described in this article:</p> <p><a href="http://haacked.com/archive/2008/11/26/asp.net-mvc-on-iis-6-walkthrough.aspx" rel="nofollow">ASP.NET MVC on IIS 6 Walkthrough</a></p> <p>See also <a href="http://stackoverflow.com/questions/802253">this question</a> here on stackoverflow, and the <a href="http://stackoverflow.com/questions/802253#804062">accepted answer</a> which describes the steps followed to solve a similar problem:</p> <p><a href="http://stackoverflow.com/questions/802253">ASP.NET MVC How-to use routes when application is published as SubProject of a domain?</a></p> http://stackoverflow.com/questions/821966/little-known-programming-wisdom/822025#822025 1 Answer by Ole Lynge for Little Known Programming Wisdom Ole Lynge 2009-05-04T20:55:13Z 2009-05-04T20:55:13Z <p>Some general 'wisdom', that I find also applies to programming:</p> <ul> <li>The current step is the most important: If I find the current step ugly, then something must be wrong; either with the project, the implementation, or how I handle it.</li> </ul> http://stackoverflow.com/questions/821844/asp-net-mvc-call-another-controller-from-view/821882#821882 2 Answer by Ole Lynge for Asp.Net MVC Call another controller from view Ole Lynge 2009-05-04T20:26:09Z 2009-05-04T20:40:43Z <p>One option is to specify the name of the controller in the list of routevalues:</p> <pre><code>&lt;%= Html.ActionLink("Test", "Index" , new { controller = "MyOtherController", id = item.Id }) %></code></pre> <p>An alternative is to use the overload of <code>ActionLink</code> with <code>htmlAttributes = null</code>:</p> <pre><code>&lt;%= Html.ActionLink("Test", "Index" , "MyOtherController", new { id = item.Id }, null) %></code></pre> <p>The default route in the ASP.NET MVC template takes care of the routing in this case.</p> http://stackoverflow.com/questions/815334/multiple-tables-of-contents-in-latex 1 Multiple tables of contents in LaTeX Ole Lynge 2009-05-02T18:29:36Z 2009-05-03T01:01:00Z <p>I would like to make a LaTeX document with two tables of contents, like:</p> <blockquote> <p>Contents overview</p> <ul> <li>1 - Introduction</li> <li>2 - Solution</li> </ul> <p>Detailed contents</p> <ul> <li>1 - Introduction <ul> <li>1.1 - The problem</li> <li>1.2 - Why?</li> </ul></li> <li>2 - Solution <ul> <li>2.1 - Phase A</li> <li>2.2 - Phase B</li> </ul></li> </ul> </blockquote> <p>I tried with </p> <pre><code>\setcounter{tocdepth}{1} \tableofcontents \setcounter{tocdepth}{2} \tableofcontents </code></pre> <p>but this only displays the first table of contents as required. The second table of contents is empty... (The second table of contents is actually empty even without the two <code>\setcounter</code> lines.)</p> <p>(A related question: how to change the title of the table of contents (to something different than the default Contents)?)</p> http://stackoverflow.com/questions/205722/what-are-the-key-use-cases-for-use-of-virtualization-in-software-development/813725#813725 1 Answer by Ole Lynge for What are the key use cases for use of virtualization in software development? Ole Lynge 2009-05-01T23:38:51Z 2009-05-01T23:38:51Z <ul> <li>Developing Add-Ins for different versions of Microsoft Office (using Visual Studio Tools for Office).</li> </ul> <p>My main work machine has Office 2007. When I work with Add-Ins for Office 2003 I use a virtual machine with Visual Studio and Office 2003.</p> http://stackoverflow.com/questions/1629795/what-are-possible-reasons-for-potentially-dangerous-request-rawurl/1629812#1629812 Comment by Ole Lynge on What are possible reasons for "Potentially dangerous Request.RawUrl"? Ole Lynge 2009-10-29T18:46:44Z 2009-10-29T18:46:44Z I will downvote this one, since it seems quite misleading and not addressing the question... http://stackoverflow.com/questions/1629795/what-are-possible-reasons-for-potentially-dangerous-request-rawurl/1629812#1629812 Comment by Ole Lynge on What are possible reasons for "Potentially dangerous Request.RawUrl"? Ole Lynge 2009-10-27T10:19:48Z 2009-10-27T10:19:48Z Yes. It is in the url for some script generated by asp.net. I think form fields with html would generate a &quot;potentially dangerous Request Form&quot; exception instead of Request.RawUrl... http://stackoverflow.com/questions/1629795/what-are-possible-reasons-for-potentially-dangerous-request-rawurl/1629812#1629812 Comment by Ole Lynge on What are possible reasons for "Potentially dangerous Request.RawUrl"? Ole Lynge 2009-10-27T10:16:08Z 2009-10-27T10:16:08Z I think that would have given a &quot;potentially dangerous Request.Form&quot; exception. Here it is Request.RawUrl instead of Request.Form. http://stackoverflow.com/questions/1470725/sql-server-reporting-wrap-output-rows/1473191#1473191 Comment by Ole Lynge on Sql Server Reporting wrap output rows Ole Lynge 2009-10-03T10:53:21Z 2009-10-03T10:53:21Z Nice and elegant... http://stackoverflow.com/questions/1492568/optimize-multiple-joins-with-table-functions/1492609#1492609 Comment by Ole Lynge on Optimize multiple joins with table functions Ole Lynge 2009-09-29T13:51:18Z 2009-09-29T13:51:18Z The alias mistake in the example has been fixed now... http://stackoverflow.com/questions/1492568/optimize-multiple-joins-with-table-functions/1492609#1492609 Comment by Ole Lynge on Optimize multiple joins with table functions Ole Lynge 2009-09-29T13:50:40Z 2009-09-29T13:50:40Z Ah, that's a mistake in my example. In the actual case the aliases are correct... http://stackoverflow.com/questions/1470725/sql-server-reporting-wrap-output-rows Comment by Ole Lynge on Sql Server Reporting wrap output rows Ole Lynge 2009-09-24T10:34:52Z 2009-09-24T10:34:52Z I just found a nice answer by Jim Doherty on this thread: <a href="http://bytes.com/topic/sql-server/answers/712734-how-merge-multi-rows-single-row" rel="nofollow">bytes.com/topic/sql-server/&hellip;</a>. http://stackoverflow.com/questions/1421597/avoid-program-stopped-working-in-c-net/1421638#1421638 Comment by Ole Lynge on Avoid "program stopped working" in C#/.NET Ole Lynge 2009-09-14T16:16:47Z 2009-09-14T16:16:47Z Yes, that might do if I set it up on my own machine, but I would like it to be baked into the program such that it works consistently on other machines as well. (See accepted answer.) http://stackoverflow.com/questions/1421597/avoid-program-stopped-working-in-c-net/1421609#1421609 Comment by Ole Lynge on Avoid "program stopped working" in C#/.NET Ole Lynge 2009-09-14T14:29:45Z 2009-09-14T14:29:45Z Yes, that avoids the popup, but it also avoids the advantage of having other programs that call this program know that some exception occurred. See the accepted answer. http://stackoverflow.com/questions/1421597/avoid-program-stopped-working-in-c-net/1421610#1421610 Comment by Ole Lynge on Avoid "program stopped working" in C#/.NET Ole Lynge 2009-09-14T13:50:41Z 2009-09-14T13:50:41Z Thanks for the quick answer. Works precisely the way I was after. http://stackoverflow.com/questions/991344/merging-from-branch-to-trunk-with-merge-range-of-revisions/991358#991358 Comment by Ole Lynge on Merging from branch to trunk with 'Merge range of revisions' Ole Lynge 2009-06-14T20:35:07Z 2009-06-14T20:35:07Z Thanks for the answer. Would you consider it harmful to use approach 'A'? http://stackoverflow.com/questions/939132/how-to-format-a-number-as-percentage-without-the-percentage-sign/939311#939311 Comment by Ole Lynge on How to format a number as percentage without the percentage sign? Ole Lynge 2009-06-02T14:22:39Z 2009-06-02T14:22:39Z Thanks! Yes indeed that does the trick! http://stackoverflow.com/questions/939132/how-to-format-a-number-as-percentage-without-the-percentage-sign Comment by Ole Lynge on How to format a number as percentage without the percentage sign? Ole Lynge 2009-06-02T12:08:46Z 2009-06-02T12:08:46Z There's nothing wrong with it; other than I would like to change the display of a number without changing the data query. In particular I would like to know how to display a number like e.g. 0.13 as 13 in a BoundField in ASP.NET - without the percentage sign. http://stackoverflow.com/questions/939132/how-to-format-a-number-as-percentage-without-the-percentage-sign/939142#939142 Comment by Ole Lynge on How to format a number as percentage without the percentage sign? Ole Lynge 2009-06-02T12:07:01Z 2009-06-02T12:07:01Z Thanks. Does that mean there is no way to scale the number in a format string? Maybe I should formulate another question like that. http://stackoverflow.com/questions/922559/how-should-i-begin-this-kind-of-project/925935#925935 Comment by Ole Lynge on How should I begin this kind of project? Ole Lynge 2009-05-30T09:39:15Z 2009-05-30T09:39:15Z Thanks for the nice answer, which gives me some 'serious' advice :).