User Mark S. Rasmussen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:35:31Z http://stackoverflow.com/feeds/user/12469 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218680/can-i-test-if-a-regex-is-valid-in-c-without-throwing-exception 5 Can I test if a regex is valid in C# without throwing exception Mark S. Rasmussen 2008-10-20T14:41:46Z 2009-11-21T09:22:57Z <p>I allow users to enter a regular expression to match IP addresses, for doing an IP filtration in a related system. I would like to validate if the entered regular expressions are valid as a lot of userse will mess op, with good intentions though.</p> <p>I can of course do a Regex.IsMatch() inside a try/catch and see if it blows up that way, but are there any smarter ways of doing it? Speed is not an issue as such, I just prefer to avoid throwing exceptions for no reason.</p> http://stackoverflow.com/questions/208533/indexoutofrangeexception-on-queryable-single/211391#211391 0 Answer by Mark S. Rasmussen for IndexOutOfRangeException on Queryable.Single Mark S. Rasmussen 2008-10-17T08:20:53Z 2009-10-10T17:31:29Z <p>@csgero</p> <p>That was also one of my first thoughts as I've had those problems earlier. I do not share the DC however. This is basically how I get my DataContext:</p> <pre><code>public DataContext DataContext { get { if (HttpContext.Current.Items["DataContext"] == null) HttpContext.Current.Items["DataContext"] = new DataContext(DirBasedPartnerConfig.Instance.DBConnection) { ObjectTrackingEnabled = false }; return HttpContext.Current.Items["DataContext"] as DataContext; } } </code></pre> <p>As I don't use threading in the file where the error occurred, the DC should'nt suffer from multithreading issues - which basically also eliminates my own theory.</p> http://stackoverflow.com/questions/208533/indexoutofrangeexception-on-queryable-single 4 IndexOutOfRangeException on Queryable.Single Mark S. Rasmussen 2008-10-16T13:23:54Z 2009-10-10T17:31:29Z <p>I have an ASP.NET site that has been running perfectly for a long time, nothing's changed recently. From one hour to the next I started receiving an IndexOutOfRangeException in a line where I do a LINQ query like this:</p> <pre><code>var form = SqlDB.GetTable&lt;ORMB.Form, CDB&gt;() .Where(f =&gt; f.FormID == formID) .Single(); </code></pre> <p>ORMB.Form is a POCO object with LINQ to SQL attributes mapping it to an MSSQL table (mapping is verified as correct). The stacktrace is as follows:</p> <pre><code>System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---&gt; System.IndexOutOfRangeException: Index was outside the bounds of the array. at System.Collections.Generic.List`1.Add(T item) at System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user) at System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult) at System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries) at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query) at System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression) at System.Linq.Queryable.Single[TSource](IQueryable`1 source) at GetForm.Page_Load(Object sender, EventArgs e) </code></pre> <p>Reflecting System.Collections.Generic.List.Add shows the following code:</p> <pre><code>public void Add(T item) { if (this._size == this._items.Length) { this.EnsureCapacity(this._size + 1); } this._items[this._size++] = item; this._version++; } </code></pre> <p>The only line that should be prone to the IndexOfOutRangeException is this._items[this._size++] = item, I cannot see how I'm affecting this however.</p> <p>I can solve the problem by doing an appdomain recycle, so it must be caching related somehow. ObjectTracking is turned off on the DataContext, in case that matters.</p> <p>My gut feeling is that this might be a threading issue, SqlConnectionManager having cached IConnectionUsers in the List field called 'users'. If two threads enter the Add method at the same time, what prevents the following from happening:</p> <pre><code>T1: Add(x) T2: Add(y) T1: Since _size == _items.Length: EnsureCapacity(_size + 1) T2: Since _size &gt; _items.Length: _items[_size++] = item; T1: _items[size++] = item &lt;- OutOfRangeException since T2 didn't increase the capacity as needed </code></pre> <p>Anyone?</p> http://stackoverflow.com/questions/223480/html-encode-user-input-when-storing-or-when-displaying 8 HTML encode user input when storing or when displaying Mark S. Rasmussen 2008-10-21T20:58:58Z 2009-09-27T20:21:16Z <p>Simple question that keeps bugging me.</p> <p>Should I HTML encode user input right away and store the encoded contents in the database, or should I store the raw values and HTML encode when displaying?</p> <p>Storing encoded data greatly reduces the risk of a developer forgetting to encode the data when it's being displayed. However, storing the encoded data will make datamining somewhat more cumbersome and it will take up a bit more space, even though that's usually a non-issue.</p> http://stackoverflow.com/questions/887327/list-of-unique-strings-in-database-table-using-linq/887336#887336 0 Answer by Mark S. Rasmussen for List of unique strings in database table using Linq? Mark S. Rasmussen 2009-05-20T11:10:31Z 2009-05-20T11:10:49Z <p>You can use the .Distinct() operator - it'll make a SELECT DISTINCT to the database, giving exactly what you ask for.</p> http://stackoverflow.com/questions/862785/sql-query-does-not-use-available-index-sql-server-2008/862801#862801 1 Answer by Mark S. Rasmussen for SQL query does not use available index (SQL Server 2008) Mark S. Rasmussen 2009-05-14T11:24:09Z 2009-05-14T11:24:09Z <p>Do you perhaps have a clustered index on the SessionID column? In that case your indexes are basically identical as any nonclustered index will implicitly include the clustered key.</p> <p>How many rows are in the table, and what is the cardinality/uniqueness of the values? If the table is small enough, a table scan may be more efficient than an index lookup + bookmarp lookups to retrieve the remaining columns.</p> http://stackoverflow.com/questions/823755/get-url-from-web-browser/823766#823766 1 Answer by Mark S. Rasmussen for get url from web browser Mark S. Rasmussen 2009-05-05T07:36:11Z 2009-05-05T07:36:11Z <p>While not a complete example, this shows how to retrieve the text in the address bar of an IE instance: <a href="http://www.improve.dk/blog/2007/04/03/getting-text-from-handle" rel="nofollow">http://www.improve.dk/blog/2007/04/03/getting-text-from-handle</a></p> <p>You'll need to obtain the handle for that window before you can retrieve the text.</p> http://stackoverflow.com/questions/817163/auto-generate-gets-and-sets-from-a-database/817175#817175 1 Answer by Mark S. Rasmussen for Auto Generate Gets and Sets from a Database Mark S. Rasmussen 2009-05-03T14:17:25Z 2009-05-03T14:17:25Z <p>I would probably look into using an OR/M like nHibernate, LINQ to SQL, Entity Framework, Subsonic etc. It'll give you a lot lot more, but it's probably better than to autogenerate CRUD operations.</p> http://stackoverflow.com/questions/809144/could-not-load-file-or-assembly-someproject-or-one-of-its-dependencies-access/809290#809290 2 Answer by Mark S. Rasmussen for Could not load file or assembly 'someProject' or one of its dependencies. Access is denied. Mark S. Rasmussen 2009-04-30T21:52:45Z 2009-04-30T21:52:45Z <p>Go to Sysinternals and download Process Monitor: <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx</a></p> <p>Then start it up, filter thread and registry actions away. Clear contents. Run your app and get the error, and then stop the collection in process monitor. Now search for an ACCESS DENIED status, and you'll be able to see the exact file that's causing troubles, as well as the user account trying to get access.</p> http://stackoverflow.com/questions/789049/session-in-asp-net/789054#789054 1 Answer by Mark S. Rasmussen for Session in asp.net Mark S. Rasmussen 2009-04-25T14:45:36Z 2009-04-25T14:45:36Z <p>You might consider using Forms Authentication: <a href="http://msdn.microsoft.com/en-us/library/aa480476.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa480476.aspx</a></p> http://stackoverflow.com/questions/788882/whats-the-difference-between-these-two-strings/788884#788884 0 Answer by Mark S. Rasmussen for Whats the difference between these two strings? Mark S. Rasmussen 2009-04-25T13:02:34Z 2009-04-25T13:02:34Z <p>Can you post the ascii code of the char at index two in both strings?</p> http://stackoverflow.com/questions/788650/ms-sql-server-2005-case-insensitive-password-problem/788665#788665 -2 Answer by Mark S. Rasmussen for MS SQL Server 2005 - case insensitive password problem Mark S. Rasmussen 2009-04-25T10:30:48Z 2009-04-25T10:30:48Z <p>There are situations where you may want to store clear text passwords so I won't repeat the advice everybody else has, although it's usually sound.</p> <p>Besides setting the collation, you can also use the varbinary trick like so:</p> <pre><code>WHERE CAST(Password as varbinary(20)) = CAST(@Password as varbinary(20)) AND CAST(Username as varbinary(20)) = CAST(@Username as varbinary(20)) </code></pre> <p>The above will also result in a case sensitive search - just remember to set the varbinary length to the same as the field lengths.</p> <p>To avoid index scans, you can include the case insensitive search as well - that'll make an index seek and the perform the varbinary search afterwards:</p> <pre><code>WHERE Password = @Password AND Username = @Username AND CAST(Password as varbinary(20)) = CAST(@Password as varbinary(20)) AND CAST(Username as varbinary(20)) = CAST(@Username as varbinary(20)) </code></pre> http://stackoverflow.com/questions/787622/how-can-i-measure-the-response-and-loading-time-of-a-webpage/787636#787636 0 Answer by Mark S. Rasmussen for How can I measure the response and loading time of a webpage? Mark S. Rasmussen 2009-04-24T21:27:09Z 2009-04-24T21:27:09Z <p>Fully load as in also loading all external resources such as CSS, JS, images etc? What about delayed AJAX requests, Flash movies - should they also be loaded? Or do you just wish to measure the TTLB (time to last byte) of the main request?</p> http://stackoverflow.com/questions/785054/minimizing-all-open-windows-in-c/785094#785094 1 Answer by Mark S. Rasmussen for Minimizing all open windows in C# Mark S. Rasmussen 2009-04-24T09:11:35Z 2009-04-24T09:11:35Z <p>I've previously blogged on how to minimize &amp; maximize using P/Invoke from C#: <a href="http://www.improve.dk/blog/2007/04/10/minimizing-and-maximizing-windows" rel="nofollow">http://www.improve.dk/blog/2007/04/10/minimizing-and-maximizing-windows</a></p> http://stackoverflow.com/questions/706181/c-storing-a-net-object-in-the-registry/706200#706200 1 Answer by Mark S. Rasmussen for C#: Storing a .Net Object in the Registry Mark S. Rasmussen 2009-04-01T15:57:57Z 2009-04-01T15:58:24Z <p>You will have to serialize it yourself. Beware that there might be limitations on the amount of data you can store, depending on the Windows version.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms724872(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms724872(VS.85).aspx</a></p> http://stackoverflow.com/questions/680948/converting-a-multiple-page-pdf-to-a-single-image/680957#680957 0 Answer by Mark S. Rasmussen for Converting a multiple-page PDF to a single image Mark S. Rasmussen 2009-03-25T10:09:58Z 2009-03-25T10:09:58Z <p>You will most likely need to render the single pages using GS and then combine them to a single PNG/JPG using some scripting language.</p> http://stackoverflow.com/questions/607159/c-benefit-of-explicitly-stating-unsafe-compiler-option/607169#607169 1 Answer by Mark S. Rasmussen for C#: Benefit of explicitly stating "unsafe" / compiler option Mark S. Rasmussen 2009-03-03T16:41:05Z 2009-03-03T16:41:05Z <p>Nurturing good habits &amp; security. Whenever you use an unsafe block in an assembly, a NativeCode permission will be demanded from the stack. This could of course be done implicitly, but couldn't we also just remove the private keyword completely? I think it's good to force developers to specifically require unsafe code before they can use it.</p> http://stackoverflow.com/questions/585141/what-would-cause-a-bogus-404-for-an-iis-served-aspx-page/585145#585145 0 Answer by Mark S. Rasmussen for What would cause a bogus 404 for an IIS-served ASPX page? Mark S. Rasmussen 2009-02-25T08:23:26Z 2009-02-25T08:23:26Z <p>Sending on lots of data, long querystring or otherwise making a request that the built-in IIS7 urlscan might block? If IIS7 blocks a request, it'll send out a 404 error.</p> http://stackoverflow.com/questions/578392/child-parent-table-where-i-should-put-the-method-in-2-class/578413#578413 2 Answer by Mark S. Rasmussen for Child-Parent table : where I should put the method in 2 class? Mark S. Rasmussen 2009-02-23T17:00:02Z 2009-02-23T17:00:02Z <p>What's the primary relationship of the method - Products. Thus I'd put it inside the Products class, since it'll handle everything related to products. Likewise the Category class may have a multitude of methods for handling, querying &amp; modifying categories.</p> http://stackoverflow.com/questions/575667/managers-vs-software-developers/575677#575677 2 Answer by Mark S. Rasmussen for Managers vs Software developers Mark S. Rasmussen 2009-02-22T20:08:52Z 2009-02-22T20:08:52Z <p>Not necessarily, but it certainly helps for them to have somewhat technical expertice/experience - otherwise it's far too easy to misunderstand each other.</p> http://stackoverflow.com/questions/575640/is-the-content-folder-sacred-in-asp-net-mvc/575660#575660 3 Answer by Mark S. Rasmussen for Is the Content folder sacred in asp.net mvc? Mark S. Rasmussen 2009-02-22T20:05:04Z 2009-02-22T20:05:04Z <p>I use the same technique on some of my sites. I use it to avoid caching - if you do not specify a different URL for the different builds, clients may have cached the old one.</p> http://stackoverflow.com/questions/575584/how-to-make-pdf/575596#575596 5 Answer by Mark S. Rasmussen for How to make pdf ? Mark S. Rasmussen 2009-02-22T19:44:56Z 2009-02-22T19:44:56Z <p>iTextSharp is one of the best open source frameworks for creating/manipulating PDFs in .NET: <a href="http://itextsharp.sourceforge.net/" rel="nofollow">http://itextsharp.sourceforge.net/</a></p> http://stackoverflow.com/questions/575568/why-would-you-ever-use-asp-nets-viewstate-storage-object-over-the-session-storag/575592#575592 11 Answer by Mark S. Rasmussen for Why would you ever use asp.net's ViewState storage object over the Session storage object? Mark S. Rasmussen 2009-02-22T19:44:13Z 2009-02-22T19:44:13Z <p>Sessions run out, Viewstate does not - you can go back an hour later and your viewstate will still be available. Viewstate is also consistently available when you go back/forward on the website, Session changes.</p> http://stackoverflow.com/questions/565617/full-text-search-in-linq/565714#565714 0 Answer by Mark S. Rasmussen for Full Text Search in Linq Mark S. Rasmussen 2009-02-19T15:06:10Z 2009-02-19T15:06:10Z <p>One dangerous/unoptimal issue regarding your query is that the .Skip().Take() will be performed clientside, not serverside. So if you do a FTS that returns 10^6 results and you want to just have the first 10, all 10^6 of them will be returned from the database, and only then will you perform the filtering.</p> http://stackoverflow.com/questions/532203/asp-net-in-iis7/532240#532240 1 Answer by Mark S. Rasmussen for ASP.NET in IIS7 Mark S. Rasmussen 2009-02-10T13:06:36Z 2009-02-10T13:06:36Z <p>Have you installed ASP.NET in IIS7? It might not be installed by default.</p> http://stackoverflow.com/questions/528123/how-to-replace-one-value-with-another-when-comparing-2-strings/528133#528133 5 Answer by Mark S. Rasmussen for How to replace one value with another when comparing 2 strings? Mark S. Rasmussen 2009-02-09T13:31:15Z 2009-02-09T14:44:42Z <p>Any special reason not to use a standard hash + salt for storing the passwords, instead of a Caesars cipher?</p> <p>One way that should solve it (untested code):</p> <pre><code>new string("aA1234".ToCharArray().Select(c =&gt; ScrambleChars[OriginalChars.IndexOf(c)]).ToArray()); </code></pre> http://stackoverflow.com/questions/492430/san-disk-layout 0 SAN disk layout [closed] Mark S. Rasmussen 2009-01-29T16:43:07Z 2009-01-29T17:06:13Z <p>So we've decided on an EMC NX4 for our storage setup.</p> <pre><code>Database workload Write: ~220 IOPS Read: ~6 IOPS Web workload Write: ~10 IOPS Read: ~55 IOPS </code></pre> <p>I had planned to go for 5 x 15k SAS disks in RAID 10 + hot spare for our databases, and then a 7 x 7,2k SATA RAID 6 + hot spare for our web data. However, EMC conveniently forgot to mention that the first 5 disks had to be setup in a RAID 5 for the system volumes. We haven't signed the agreement yet, but I obviously need to come up with a new disk layout for this to work out.</p> <p>They suggest we put the 15k SAS disks in a RAID 5 + hot spare, but won't this rather quickly give me write performance issues? Besides the RAID 5, we'd then be left with a 6 disk RAID 6 leaving us 4/3TB usable data depending on hot spare/not.</p> <p>Alternatively we should stick with the RAID 10 for our DB's and put our 1TB 7,2k SATA disks in RAID5 - Though I'm not fond of the rebuild time and insecurity of running these in RAID5. The raid level suits web data much better however.</p> <p>So we basically have three choices as I see it:</p> <pre><code>6 x 15k SAS RAID5 for System Volumes + DB data+log + hot spare 6 x 7,2k SATA RAID6 for file data + hot spare </code></pre> <p>OR</p> <pre><code>6 x 7,2k SATA RAID5 for System Volumes + file data + hot spare 5 x 15k SAS RAID10 for DB data+log + hot spare </code></pre> <p>OR</p> <pre><code>5 x 15k SAS RAID5 for System Volumes + DB Data 2 x 15k SAS RAID1 for DB Log 1 x 15k SAS hot spare 4 x 7,2k SATA RAID5 for file data + hot spare </code></pre> <p>Option 1 may have write performance issues. Option 2 can become dangerous during rebuilds. Option 3 is good for DB performance but leaves us only 2TB usable file storage, meaning we'll soon have to expand with an extra shelf - and at that point convert our file data to a RAID6.</p> http://stackoverflow.com/questions/325993/distributed-filesystem-sanity-check 1 Distributed filesystem sanity check Mark S. Rasmussen 2008-11-28T15:12:17Z 2008-11-28T19:25:57Z <p>Hi,</p> <p>I'm in need of a distributed file system that must scale to very large sizes (about 100TB realistic max). Filesizes are mostly in the 10-1500KB range, though some files may peak at about 250MB.</p> <p>I very much like the thought of systems like GFS with built-in redundancy for backup which would - statistically - render file loss a thing of the past.</p> <p>I have a couple of requirements:</p> <ul> <li>Open source</li> <li>No SPOFs</li> <li>Automatic file replication (that is, no need for RAID)</li> <li>Managed client access</li> <li>Flat namespace of files - preferably</li> <li>Built in versioning / delayed deletes</li> <li>Proven deployments</li> </ul> <p>I've looked seriously at MogileFS as it does fulfill most of the requirements. It does not have any managed clients, but it should be rather straight forward to do a port of the Java client. However, there is no versioning built in. Without versioning, I will have to do normal backups besides the file replication built into MogileFS.</p> <p>Basically I need protection from a programming error that suddenly purges a lot of files it shouldn't have. While MogileFS does protect me from disk &amp; machine errors by replicating my files over X number of devices, it doesn't save me if I do an unwarranted delete.</p> <p>I would like to be able to specify that a delete operation doesn't actually take effect until after Y days. The delete will logically have taken place, but I can restore the file state for Y days until it's actually deleten. Also MogileFS does not have the ability to check for disk corruption during writes - though again, this could be added.</p> <p>Since we're a Microsoft shop (Windows, .NET, MSSQL) I'd optimally like the core parts to be running on Windows for easy maintainability, while the storage nodes run *nix (or a combination) due to licensing.</p> <p>Before I even consider rolling my own, do you have any suggestions for me to look at? I've also checked out HadoopFS, OpenAFS, Lustre &amp; GFS - but neither seem to match my requirements.</p> http://stackoverflow.com/questions/325993/distributed-filesystem-sanity-check/326199#326199 0 Answer by Mark S. Rasmussen for Distributed filesystem sanity check Mark S. Rasmussen 2008-11-28T16:46:47Z 2008-11-28T16:46:47Z <p>@tweakt<br /> I've considered S3 extensively as well, but I don't think it'll be satisfactory for us in the long run. We have a lot of files that must be stored securely - not through file ACL's, but through our application layer. While this can also be done through S3, we do have one bit less control over our file storage. Furthermore there will also be a major downside in forms of latency when we do file operations - both initial saves (which can be done asynchronously though), but also when we later read the files and have to perform operations on them.</p> <p>As for the SPOF, that's not really an issue. We do have redundant connections to our datacenter and while I do not want any SPOFs, the little downtime S3 has had is acceptable.</p> <p>Unlimited scalability and no need for maintenance is definitely an advantage.</p> <p>Regarding a hybrid approach. If we are to host directly from S3 - which would be the case unless we want to store everything locally anyways (and just use S3 as backup), the bandwidth prices are simply too steep when we add S3 + CloudFront (CloudFront would be necessary as we have clients from all around). Currently we host everything from our datacenter in Europe, and we have our own reverse squids setup in the US for a low-budget CDN functionality.</p> <p>While it's very domain dependent, ummutability is not an issue for us. We may replace files (that is, key X gets new content), but we will never make minor modifications to a file. All our files are blobs.</p> http://stackoverflow.com/questions/268783/foreign-key-referencing-composite-table 1 Foreign key referencing composite table Mark S. Rasmussen 2008-11-06T14:02:41Z 2008-11-11T05:36:15Z <p>I've got a table structure I'm not really certain of how to create the best way.</p> <p>Basically I have two tables, tblSystemItems and tblClientItems. I have a third table that has a column that references an 'Item'. The problem is, this column needs to reference either a system item or a client item - it does not matter which. System items have keys in the 1..2^31 range while client items have keys in the range -1..-2^31, thus there will never be any collisions.</p> <p>Whenever I query the items, I'm doing it through a view that does a UNION ALL between the contents of the two tables.</p> <p>Thus, optimally, I'd like to make a foreign key reference the result of the view, since the view will always be the union of the two tables - while still keeping IDs unique. But I can't do this as I can't reference a view.</p> <p>Now, I can just drop the foreign key, and all is well. However, I'd really like to have some referential checking and cascading delete/set null functionality. Is there any way to do this, besides triggers?</p> http://stackoverflow.com/questions/862785/sql-query-does-not-use-available-index-sql-server-2008/865087#865087 Comment by Mark S. Rasmussen on SQL query does not use available index (SQL Server 2008) Mark S. Rasmussen 2009-05-16T09:43:23Z 2009-05-16T09:43:23Z It'll also help in his exact query. Having an index like (startdate,enddate) <i>will</i> help in a query with a predicate like WHERE startdate &gt;= @startdate AND enddate &lt;= @enddate Since the index is basically just sorted data, it's a much faster way of filtering down the data. Using the first predicate and the index, we find all data that fulfils the first predicate. Given the index, the found data is now sorted according to the second predicate, and we can thus filter it down again. http://stackoverflow.com/questions/862785/sql-query-does-not-use-available-index-sql-server-2008/865087#865087 Comment by Mark S. Rasmussen on SQL query does not use available index (SQL Server 2008) Mark S. Rasmussen 2009-05-15T20:28:10Z 2009-05-15T20:28:10Z Not true. And index like (startdate, enddate) is great for a query with a predicate that filters on startdate first and enddate second. The index may be used. If there's a lot of columns, filtering on that index alone and doing bookmark lookups for the results will be a lot cheaper IO-wise than doing a full table scan. http://stackoverflow.com/questions/862785/sql-query-does-not-use-available-index-sql-server-2008/862806#862806 Comment by Mark S. Rasmussen on SQL query does not use available index (SQL Server 2008) Mark S. Rasmussen 2009-05-14T15:16:20Z 2009-05-14T15:16:20Z Not true. The index may (emphasis on may) be used whenever there's a predicate on the first column of the index. Doesn't have to be equality. http://stackoverflow.com/questions/788650/ms-sql-server-2005-case-insensitive-password-problem/788665#788665 Comment by Mark S. Rasmussen on MS SQL Server 2005 - case insensitive password problem Mark S. Rasmussen 2009-04-25T12:50:44Z 2009-04-25T12:50:44Z Interoperability with legacy systems for example. All I'm saying is that there may be reasons for one to want to store cleartext instead of hashing it - and I really see no reason for 10 answers all stating the same advice without offering a direct solution for what the OP is asking. http://stackoverflow.com/questions/657591/delete-dynamically-generated-pdf-file-immediately-after-it-has-been-displayed-to/657741#657741 Comment by Mark S. Rasmussen on Delete dynamically generated PDF file immediately after it has been displayed to user Mark S. Rasmussen 2009-03-30T22:22:22Z 2009-03-30T22:22:22Z Furthermore, setting Response.Buffer = true kinda goes against TransmitFile, though I'm not sure if TransmitFile will ignore the Buffer parameter. http://stackoverflow.com/questions/657591/delete-dynamically-generated-pdf-file-immediately-after-it-has-been-displayed-to/657741#657741 Comment by Mark S. Rasmussen on Delete dynamically generated PDF file immediately after it has been displayed to user Mark S. Rasmussen 2009-03-18T10:50:25Z 2009-03-18T10:50:25Z You should use TransmitFile instead. WriteFile loads the entire file into memory - TransmitFile streams it. http://stackoverflow.com/questions/618628/when-to-do-stored-procedures-and-when-not-to/618646#618646 Comment by Mark S. Rasmussen on When to do stored procedures and when not to Mark S. Rasmussen 2009-03-06T12:17:40Z 2009-03-06T12:17:40Z Why would you use an SP for that? That sounds like ad-hoc querying through management studio / similar. http://stackoverflow.com/questions/576803/linq-to-entities-generated-sql/582078#582078 Comment by Mark S. Rasmussen on linq to entities generated sql Mark S. Rasmussen 2009-02-24T15:06:20Z 2009-02-24T15:06:20Z Provided you have an index on the Note/Name column and cardinality's not too low, it will be used on a LIKE 'a%' query. I'm not sure the query optimizer will be able to use the index for a CAST(CHARINDEX()) operation. http://stackoverflow.com/questions/530052/looking-for-a-pdf-file-parser/530082#530082 Comment by Mark S. Rasmussen on Looking for a PDF file parser. Mark S. Rasmussen 2009-02-10T07:58:46Z 2009-02-10T07:58:46Z ABCpdf does expose an object model, it's what they call Atoms. http://stackoverflow.com/questions/494974/limiting-an-sql-join Comment by Mark S. Rasmussen on LIMITing an SQL JOIN Mark S. Rasmussen 2009-01-30T09:46:27Z 2009-01-30T09:46:27Z SQL Server? 2005? http://stackoverflow.com/questions/492430/san-disk-layout/492511#492511 Comment by Mark S. Rasmussen on SAN disk layout Mark S. Rasmussen 2009-01-29T22:43:48Z 2009-01-29T22:43:48Z The system disks MUST run RAID5 as per NX4 requirements/design. And 146GB SAS disks for file data will not cut it, we need TBs of storage, not GBs. 5TB on SATA is a slow rebuild, that's also why I want to upgrade to RAID6 asap. It seems RAID5 will have to do until we can get another shelf. http://stackoverflow.com/questions/492430/san-disk-layout Comment by Mark S. Rasmussen on SAN disk layout Mark S. Rasmussen 2009-01-29T17:14:18Z 2009-01-29T17:14:18Z Sorry, I understand your suggestions. I've already asked it at The Server Room (<a href="http://is.gd/hHgo" rel="nofollow">is.gd/hHgo</a>), unfortunately traffic is rather low and I'm getting desperate for input before signing the agreement tomorrow. Wading through previous questions reveals that there are quite a few storage experts here http://stackoverflow.com/questions/492430/san-disk-layout/492511#492511 Comment by Mark S. Rasmussen on SAN disk layout Mark S. Rasmussen 2009-01-29T17:09:49Z 2009-01-29T17:09:49Z That is without doubt the one that is most optimal in regards to us having good DB performance as well as plenty of file storage. I just don't like the fact of storing 5TB of data on a RAID5 array, using SATA drives. It may however be the best solution for us, until I can warrant adding a 2nd shelf. http://stackoverflow.com/questions/492430/san-disk-layout Comment by Mark S. Rasmussen on SAN disk layout Mark S. Rasmussen 2009-01-29T16:58:30Z 2009-01-29T16:58:30Z At the moment, unfortunately yes. We're straining to get the NX4 over a cheaper solution, so we'll have to make do. http://stackoverflow.com/questions/325993/distributed-filesystem-sanity-check/326488#326488 Comment by Mark S. Rasmussen on Distributed filesystem sanity check Mark S. Rasmussen 2008-11-29T11:27:33Z 2008-11-29T11:27:33Z Who are you? And will it be open source?