User John Nolan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:20:51Z http://stackoverflow.com/feeds/user/1116 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1707080/writing-user-stories-for-internal-technical-tasks 1 Writing user stories for internal technical tasks John Nolan 2009-11-10T10:50:26Z 2009-12-09T12:14:17Z <p>I am attempting to manage my projects a little better so I am looking at attempting to apply some of (eventually all) the features of <a href="http://en.wikipedia.org/wiki/Scrum%5F%28development%29" rel="nofollow">scrum</a>.</p> <p>Looking at <a href="http://en.wikipedia.org/wiki/User%5Fstory" rel="nofollow">user stories</a> specifically the high level format seems to be:</p> <p>As a <strong>User</strong> I can <strong>Feature Description</strong> </p> <p>or </p> <p><strong>Artifact</strong> is <strong>Doing Something</strong></p> <p>How would I write "Upgrade the Database"?</p> <p>Is it simply Upgrade the Database?</p> <p>I think I am being thrown off as there is no specific actor/customer and that the customer is the IT department.</p> http://stackoverflow.com/questions/1870654/installing-asp-mvc-2-beta-nunit-project-templates-untrusted-component-error 0 installing asp.mvc 2 beta nunit project templates untrusted component error. John Nolan 2009-12-08T23:38:01Z 2009-12-08T23:38:01Z <p>I've been trying to get nunit 2.5 to work with mvc 2 (VS2008) after following some <a href="http://www.dalsoft.co.uk/blog/index.php/2009/11/17/nunit-templates-for-asp-net-mvc-2-0-preview-2/" rel="nofollow">guides</a> and updating registries. I though I was done. I can select nunit when choosing my testing frame work but there is no test project created. When I create a new mvcapplication.nunit.tests template it fails with the error.</p> <blockquote> <p>Error: this template attempted to load an untrusted component 'Microsoft.VisualStudio.Web.Extensions', Version 9.0.0.0 Culture=neutral, PublicKeyToken=31bf3856ad364e35'</p> </blockquote> <p>I'm a little lost as to where to find the component and how to make it trusted. </p> http://stackoverflow.com/questions/1833289/is-it-acceptable-to-have-useless-code/1833321#1833321 6 Answer by John Nolan for Is it acceptable to have useless code? John Nolan 2009-12-02T14:42:11Z 2009-12-02T14:42:11Z <p>My rule of thumb,</p> <p>If its not used get rid of it.</p> <p>All surplus comments, attrributes are just noise and help your code to become unreadable. If left there they encourage more surplus code in your code base. So remove it.</p> http://stackoverflow.com/questions/1802515/how-incease-the-disk-space-of-database-in-sql-2005-server/1802590#1802590 0 Answer by John Nolan for How incease the disk space of database in sql 2005 server? John Nolan 2009-11-26T09:31:53Z 2009-11-26T09:31:53Z <p>Alternatively you can enable AUTOGROWTH</p> <pre><code>USE master GO ALTER DATABASE db_name MODIFY FILE (NAME = db_name, FILEGROWTH = 10MB) </code></pre> http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net/1756371#1756371 10 Answer by John Nolan for Which people should be followed up to learn more on C# and .NET? John Nolan 2009-11-18T14:28:16Z 2009-11-18T14:56:12Z <p>Obvious bloggers</p> <ul> <li><a href="http://weblogs.asp.net/scottgu/" rel="nofollow">Scott Guthrie</a></li> <li><a href="http://www.hanselman.com/blog/" rel="nofollow">Scott Hanselman</a></li> <li><a href="http://haacked.com/" rel="nofollow">Phil Haack</a></li> <li><a href="http://srtsolutions.com/blogs/billwagner/" rel="nofollow">Bill Wagner</a></li> <li><a href="http://blogs.msdn.com/ericlippert/" rel="nofollow">Eric Lippert</a></li> </ul> <p>No so obvious</p> <ul> <li><a href="http://community.bartdesmet.net/blogs/bart/default.aspx" rel="nofollow">Bart De Smet</a></li> <li><a href="http://msmvps.com/blogs/jon%5Fskeet/default.aspx" rel="nofollow">Jon</a> <a href="http://www.yoda.arachsys.com/csharp/" rel="nofollow">Skeet</a></li> <li><a href="http://www.developingfor.net/" rel="nofollow">http://www.developingfor.net/</a></li> </ul> http://stackoverflow.com/questions/1748646/is-agile-development-for-the-lone-developer/1748665#1748665 1 Answer by John Nolan for Is agile development for the lone developer? John Nolan 2009-11-17T12:53:21Z 2009-11-17T12:58:57Z <p>I suppose the first things you need to ask is what do you mean by agile.</p> <p>Read the principles behind the <a href="http://agilemanifesto.org/principles.html" rel="nofollow">Agile Manifesto</a></p> <ul> <li>Our highest priority is to satisfy the customer</li> <li>Embrace change</li> <li>Deliver working software frequently</li> <li>Business people and developers must work together </li> </ul> <p>I could go on but these are things that <strong>any size team</strong> can do. Even just you.</p> <p>You'll find some useful info here:</p> <p><a href="http://stackoverflow.com/questions/1407189/can-agile-scrum-be-used-by-1-or-2-developers">http://stackoverflow.com/questions/1407189/can-agile-scrum-be-used-by-1-or-2-developers</a></p> http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods/1743566#1743566 2 Answer by John Nolan for Should I document my private methods? John Nolan 2009-11-16T17:17:55Z 2009-11-16T22:57:12Z <p>I wouldn't. If your private methods need documentation it may be worth be spending time making your code cleaner in this area. </p> <p>Edit: even with a summary I would not document. Private methods can change, sprout anew, disappear. One of the basic tenets of OO is one of encapsulation. You don't need to know what a private method is doing. And as for developers, who is going to keep up to date all this documentation? First time you but in future?</p> <p>Edit 2: From comments </p> <blockquote> <p>I strongly disagree. The only time a private method shouldn't be documented (in some way) is when its purpose is completely obvious from its name and its source code. If there is anything "clever" about your code at all, it deserves a comment explaining why you're doing it that way.</p> </blockquote> <p>I strongly agree but.. code shouldn't be '<strong>clever</strong>', code should be <em>functional</em> and <em>readable</em>. Most of the time you should aim for your code to be as transparent as possible to the reader, if you need to comment it, then you should look at making your code clearer before you hit javadoc (or whatever you use).</p> <p>Edit 3:</p> <p>What would you much rather see.?</p> <pre><code>/** * This method doesn't do what you expect it to. * Below you will find a whole ream of impenetrable * code. Where there are bits that look that they do x, they don't * they do y. **/ private void someComplexInternalMethod() { ... badly named variables comments to describe intent perhaps some out of date orphaned comments as code has been removed but comment remains .... .... looong methods } private void WellNamedMethod() { ... well named variables shorter method, highly cohesive self documenting } </code></pre> http://stackoverflow.com/questions/1728569/import-of-excel-in-sql-imports-null-lines 0 import of excel in SQL imports 'NULL' lines John Nolan 2009-11-13T11:07:29Z 2009-11-13T14:17:33Z <p>I have a stored procedure that imports differently formatted workbooks into a database table. does work on them then drops the table.</p> <p>Here is the populating query. </p> <pre><code>SELECT IDENTITY(INT,1,1) AS ID INTO #test101 FROM OPENROWSET ('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=WorkBook.xls',[WorkSheet$]) </code></pre> <p>Some spreadsheets seem to create an null row in the bottom. </p> <p>How can I import and ignore the null rows?</p> http://stackoverflow.com/questions/1725020/sqlconnection-problem/1725121#1725121 1 Answer by John Nolan for SqlConnection problem John Nolan 2009-11-12T20:26:39Z 2009-11-12T20:26:39Z <p>An easy way to get your connection string is</p> <ol> <li>create a file called x.udl</li> <li>double click on it</li> <li>Follow wizard</li> <li>open x.udl file in notepad</li> <li>and inside you will find your connection string.</li> </ol> http://stackoverflow.com/questions/1701850/sql-server-date-formats-ddd/1701901#1701901 1 Answer by John Nolan for SQL Server Date Formats -- ddd John Nolan 2009-11-09T15:49:28Z 2009-11-09T15:49:28Z <p>You can't ddd out of the box but you can do the full day</p> <p>e.g. </p> <p><code>select datename(weekday,getdate())</code> </p> <p>returns 'Monday' and you can just take the first 3 letters.</p> http://stackoverflow.com/questions/1407189/can-agile-scrum-be-used-by-1-or-2-developers/1407204#1407204 3 Answer by John Nolan for Can Agile/Scrum be used by 1 or 2 developers? John Nolan 2009-09-10T19:22:21Z 2009-11-06T17:17:27Z <p>Yes you can use the principles of Scrum/Agile for 1 person. If you want personal productivity look at the <a href="http://www.pomodorotechnique.com/" rel="nofollow">Pomodoro technique</a> or <a href="http://en.wikipedia.org/wiki/Getting%5FThings%5FDone" rel="nofollow">GTD</a>.</p> <p>Agile techniques are suited to smaller teams as with larger teams it becomes more difficult to manage communication. With 1 or 2 people developing a project (and a customer) you should be able to work in an agile manner very easily. i suggest you read the <a href="http://agilemanifesto.org/principles.html" rel="nofollow">agile manifesto</a> as a good start to agile. For scrum, I'd suggest you look at <a href="http://www.crisp.se/henrik.kniberg/ScrumAndXpFromTheTrenches.pdf" rel="nofollow">Scrum from the trenches</a>. <a href="http://www.agilemanagement.net/Articles/Weblog/KanbaninAction.html" rel="nofollow">Kanban</a> seems to be in fashion now and there is a <a href="http://personalkanban.com/" rel="nofollow">personal Kanban</a> too!</p> http://stackoverflow.com/questions/1687988/if-else-stored-procedure/1688010#1688010 1 Answer by John Nolan for IF/ELSE Stored Procedure John Nolan 2009-11-06T14:38:14Z 2009-11-06T14:38:14Z <p>yeah Nick is right.</p> <p>You need to use <code>SET</code> or <code>SELECT</code> to assign to @tmpType</p> http://stackoverflow.com/questions/1687190/are-comments-to-show-what-version-code-was-added-modified-for-useful/1687206#1687206 5 Answer by John Nolan for Are comments to show what version code was added/modified for useful? John Nolan 2009-11-06T12:13:56Z 2009-11-06T12:19:16Z <p>No value whatsoever. If you have a blame tool in your version control this will achieve this, they just add noise. </p> <p>Whats worse is they will attract further comments to your code to make it completely unreadable</p> <pre><code>// added for superEnterpriseyWonder v2.5 string superMappingTag = MakeTag(extras); if (superMappingTag.empty()) { // bug fix #12345674 shuld have been true autoMapping = true; // bug fix #12345674 should have been true i++; // v2.6 now need to up the counter DO NOT DELETE } // end added for superEnterpriseyWonder v2.5 </code></pre> <p>and then someone will delete the method but leave the code comment in</p> <pre><code>// added for superEnterpriseyWonder v2.5 // bug fix #12345674 should have been true // v2.6 now need to up the counter DO NOT DELETE // end added for superEnterpriseyWonder v2.5 </code></pre> <p>Just say no to crappy comments</p> http://stackoverflow.com/questions/1686943/opening-a-new-page/1686958#1686958 4 Answer by John Nolan for opening a new page? John Nolan 2009-11-06T11:17:18Z 2009-11-06T11:17:18Z <p>something like </p> <pre><code> onclick="window.open('default.aspx','','height=300,width:220,scrollbars=yes,resizable=yes,top=0,left=0,status=yes');" </code></pre> http://stackoverflow.com/questions/1679618/what-makes-one-a-good-team-member/1679624#1679624 3 Answer by John Nolan for What makes one a good team member? John Nolan 2009-11-05T10:24:03Z 2009-11-05T10:24:03Z <ol> <li>The ability to communicate clearly and effectively.</li> <li>To keep and open mind and not judge</li> <li>To assist when needed and to not interfere.</li> </ol> http://stackoverflow.com/questions/1679145/interface-and-protocol-explanation/1679160#1679160 8 Answer by John Nolan for @interface and @protocol explanation? John Nolan 2009-11-05T08:42:03Z 2009-11-05T09:19:19Z <p>An interface is where you define the attributes and operations of class. You must setout the implementation too.</p> <p>A protocol is like an interface for java. </p> <p>e.g.</p> <pre><code>@protocol Printing -(void) print; @end </code></pre> <p>can be implemented </p> <p>by declaring (confusingly in the interface)</p> <pre><code>@interface Fraction: NSObject &lt;Printing, NSCopying&gt; { //etc.. </code></pre> <p>The confusing thing for java developers is that the curly braces <code>{}</code> are not the end of the interface e.g.</p> <pre><code>@interface Forwarder : Object { id recipient; } //This is not the end of the interface - just the operations - (id) recipient; - (id) setRecipient:(id) _recipient; //these are attributes. @end //This is the end of the interface </code></pre> http://stackoverflow.com/questions/1667947/donut-caching-tutorials/1668017#1668017 4 Answer by John Nolan for Donut Caching Tutorials John Nolan 2009-11-03T15:25:30Z 2009-11-03T15:25:30Z <p>Donut caching is where you cache every thing on a page except a few dynamic regions. So you cache the doughnut but not the hole.</p> <p>You should use it when most of you page is static other than 1 changable section.</p> <p>You should read <a href="http://weblogs.asp.net/scottgu/archive/2006/11/28/tip-trick-implement-donut-caching-with-the-asp-net-2-0-output-cache-substitution-feature.aspx" rel="nofollow">this</a> on implementation advice.</p> http://stackoverflow.com/questions/532341/what-do-team-leaders-do/1666116#1666116 0 Answer by John Nolan for What do Team Leaders do? John Nolan 2009-11-03T09:05:29Z 2009-11-03T09:05:29Z <p>Roy Osherove has started a blog about <a href="http://5whys.com/" rel="nofollow">Team Leadership</a> which has good resource in it. I realise this doesn't answer your questions directly but it is related so I thought I would respond with it.</p> http://stackoverflow.com/questions/1664192/not-good-starter-and-even-not-good-finisher/1664301#1664301 6 Answer by John Nolan for Not good starter AND even not good finisher John Nolan 2009-11-02T23:03:50Z 2009-11-02T23:03:50Z <p>Ok it seems like you are good at procrastinating. What would make your tasks easier is to:</p> <ol> <li>break them down in smaller chunks.</li> <li>Focus on those chunks completely</li> <li>make sure you don't get distracted</li> <li>if you are not focussing on the main task try and eliminate the reasons why.</li> <li>set smaller targets and reward yourself withh little breaks</li> <li>note down the achievements you've made (no matter how small)</li> </ol> <p>This is all covered by the <a href="http://www.pomodorotechnique.com/" rel="nofollow">Pomodoro Technique</a></p> http://stackoverflow.com/questions/1662260/how-do-you-tell-what-css-settings-are-affecting-the-layout/1662270#1662270 1 Answer by John Nolan for How do you tell what CSS settings are affecting the layout? John Nolan 2009-11-02T16:27:15Z 2009-11-02T16:27:15Z <p>Firebug is a big help to see what CSS is decorating an element. </p> http://stackoverflow.com/questions/1661628/which-objects-to-mock-when-doing-tdd/1661680#1661680 0 Answer by John Nolan for Which objects to mock when doing TDD John Nolan 2009-11-02T14:40:26Z 2009-11-02T14:40:26Z <p>At some point you are not going to get away from creating from one object from another but you should be writing software to good design principles. E.g. SRP , DI etc..</p> <p>Where you have many dependencies you may fund an IoC container will help you to manage them all.</p> <p>When dealing with legacy code, you may find it useful to read Micael Feather's Working Effectively with Legacy code. The book has many tehcniques on how to get your system under test.</p> http://stackoverflow.com/questions/1660850/sharing-code-between-asp-net-mvc-controllers/1660858#1660858 1 Answer by John Nolan for Sharing code between ASP.NET MVC Controllers John Nolan 2009-11-02T11:56:02Z 2009-11-02T11:56:02Z <p>I'd factor out in to a helper class or something. From what you have described the functionality <em>helps</em> the controllers/</p> http://stackoverflow.com/questions/1660053/net-development-in-a-team/1660082#1660082 5 Answer by John Nolan for .NET Development In a Team John Nolan 2009-11-02T08:48:01Z 2009-11-02T08:48:01Z <p>Chain the laptops to the desks.</p> http://stackoverflow.com/questions/1658378/how-to-make-money-with-my-programming/1658407#1658407 -2 Answer by John Nolan for How to make money with my programming? John Nolan 2009-11-01T21:32:04Z 2009-11-01T21:32:04Z <p>C++ is now in my opinion a niche language, most enterprise stuff is written in java and C#. But this is no bad thing. If you want to do c++ and make money you may want to take a gamble on mobile development for Nokia platform specifically <a href="http://qt.nokia.com/products" rel="nofollow">QT</a></p> http://stackoverflow.com/questions/1658378/how-to-make-money-with-my-programming/1658395#1658395 6 Answer by John Nolan for How to make money with my programming? John Nolan 2009-11-01T21:26:54Z 2009-11-01T21:26:54Z <ol> <li>learn how to code</li> <li>code</li> <li>????</li> <li>profit</li> </ol> http://stackoverflow.com/questions/1627827/using-mbunit-to-test-values-against-a-database/1627881#1627881 3 Answer by John Nolan for Using MBUnit to test values against a database John Nolan 2009-10-26T23:19:23Z 2009-10-26T23:28:03Z <p>The standard answer is to redesign you class so you can mock out the dependency. This is typically done by injecting your datasource as an interface into you class.</p> <p>e.g. You may have a class that acts like below</p> <pre><code>class John { public John() { } public void Load() { // call to db in here e.g SQLCommand } } </code></pre> <p>Load is dependent on the SQLCommand so you will always need to call a db for this</p> <p>If you inject a datasource interface you have more flexibility</p> <p>e.g.</p> <pre><code>class John { IDataSource _db; public John(IDataSource db) { _db = db; } public void Load() { _db.Load("John"); // IDataSource can now be either SQL //or hardcoded or what ever much easier to test } } </code></pre> <p><hr /></p> <p>Now if you cannot/will not do that you must treat this test as an integration test. How about you set up data for it. e.g. insert the row you are wanting to read. Then return the data to its original state. The down side to this is that your test will be slow and brittle.</p> http://stackoverflow.com/questions/1620485/which-metaphor-would-you-use-to-describe-programming/1620509#1620509 5 Answer by John Nolan for Which metaphor would you use to describe programming? John Nolan 2009-10-25T10:09:51Z 2009-10-25T10:09:51Z <p>"Gardening" - your code base grows and grows but without careful weeding and care. It becomes an unmanageable mess.</p> http://stackoverflow.com/questions/1619265/round-to-nearest-10/1619275#1619275 4 Answer by John Nolan for Round to nearest 10 John Nolan 2009-10-24T22:01:18Z 2009-10-24T22:01:18Z <p>div by 10 then use ceil then mult by 10</p> <p><a href="http://php.net/manual/en/function.ceil.php" rel="nofollow">http://php.net/manual/en/function.ceil.php</a></p> http://stackoverflow.com/questions/1609382/resharper-keyboard-map/1609449#1609449 2 Answer by John Nolan for ReSharper Keyboard Map John Nolan 2009-10-22T19:31:48Z 2009-10-22T19:31:48Z <p>Don't know what you have customised but you can set keyboard shortcuts in the options Tools|options|keyboard there is a million different options.</p> <p>If you are missing R# and don't want to pay look at <a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/CodeRushX/Index.xml" rel="nofollow">Code Rush Xpress</a></p> http://stackoverflow.com/questions/1587530/mixing-vb-net-with-c/1587546#1587546 0 Answer by John Nolan for Mixing Vb.net with C# John Nolan 2009-10-19T08:32:54Z 2009-10-19T08:32:54Z <p>I currently work in a mixed environment and usually its fine. The biggest annoyance is that I often come across small speed bumps when changing from 1 language to another. </p> <p>e.g</p> <ul> <li>semicolon at the end of vb lines</li> <li>mixing square and curved brackets up</li> <li>declaring variables with Dim in c#</li> </ul> http://stackoverflow.com/questions/1833289/is-it-acceptable-to-have-useless-code/1833312#1833312 Comment by John Nolan on Is it acceptable to have useless code? John Nolan 2009-12-02T14:43:05Z 2009-12-02T14:43:05Z -1 I'd advise you to keep snippets in a snippet plugin, or source control. http://stackoverflow.com/questions/1812099/common-questions-to-java-1-year-programmer Comment by John Nolan on common questions to java 1+ year programmer John Nolan 2009-11-28T09:42:37Z 2009-11-28T09:42:37Z is this to prepare for an interview? http://stackoverflow.com/questions/1792076/hibernate-problem/1802476#1802476 Comment by John Nolan on Hibernate problem John Nolan 2009-11-26T09:33:38Z 2009-11-26T09:33:38Z And you can delete this too. http://stackoverflow.com/questions/1792076/hibernate-problem/1797375#1797375 Comment by John Nolan on Hibernate problem John Nolan 2009-11-26T09:17:54Z 2009-11-26T09:17:54Z I've added this to your questions please delete http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net/1756371#1756371 Comment by John Nolan on Which people should be followed up to learn more on C# and .NET? John Nolan 2009-11-18T15:32:00Z 2009-11-18T15:32:00Z Really? Never heard of him http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net Comment by John Nolan on Which people should be followed up to learn more on C# and .NET? John Nolan 2009-11-18T14:31:43Z 2009-11-18T14:31:43Z think if you edit it. then you can choose it to be wiki http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net Comment by John Nolan on Which people should be followed up to learn more on C# and .NET? John Nolan 2009-11-18T14:27:25Z 2009-11-18T14:27:25Z I think this question would benefit from a Community Wiki http://stackoverflow.com/questions/1748646/is-agile-development-for-the-lone-developer Comment by John Nolan on Is agile development for the lone developer? John Nolan 2009-11-17T12:53:54Z 2009-11-17T12:53:54Z possible dupe <a href="http://stackoverflow.com/questions/1407189/can-agile-scrum-be-used-by-1-or-2-developers" rel="nofollow" title="can agile scrum be used by 1 or 2 developers">stackoverflow.com/questions/1407189/&hellip;</a> http://stackoverflow.com/questions/1743538/should-i-document-my-private-methods/1743566#1743566 Comment by John Nolan on Should I document my private methods? John Nolan 2009-11-16T22:40:36Z 2009-11-16T22:40:36Z @Daniel Pryden - I strongly agree with you. http://stackoverflow.com/questions/1740950/how-to-update-every-second-from-db/1740972#1740972 Comment by John Nolan on How to update every second from db? John Nolan 2009-11-16T09:15:12Z 2009-11-16T09:15:12Z +1 for Threading timer. I'd be wary of what is in the update panel as it sends back a lot of unneeded html. Returning json would be less busy. http://stackoverflow.com/questions/1725294/saving-an-image-to-the-sqlserver Comment by John Nolan on saving an image to the sqlserver John Nolan 2009-11-12T20:57:09Z 2009-11-12T20:57:09Z which version of sqlserver? http://stackoverflow.com/questions/68144/using-xmlrpc-in-c-and-windows/1287083#1287083 Comment by John Nolan on Using XmlRpc in C++ and Windows John Nolan 2009-11-11T14:59:09Z 2009-11-11T14:59:09Z also please don't ask for people to send you stuff offline. This website is about sharing knowledge as soon as you request stuff to be sent to you, it defeats the purpose of this open forum http://stackoverflow.com/questions/1679145/interface-and-protocol-explanation/1679160#1679160 Comment by John Nolan on @interface and @protocol explanation? John Nolan 2009-11-10T15:59:10Z 2009-11-10T15:59:10Z @QuinnTaylor I didn't want to say 'Java does it better' but I phrased it that way as the OP asked the question with relation to the Java language. http://stackoverflow.com/questions/1707080/writing-user-stories-for-internal-technical-tasks/1707138#1707138 Comment by John Nolan on Writing user stories for internal technical tasks John Nolan 2009-11-10T11:27:54Z 2009-11-10T11:27:54Z What if the story is our db platform is too old and I want to upgrade it because I don't want to use a 10 yo db and some of the new features of a 5 yo db would come in handy http://stackoverflow.com/questions/1692691/help-with-a-program-stuck-and-i-dunno-why Comment by John Nolan on help with a program-(stuck and i dunno why) John Nolan 2009-11-07T11:08:38Z 2009-11-07T11:08:38Z @paxdiablo the last fileflyer link is a .rar think that should be the source but it doesn't work