User Monroecheeseman - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T15:55:19Zhttp://stackoverflow.com/feeds/user/1351http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316422/using-sql-server-2008-and-sql-server-2005-and-date-time3Using SQL Server 2008 and SQL Server 2005 and date timeMonroecheeseman2008-11-25T05:15:35Z2009-04-19T07:25:11Z
<p>I've built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error. </p>
<pre>The version of SQL Server in use does not support datatype 'datetime2</pre>
<p>I specifically did not use any 2008 features when I built the database. I can't find any reference to datetime2 in the code. And, yes the column is defined as "datetime" in the database. </p>
http://stackoverflow.com/questions/20281/offline-forms0Offline formsMonroecheeseman2008-08-21T15:41:02Z2009-03-17T03:31:45Z
<p>Anyone doing any work using "offline" forms? We have an application that requires inputting data from outside our company. I was thinking about sending a form out via email, allowing the form to be filled out then sent back. Obviously a web application would be the best solution, but management doesn't seem ready to build the infrastructure and security to support that. I've read a little about PDF forms is that a good solution or are there other solutions?</p>
http://stackoverflow.com/questions/15621/subversion-question/25930#259300Answer by Monroecheeseman for Subversion questionMonroecheeseman2008-08-25T12:20:12Z2008-08-25T12:20:12Z<p>Here's how I did it. I also was worried about how I created the repository, but it seems to be working for us.</p>
<p><a href="http://beta.stackoverflow.com/questions/16829/structure-of-projects-in-version-control#17363" rel="nofollow">http://beta.stackoverflow.com/questions/16829/structure-of-projects-in-version-control#17363</a></p>
http://stackoverflow.com/questions/16829/structure-of-projects-in-version-control/17363#173630Answer by Monroecheeseman for Structure of Projects in Version ControlMonroecheeseman2008-08-20T02:59:28Z2008-08-20T02:59:28Z<p>We migrated from the bad world of VSS with one giant repository (over 4G) before switching to SVN. I really struggled with how to set up the new repository for our company. Our company is very "old" school. It's difficult to get change I'm one of the younger developers and I'm 45! I am part of a corporate development team that works on programs for a number of departments in our company. Anyway I set up our directories like this</p>
<pre><code>+ devroot
+--Dept1
+--Dept1Proj1
+--Dept2Proj2
+--Dept2
+--Dept2Proj1
+--Tools
+--Purchase3rdPartyTools
+--NLog
+--CustomBuiltLibrary
</code></pre>
<p>I wanted to include the ability to branch, but quite honestly that's just too much at this point. Couple things we still struggle with using this scheme.</p>
<ul>
<li>It's hard to fix production problems if you are working on a major product upgrade (ie because we don't do branching)</li>
<li>It's hard to manage the concept of promoting from "Dev" to "Prod". (Don't even ask about promoting to QA)</li>
</ul>
http://stackoverflow.com/questions/16963/who-actually-uses-datagrid-gridview-formview-etc-in-production-apps/17354#173544Answer by Monroecheeseman for Who actually uses DataGrid/GridView/FormVIew/etc in production apps?Monroecheeseman2008-08-20T02:42:26Z2008-08-20T02:42:26Z<p>Every single app we development at my company has grids (the apps are all behind the firewall). That includes both web apps and Winform apps. For the web apps it's the good ole gridview with custom sorting for the winform apps we use Janus grid. I'm trying to get the developers/users to think of a better user interfaces but it's a tough to change. I gotta admit its still better than the alternative of the users building their "own" apps with Access that I would then need to support!</p>
http://stackoverflow.com/questions/14708/powershell-findstr-eqivalent3Powershell FINDSTR eqivalent?Monroecheeseman2008-08-18T14:36:49Z2008-08-19T21:35:51Z
<p>What's the DOS FINDSTR eqivalent for powershell? I need to search a bunch of log files for "ERROR"</p>
http://stackoverflow.com/questions/14708/powershell-findstr-eqivalent/14724#147246Answer by Monroecheeseman for Powershell FINDSTR eqivalent?Monroecheeseman2008-08-18T14:44:22Z2008-08-18T14:44:22Z<p>Here's the quick answer </p>
<pre><code>gci -r -i *.log | select-string ERROR
</code></pre>
<p>I found it <a href="http://www.interact-sw.co.uk/iangblog/2006/06/03/pshfindstr" rel="nofollow">here</a> which has a great indepth answer!</p>