User Chris Needham - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:18:37Z http://stackoverflow.com/feeds/user/44950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/863407/structure-within-staging-area-of-data-warehouse 0 Structure within staging area of data warehouse Chris Needham 2009-05-14T13:43:37Z 2009-10-29T19:24:12Z <p>Hi.</p> <p>We are working on a datawarehouse for a bank and have pretty much followed the standard Kimball model of staging tables, a star schema and an ETL to pull the data through the process.</p> <p>Kimball talks about using the staging area for import, cleaning, processing and everything until you are ready to put the data into the star schema. In practice this typically means uploading data from the sources into a set of tables with little or no modification, followed by taking data optionally through intermediate tables until it is ready to go into the star schema. That's a lot of work for a single entity, no single responsibility here.</p> <p>Previous systems I have worked on have made a distinction between the different sets of tables, to the extent of having <em>Upload</em> (raw source system data, unmodified) tables, <em>Staging</em> (intermediate processing, typed and cleansed) tables and <em>Warehouse</em> tables. You can stick these in seperate schemas and then apply differing policies for archive/backup/security etc. One of the other guys has worked on a warehouse where there is a <em>StagingInput</em> and a <em>StagingOutput</em>, similar story. The team as a whole has a lot of experience, both datawarehouse and otherwise.</p> <p>However, despite all this, looking through Kimball and the web there seems to be absolutely nothing in writing about giving any kind of structure to the staging database. One would be forgiven for believing that Mr Kimball would have us all work with staging as this big deep dark unstructured pool of data.</p> <p>Whilst of course it is pretty obvious how to go about it if we want to add some more structure to the staging area, it seems very odd that there seems to be nothing written about it.</p> <p>So, what is everyone else out there doing? Is staging just this big unstructured mess or do folk have some interesting designs on it?</p> http://stackoverflow.com/questions/1421804/what-is-your-most-referred-to-piece-of-documentation 2 What is your most referred to piece of documentation? Chris Needham 2009-09-14T14:11:20Z 2009-09-14T15:03:35Z <p>For me it's got to be the <a href="http://msdn.microsoft.com/en-us/library/ms187928.aspx" rel="nofollow">Microsoft SQL Server Cast and Convert reference</a>. I must love that page, I seem to visit it several times a day.</p> http://stackoverflow.com/questions/1334303/pass-an-argument-to-the-xslt-when-using-an-ssis-xml-task 0 Pass an argument to the XSLT when using an SSIS XML Task? Chris Needham 2009-08-26T12:22:40Z 2009-09-14T14:51:47Z <p>Anyone know a way to pass an argument to the XSLT when using an SSIS XML Task?</p> <p>There seems to be no obvious way to do this, but there may be some clever workaround/hack?</p> <p>EDIT: I'm currently looking into running an xpath update to insert param values...</p> <p>EDIT: I got this working in the end by using a script task to insert the parameter value into the XSLT file. Hacky, I know, but it works. (And I have to work with VB.net, ugh!)</p> http://stackoverflow.com/questions/1355338/fed-up-with-my-programming-job-what-should-i-do/1367964#1367964 0 Answer by Chris Needham for Fed up with my programming job: What should I do? Chris Needham 2009-09-02T14:14:22Z 2009-09-02T14:14:22Z <p>Get so good that your day rate is so high that you <em>don't care</em> what you have to do for it.</p> http://stackoverflow.com/questions/1367722/using-css-to-make-sure-my-logo-is-always-x-ammount-of-distance-away-from-border/1367794#1367794 0 Answer by Chris Needham for Using CSS to make sure my Logo is always X ammount of distance away from border. Chris Needham 2009-09-02T13:45:32Z 2009-09-02T13:45:32Z <pre><code>.Logo { height:50px; width:50px; margin-left:auto; margin-right:auto; } </code></pre> <p>Works in IE6. I can't remember about Firefox as it's such a long time since I did any web development (sigh!).</p> http://stackoverflow.com/questions/1262141/what-tools-are-available-for-dts-to-ssis-package-conversion/1265484#1265484 -1 Answer by Chris Needham for What tools are available for DTS to SSIS package conversion Chris Needham 2009-08-12T10:58:23Z 2009-09-02T12:56:58Z <p>I wouldn't trust any such tool, if any exist. These conversion tool are typically only any use as a learning aid.</p> <p>Rewrite the packages in SSIS as and when you get a chance.</p> <p>EDIT: Downvotes!!?!?? Jeez! So are you guys all out there running apps which have been converted from VB to .net against databases converted using the oracle to sql conversion tool? I'll bet you're not.</p> http://stackoverflow.com/questions/1328173/shred-complex-xml-data-into-many-tables-in-sql 0 Shred complex XML data into many tables in SQL? Chris Needham 2009-08-25T13:08:28Z 2009-08-25T14:20:23Z <p>I have a reasonably complex XML document which I want to flatten down to tables in SQL Server 2005. I don't want to have to code each field and table mapping by hand. The data is going into the staging area of a data warehouse so it doesn't really matter that much how the tables are structured.</p> <p>So far I have considered, and rejected the following...</p> <p><strong>OpenXML</strong> - it seems that I can read the xml into memory in sql using this, but then have to write a load of sql to perform all the inserts. No thanks.</p> <p><strong>XML Bulk Load</strong> - looks pretty good, but I get the impression I am expected to write an XSD which details all the relationships. Don't see why I should have to when they are implicit in the hierarchical structure of the xml.</p> <p><strong>SqlBulkCopy</strong> - looks like I still have to write all the mapping stuff.</p> <p>Having rejected all these I am thinking about rolling my own in C#, the idea seems quite simple. Read the data into an xmlReader, then walk the tree and generate the inserts. I can have a seperate action which is only run at development time to generate the schema.</p> <p>Any thoughts on this?</p> http://stackoverflow.com/questions/1328173/shred-complex-xml-data-into-many-tables-in-sql/1328604#1328604 0 Answer by Chris Needham for Shred complex XML data into many tables in SQL? Chris Needham 2009-08-25T14:20:23Z 2009-08-25T14:20:23Z <p>In this case the final answer turned out to be much more simple...</p> <p>By going through the details of the requirements it turns out that even thought the data is highly structured, the parts of it that we need can be represented by a single table. Therefore I can run an xslt transform against the xml to give me a set of rows and columns which go straight into a table. Via SSIS in this case.</p> http://stackoverflow.com/questions/1322265/are-programming-training-courses-useful/1322343#1322343 1 Answer by Chris Needham for Are programming training courses useful? Chris Needham 2009-08-24T13:14:36Z 2009-08-24T13:14:36Z <p>I all depends on who's paying. If your company is going to pay, take it. If it's you paying then ask yourself do you really need to pay £1400 to have someone take you through a book that costs £30.</p> http://stackoverflow.com/questions/1246058/senior-programming-guru-who-cant-program-should-i-find-a-different-career/1246067#1246067 207 Answer by Chris Needham for Senior programming 'guru' who can't program - should I find a different career? Chris Needham 2009-08-07T17:39:35Z 2009-08-07T17:39:35Z <p>Become a project manager</p> http://stackoverflow.com/questions/1244013/version-control-and-website-branching/1244025#1244025 5 Answer by Chris Needham for Version control and website branching Chris Needham 2009-08-07T10:23:44Z 2009-08-07T17:24:41Z <p>Ideally you should be running a seperate machine for each environment (production, uat, test, dev &amp; ci). If you don't have the resources for actual physical machines then virtualization is the way to go for the non-production environments.</p> <p>This also means you can properly test the effects of the various dependencies and libraries which you use.</p> <p>EDIT: About branching...</p> <p>What we do here, and in a couple of places I've worked before is have an integration branch off the trunk. Developers developing new features branch off the integration branch and reintegrate into the integration branch. The CI is done on both integration and trunk. Informal testing can be done on the integration, but more formal testing (UAT releases) come from the trunk. Periodically we integrate down from the integration branch into the trunk. This has the added benefit of protecting the trunk.</p> <p>i.e. </p> <pre><code>trunk integration feature1 feature2 </code></pre> http://stackoverflow.com/questions/1212555/serialize-c-class-directly-to-sql-server/1212560#1212560 10 Answer by Chris Needham for Serialize C# class directly to SQL server? Chris Needham 2009-07-31T13:33:31Z 2009-07-31T13:39:23Z <p>You can xml serialize the class into an xml field. We use this all the time for exception logging in an ETL.</p> <p>Using the XmlSerializer you may want a helper method somewhere which serializes the class to a string...</p> <pre><code>public static string SerializeToXml&lt;T&gt;(T value) { StringWriter writer = new StringWriter(CultureInfo.InvariantCulture); XmlSerializer serializer = new XmlSerializer(typeof(T)); serializer.Serialize(writer, value); return write.ToString(); } </code></pre> <p>Then just put the string into the db like any other.</p> http://stackoverflow.com/questions/1068774/what-free-external-tools-do-you-use-with-visual-studio/1170673#1170673 0 Answer by Chris Needham for What free external tools do you use with Visual Studio? Chris Needham 2009-07-23T09:40:12Z 2009-07-23T09:40:12Z <p>Ankh, for subversion. Doesn't work great, but allows you to move/rename files without going all around the houses.</p> <p>I say "doesn't work great" because I still use Tortoise for all the commit / update / branch / merge stuff and ankh needs to be manually refreshed to display the current status.</p> http://stackoverflow.com/questions/1164156/when-did-udfs-get-introduced-to-sql-server 0 When did UDFs get introduced to SQL Server? Chris Needham 2009-07-22T09:41:24Z 2009-07-22T10:07:54Z <p>Can anyone out there remember in which version of SQL server UDFs were introduced?</p> <p>EDIT: Thanks guys, looks like it was SQL 2000, I had thought it earlier. Thinking about it now I do remember those days of doing nasty workarounds and just waiting for the next version...</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa214363" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa214363</a>(SQL.80).aspx</p> http://stackoverflow.com/questions/1127132/overriding-a-read-write-property-to-make-it-readonly/1127243#1127243 1 Answer by Chris Needham for Overriding a read/write property to make it readonly Chris Needham 2009-07-14T18:46:09Z 2009-07-15T08:24:48Z <p>I think John Rudy may have a point here. Inheritance is not the answer to everything. If what you need to do is restrict a textbox so that only valid values can be accepted then perhaps you want to use a validation control to make sure that only certain values are allowed. </p> <p>This way you get the behaviour you want by making use of the components Microsoft have provided us with. No inherited class necessary.</p> <p>Edit: If you create a subclass every time you want to modify the behaviour of a UI control you will quickly have an unruly inheritance hierarchy on your hands. For this reason I would suggest you consider composition to modify UI controls.</p> http://stackoverflow.com/questions/399972/nunit-could-not-load-file-or-assemby-mytestproject 1 NUnit "could not load file or assemby 'MyTestProject' Chris Needham 2008-12-30T10:45:32Z 2009-07-05T19:37:24Z <p>I'm setting up a new 64 bit machine to run as a build server. When I try to load my NUnit test assembly into NUnit GUI I get the following error.</p> <p>There is nothing obvious missing, all the dependencies seem to be present. All the DLLs are compiled for the x86 platform.</p> <p>Using NUnit 2.4.7. I have tried upgrading to 2.4.8 but the same error occurs.</p> <blockquote> <p>System.IO.FileNotFoundException: Could not load file or assembly 'MyTestProject' or one of it's dependencies. The system cannot find the file specified.</p> </blockquote> <p>System.IO.FileNotFoundException...</p> <pre><code>Server stack trace: at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark&amp; stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark&amp; stackMark, Boolean forIntrospection) at System.Reflection.Assembly.Load(String assemblyString) at NUnit.Core.Builders.TestAssemblyBuilder.Load(String path) at NUnit.Core.Builders.TestAssemblyBuilder.Build(String assemblyName, Boolean autoSuites) at NUnit.Core.Builders.TestAssemblyBuilder.Build(String assemblyName, String testName, Boolean autoSuites) at NUnit.Core.TestSuiteBuilder.BuildSingleAssembly(TestPackage package) at NUnit.Core.TestSuiteBuilder.Build(TestPackage package) at NUnit.Core.SimpleTestRunner.Load(TestPackage package) at NUnit.Core.ProxyTestRunner.Load(TestPackage package) at NUnit.Core.ProxyTestRunner.Load(TestPackage package) at NUnit.Core.RemoteTestRunner.Load(TestPackage package) at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]&amp; outArgs) at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg, Int32 methodPtr, Boolean fExecuteInContext) Exception rethrown at [0]: at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&amp; msgData, Int32 type) at NUnit.Core.TestRunner.Load(TestPackage package) at NUnit.Util.TestDomain.Load(TestPackage package) at NUnit.Util.TestLoader.LoadTest(String testName) </code></pre> http://stackoverflow.com/questions/1078658/nunit-test-run-order/1078678#1078678 4 Answer by Chris Needham for NUnit Test Run Order Chris Needham 2009-07-03T09:55:56Z 2009-07-03T10:01:04Z <p>Your unit tests should each be able to run independently and stand alone. If they satisfy this criterion then the order does not matter.</p> <p>There are occasions however where you will want to run certain tests first. A typical example is in a Continuous Integration situation where some tests are longer running than others. We use the category attribute so that we can run the tests which use mocking ahead of the tests which use the database.</p> <p>i.e. put this at the start of your quick tests</p> <p>[Category("QuickTests")]</p> <p>Where you have tests which are dependant on certain environmental conditions, consider the <em>TestFixtureSetUp</em> and <em>TestFixtureTearDown</em> attributes, which allow you to mark methods to be executed before and after your tests.</p> http://stackoverflow.com/questions/1074589/case-statement-block-level-declaration-space-in-c/1074641#1074641 6 Answer by Chris Needham for Case Statement Block Level Declaration Space in C# Chris Needham 2009-07-02T14:16:30Z 2009-07-02T14:16:30Z <p>Ah - you don't have fall through, but you can use goto to jump to another labelled case block. Therefore the blocks have to be within the same scope.</p> http://stackoverflow.com/questions/969575/why-are-my-sql-indexes-being-ignored/969816#969816 2 Answer by Chris Needham for Why are my SQL indexes being ignored? Chris Needham 2009-06-09T12:34:21Z 2009-06-09T12:34:21Z <p>Have you tried adding the other columns to your index? i.e. InvoiceTotal and AmountPaid.</p> <p>The idea being that the query will be "covered" by the index, and won't have to refer back to the table.</p> http://stackoverflow.com/questions/925123/response-write-outdated/925235#925235 0 Answer by Chris Needham for Response.Write outdated? Chris Needham 2009-05-29T09:52:20Z 2009-05-29T09:52:20Z <p>There are probably certain circumstances where you <em>need</em> Response.Write.</p> <p>Supposing you were storing images in a database and wanted to stream them via a byte array onto your page. I don't think you'd be able to do it without Response.Write.</p> http://stackoverflow.com/questions/868301/how-can-i-teach-a-know-it-all-beginner-programmer/920716#920716 0 Answer by Chris Needham for How can I teach a know-it-all beginner programmer? Chris Needham 2009-05-28T13:02:03Z 2009-05-28T13:02:03Z <p>Don't worry about it, this guy will probably be a manager in a few years time.</p> http://stackoverflow.com/questions/905728/when-programmers-dont-have-enough-work-what-to-do/916205#916205 2 Answer by Chris Needham for When Programmers Don’t Have Enough Work, what to do? Chris Needham 2009-05-27T14:52:35Z 2009-05-27T14:52:35Z <p>This only happens once in a blue moon so when it does the developers need to <strong>GO TO THE PUB!!!</strong></p> http://stackoverflow.com/questions/769193/ssis-designer-is-running-very-slowly/797985#797985 0 Answer by Chris Needham for SSIS Designer is running VERY slowly Chris Needham 2009-04-28T13:39:38Z 2009-05-13T12:21:33Z <p>How big is your package? Are you attempting to perform a whole ETL in a single package?</p> <p>It helps to keep your packages small, and manage the orchestration in a master package.</p> <p>This helps with SCC as well.</p> <p>Edit: To call one package from another, the standard way is to use an "Execute Package Task" from the toolbox. However, with very large sets of packages this too can become cumbersome and it can become easier to use NAnt/MSbuild to manage the orchestration.</p> http://stackoverflow.com/questions/829535/what-resources-do-you-use-to-stay-up-to-date-in-your-domain/829882#829882 0 Answer by Chris Needham for What resources do you use to stay up to date in your domain? Chris Needham 2009-05-06T14:28:29Z 2009-05-06T14:28:29Z <p>Depends on your journey to work, but for those who use the tube (where it is often too crowded to even read a paper), podcasts are great.</p> <p>DotNetRocks and Hanselminutes.</p> http://stackoverflow.com/questions/752040/suggest-class-names-for-an-event-booking-system/752053#752053 1 Answer by Chris Needham for Suggest class names for an Event Booking system Chris Needham 2009-04-15T14:47:32Z 2009-04-15T14:47:32Z <p>If you really want to use a C# reserved word, you can prefix it with '@'.</p> <p>E.g.</p> <pre><code>public class @class { ... } </code></pre> <p>Use with caution...</p> http://stackoverflow.com/questions/733103/forms-datagridview-missing-onrowdatabound 4 Forms DataGridView missing OnRowDataBound? Chris Needham 2009-04-09T06:59:53Z 2009-04-09T11:20:53Z <p>Yesterday a colleague asked me how to display data in a grid where the built in data binding doesn't support what he wants to do for some of the columns.</p> <p>Pleased to be able to help I explained all about the OnRowDataBound event and how you can hook into it and dynamically manipulate the cells in the row object to do pretty much what you want. Great. If you're working with asp.net.</p> <p>Only problem it he's writing a winforms app and the DataGridView doesn't support OnRowDataBound! I couldn't believe it, but it's just not there.</p> <p>So how the hell do the winforms guys manage this?</p> http://stackoverflow.com/questions/146316/ideal-number-of-classes-per-namespace-branch/686731#686731 0 Answer by Chris Needham for Ideal number of classes per namespace branch Chris Needham 2009-03-26T17:16:19Z 2009-03-26T17:16:19Z <p>I must say I find all of the above very surprising reading.</p> <p>Usability experts tell us to keep the number of choices in a menu to a limited number so we can immediately see all the choices. The same applies to how you organise your work.</p> <p>I would typically expect 4-10 types in a namespace. Saves so much hunting round for stuff and scrolling up and down. It's so quick and easy to move stuff around using resharper that I don't see any reason why not to.</p> http://stackoverflow.com/questions/629570/what-is-the-proper-amount-of-time-required-to-interview-a-net-developer/629621#629621 2 Answer by Chris Needham for What is the proper amount of time required to interview a .NET developer? Chris Needham 2009-03-10T10:38:01Z 2009-03-10T10:38:01Z <p>The interviewer's mind is typically made up in the first ten minutes, the rest of the time is just spent trying to justify that decision.</p> <p>This is especially true if there is a technical test which has already been marked in advance.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/569077#569077 5 Answer by Chris Needham for What real life bad habits has programming given you? Chris Needham 2009-02-20T10:41:19Z 2009-02-20T10:41:19Z <p>When a website fails to function correcly I load up FireBug and Tamper Data...</p> http://stackoverflow.com/questions/564756/should-i-just-give-up-on-programming/568930#568930 0 Answer by Chris Needham for Should I just give up on programming? Chris Needham 2009-02-20T09:44:11Z 2009-02-20T09:44:11Z <p>Why not become a bad project manager?</p> http://stackoverflow.com/questions/1299216/more-private-than-private-c/1299268#1299268 Comment by Chris Needham on More private than private? (C#) Chris Needham 2009-09-09T13:00:07Z 2009-09-09T13:00:07Z Clever, but so, so wrong. http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1367229#1367229 Comment by Chris Needham on Why are database features being ignored, and instead reinvented in the middle tier? Chris Needham 2009-09-08T10:52:07Z 2009-09-08T10:52:07Z +1 - yes, it's because the tools are crappy http://stackoverflow.com/questions/1367087/why-are-database-features-being-ignored-and-instead-reinvented-in-the-middle-tie/1367166#1367166 Comment by Chris Needham on Why are database features being ignored, and instead reinvented in the middle tier? Chris Needham 2009-09-08T10:50:22Z 2009-09-08T10:50:22Z Who are all these developers who don't know SQL? Beginners perhaps? http://stackoverflow.com/questions/1368302/how-bad-is-my-query Comment by Chris Needham on How bad is my query? Chris Needham 2009-09-02T15:30:26Z 2009-09-02T15:30:26Z Dude, you really are lazy! I'm surprised you could be bothered to post this! ;-) http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding/1319559#1319559 Comment by Chris Needham on how to keep yourself from perfectionism when coding Chris Needham 2009-08-27T14:07:17Z 2009-08-27T14:07:17Z There is an unwritten rule of programming that you can get away with ANYTHING, so long as you say it is a hack in a comment. http://stackoverflow.com/questions/623136/calling-a-method-in-parent-page-from-user-control/623166#623166 Comment by Chris Needham on Calling a method in parent page from user control Chris Needham 2009-08-13T09:38:43Z 2009-08-13T09:38:43Z Observer pattern http://stackoverflow.com/questions/1262141/what-tools-are-available-for-dts-to-ssis-package-conversion/1265484#1265484 Comment by Chris Needham on What tools are available for DTS to SSIS package conversion Chris Needham 2009-08-13T09:26:47Z 2009-08-13T09:26:47Z @Sam - I know enough about DTS and SSIS and the differences between them to know that no tool is going to give a decent conversion. At the core of SSIS is the data pipeline, whereas DTS just runs a series of tasks. You say yourself no tool is going to do it, but then criticise me for saying the same. http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1205543#1205543 Comment by Chris Needham on What are things that make a programmer's life miserable? Chris Needham 2009-08-03T16:04:15Z 2009-08-03T16:04:15Z Pyramids of pain http://stackoverflow.com/questions/863407/structure-within-staging-area-of-data-warehouse/1194989#1194989 Comment by Chris Needham on Structure within staging area of data warehouse Chris Needham 2009-07-29T14:09:30Z 2009-07-29T14:09:30Z Thanks Ken, yes, this is similar to designs I have worked with in the past. What I find strange is that there is nothing published about it. http://stackoverflow.com/questions/1170699/is-viewstate-relevant-in-asp-net-mvc Comment by Chris Needham on Is ViewState relevant in ASP.NET MVC? Chris Needham 2009-07-23T10:05:59Z 2009-07-23T10:05:59Z This kind of question I find very useful. I am not using ASP.NET MVC right now because I'm not presently doing web stuff at all, but I still want to know about it so I can pick it up quicker when I am using it. http://stackoverflow.com/questions/982568/what-is-the-best-way-to-auto-generate-insert-statements-for-a-sql-server-table/1115535#1115535 Comment by Chris Needham on What is the best way to auto-generate INSERT statements for a SQL Server table? Chris Needham 2009-07-22T10:50:15Z 2009-07-22T10:50:15Z Dude, I think you need to ask a new question http://stackoverflow.com/questions/1147277/can-you-go-home-at-5pm-guilt-free/1147291#1147291 Comment by Chris Needham on Can you go home at 5pm, guilt free? Chris Needham 2009-07-20T12:22:56Z 2009-07-20T12:22:56Z This defintely happens, the danger is staying late and breaking a load of stuff, when if you went home you would suss it out straight away in the morning. http://stackoverflow.com/questions/969575/why-are-my-sql-indexes-being-ignored/970270#970270 Comment by Chris Needham on Why are my SQL indexes being ignored? Chris Needham 2009-06-10T10:51:01Z 2009-06-10T10:51:01Z Hey, I said that! Not quite as well though. http://stackoverflow.com/questions/940464/what-tools-do-you-guys-use-when-integrating-with-subversion-on-windows/940801#940801 Comment by Chris Needham on What tools do you guys use when integrating with Subversion on Windows? Chris Needham 2009-06-03T10:54:50Z 2009-06-03T10:54:50Z Yep, this happened to me as well and updating to the daily build of Ankh fixed it. http://stackoverflow.com/questions/924765/language-menagerie/924776#924776 Comment by Chris Needham on Language Menagerie Chris Needham 2009-05-29T09:55:23Z 2009-05-29T09:55:23Z Ouch! That superflous apostrophe is hurting me.