User xero - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T02:41:25Zhttp://stackoverflow.com/feeds/user/10961http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/744162/dynamic-selection-of-dataset-in-ssrs/815353#8153530Answer by xero for Dynamic selection of dataset in SSRSxero2009-05-02T18:37:00Z2009-05-02T18:37:00Z<p>It would be easier to create and maintain if you have two separate tables and hide one or the other depending on the choice made.</p>
<p>I haven't tried this, but I think another possibility would be to use three reports: a container, a summary subreport, and a detail subreport. Switch between the subreports according to the choice. </p>
<p>There is a performance gotcha to the first implementation though. SSRS will try to fill <strong>every</strong> DataSet in the report when it loads, even ones that are not used in the report's output or by other DataSets or expressions. In other words, just because you're displaying the summary report, doesn't mean that you're not asking the database to fill out your detail data as well.</p>
<p>There is a workaround that can improve the performance a bit, but will still end up with a trip to the server. The hack is to set a flag parameter to determine whether or not the query should actually return any real results or if it should just return the columns you want. </p>
http://stackoverflow.com/questions/806590/vs2005-vs2008-dataset-designer-insert-a-row-into-a-table-that-has-an-autogenerat/815314#8153140Answer by xero for VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid columnxero2009-05-02T18:19:36Z2009-05-02T18:19:36Z<p>Possibly one of these:</p>
<ul>
<li>If you don't need the column in your DataSet for your app, then remove it.</li>
<li>If you want the column but don't care to give it a value, then change it to allow DBNull.</li>
<li>You can always turn off constraint enforcement (probably a bad idea): DataSet.EnforceConstraints = false</li>
<li>You could fill the column with a surrogate key that does not get sent to the DB.</li>
</ul>
<p>For the first two options, if you want the convenience of letting the designer keep your structure in sync with your database, then you could remove the column or allow null programmatically, perhaps right next to a "// HACK: " comment explaining why.</p>
http://stackoverflow.com/questions/169497/best-dual-hd-set-up-for-development/169601#1696011Answer by xero for Best Dual HD Set up for Developmentxero2008-10-04T02:38:45Z2008-10-04T02:38:45Z<p>Mark one drive as being your warehouse, put all of your source code, data, assets, etc. on there and back it up regularly. You'll want this to be stable and easy to recover. You can even switch My Documents to live here if wanted.</p>
<p>The other drive should contain the OS, drivers, and all applications. This makes it easy and secure to wipe the drive and reinstall the OS every 18-24 months as you tend to have to do with Windows.</p>
<p>If you want to improve performance, some say put the swap on the warehouse drive. This will increase OS performance, but will decrease the life of the drive.</p>
<p>In reality it all depends on your goals. If you need more performance then you even out the activity level. If you need more security then you use RAID and mirror it. My mix provides for easy maintenance with a reasonable level of data security and minimal bit rot problems.</p>
<p>Your most active files will be the registry, page file, and running applications. If you're doing lots of data crunching then those files will be very active as well.</p>
http://stackoverflow.com/questions/167388/any-clever-way-to-launch-a-makefile-in-visual-studio-only-if-build-succeeded/167408#1674080Answer by xero for Any clever way to launch a makefile in Visual Studio only if build succeeded?xero2008-10-03T15:24:30Z2008-10-03T15:24:30Z<p>Go to Project Properties. I assume you already have something in the "Post-Build event command line" box? There is a "Run the post-build event" combobox, set it to "On successful build".</p>
<p>Is that what you're looking for?</p>
http://stackoverflow.com/questions/162805/writing-maintainable-code/162868#1628680Answer by xero for Writing maintainable codexero2008-10-02T15:08:18Z2008-10-02T15:08:18Z<p>Good comments. Good comments help with abstraction by stating the code's intended purpose, bad comments just restate what the code is doing. Comments could actually come in the form of well-designed and named unit tests.</p>
http://stackoverflow.com/questions/141916/what-are-the-good-code-review-walkthrough-techniques/142038#1420384Answer by xero for What are the good code review/walkthrough techniques?xero2008-09-26T21:18:01Z2008-09-26T21:18:01Z<p>I agree with the pair programming idea, however, you can also switch in a different person for a second code review on commit.</p>
<p>To keep it streamlined, the presenter should be ready to explain:</p>
<ol>
<li>The problem/requirement that created the need for the code.</li>
<li>An overview of how that code was implemented.</li>
<li>How other systems are known to interact with the areas the changes touched.</li>
<li>Any technical problems that were encountered and how they were overcome, including reasoning behind any decisions made.</li>
<li>Any conventions that will have to be used from then on because of the changes.</li>
</ol>
<p>All of this should be explained up front, before looking at code. Then they should start walking through the code and review it all again.</p>
<p>I think this process works for a few reasons:</p>
<ul>
<li>It forces the presenter to think through or write down everything s/he did, which is good for seeing if what you did makes sense.</li>
<li>It helps the presenter get better at organizing knowledge, which improves several technical and non-technical skills.</li>
<li>It gives the reviewer time to think about the problem itself, separate from the code.</li>
<li>The code then annotates the ideas for the reviewer instead of creating them, which means s/he can spend more brain power thinking about whether or not the changes were correct instead of thinking about whether the for loop is terminated correctly.</li>
</ul>
http://stackoverflow.com/questions/167388/any-clever-way-to-launch-a-makefile-in-visual-studio-only-if-build-succeeded/167408#167408Comment by xero on Any clever way to launch a makefile in Visual Studio only if build succeeded?xero2008-10-07T18:48:06Z2008-10-07T18:48:06ZIs there a way to get your makefile to do nothing if the other project's output hasn't been updated in the last 20 seconds? It's a hack but might work.