User Mitch Wheat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T00:10:55Zhttp://stackoverflow.com/feeds/user/16076http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1922191/passing-array-as-parameter-to-sql-2005-stored-procedure/1922202#19222021Answer by Mitch Wheat for Passing array as Parameter to SQL 2005 stored procedureMitch Wheat2009-12-17T14:38:03Z2009-12-17T14:38:03Z<p>For a number of different ways to do this, please see:</p>
<p><a href="http://www.sommarskog.se/arrays-in-sql-2005.html" rel="nofollow">Arrays and Lists in SQL Server 2005</a></p>
http://stackoverflow.com/questions/1896487/need-help-about-ado-net-transaction/1896559#1896559-1Answer by Mitch Wheat for Need Help about ADO.Net TransactionMitch Wheat2009-12-13T13:49:45Z2009-12-13T13:49:45Z<p>If you want unpredictable results saved to your database, continue using a transation level of READ UNCOMMITED, <em>otherwise</em> you might be better ensuring that the tables involved have appropriate indexes, and that indexes and statistics are up to date.</p>
http://stackoverflow.com/questions/1895633/why-cant-the-vba-me-keyword-access-private-procedures-in-its-own-module/1895643#18956433Answer by Mitch Wheat for Why can't the VBA Me keyword access private procedures in its own module?Mitch Wheat2009-12-13T05:35:15Z2009-12-13T05:35:15Z<p>You do not need the <code>Me</code> keyword to call inside own class.</p>
http://stackoverflow.com/questions/1895616/how-to-get-the-excel-file-name-path-in-vba/1895626#18956263Answer by Mitch Wheat for How to get the excel file name / path in VBAMitch Wheat2009-12-13T05:18:46Z2009-12-13T05:18:46Z<pre><code> strScriptFullname = WScript.ScriptFullName
strScriptPath = Left(strScriptFullname, InStrRev(strScriptFullname,"\"))
</code></pre>
http://stackoverflow.com/questions/1895415/alt-vs-title-vs-filename/1895436#18954360Answer by Mitch Wheat for alt vs title vs filename?Mitch Wheat2009-12-13T03:00:37Z2009-12-13T03:00:37Z<p>Yes.</p>
<p>A filename made up of matching keywords is better than a random one.</p>
<p>I would rank them in order of importance: Alt, Title, Filename</p>
http://stackoverflow.com/questions/1895409/game-programming-in-c-pdf-books/1895416#18954163Answer by Mitch Wheat for Game programming in C++ pdf booksMitch Wheat2009-12-13T02:54:47Z2009-12-13T02:54:47Z<p>Please see:</p>
<p><a href="http://stackoverflow.com/questions/1736526/any-good-free-c-game-programming-pdf">Any good free C++ Game Programming PDF</a></p>
<p><a href="http://stackoverflow.com/questions/832810/modern-c-game-programming-examples">Modern C++ Game Programming Examples</a></p>
<p><a href="http://stackoverflow.com/questions/1451973/good-books-or-tutorials-for-beginning-direct-x-with-c">Good books or tutorials for beginning Direct X with c++</a></p>
<p><a href="http://stackoverflow.com/questions/1749650/game-programming-for-windows-in-c-or-c">Game programming for windows in C++ or C#.</a></p>
http://stackoverflow.com/questions/1892071/sql-server-where-clause-using-temporary-columns/1892082#18920822Answer by Mitch Wheat for SQL Server WHERE Clause using Temporary ColumnsMitch Wheat2009-12-12T02:42:49Z2009-12-12T02:42:49Z<pre><code>WHERE ac.DateTimeValue >= @startDate AND ac.DateTimeValue <= @finishDate
AND ((pc.IsBusinessDay IS NOT NULL AND pc.IsBusinessDay = 0) OR ac.IsBusinessDay = 0)
</code></pre>
http://stackoverflow.com/questions/1886691/sql-are-multiple-commands-separated-with-atomic-or-not/1886717#18867171Answer by Mitch Wheat for SQL: are multiple commands separated with ';' atomic or not?Mitch Wheat2009-12-11T08:56:27Z2009-12-11T09:02:28Z<p>Within the batch they will execute in sequential order, but that's not your problem. If 100 clients emit that SQL at the same time there is no guarantee that the 2 INSERTS will execute one after the other without another INSERT executing in-between.</p>
http://stackoverflow.com/questions/1886710/how-to-check-query-statement-in-linq-to-nhibernate/1886724#18867240Answer by Mitch Wheat for How to check query statement in Linq to NHibernate?Mitch Wheat2009-12-11T08:58:00Z2009-12-11T08:58:00Z<p>Use <a href="http://msdn.microsoft.com/en-us/library/aa173918%28SQL.80%29.aspx" rel="nofollow">SQL Profiler</a>.</p>
http://stackoverflow.com/questions/1865147/can-i-combine-these-update-queries-into-one-query/1865161#18651614Answer by Mitch Wheat for can i combine these update queries into one query Mitch Wheat2009-12-08T07:07:27Z2009-12-09T09:26:46Z<pre><code>UPDATE NewTable3
SET SAO = '0'
WHERE (WAP LIKE '-') OR (WAP IS NULL) OR (WAP LIKE 'NA');
</code></pre>
http://stackoverflow.com/questions/1871507/how-to-design-this-bus-stations-database/1871518#18715184Answer by Mitch Wheat for How to design this "bus stations" database?Mitch Wheat2009-12-09T04:05:06Z2009-12-09T04:05:06Z<p>Have you looked at <a href="http://www.databaseanswers.org/data%5Fmodels/index.htm" rel="nofollow">Database Answers</a> to see if there is a schema that fits your requirements?</p>
http://stackoverflow.com/questions/1871389/silverlight-client-verification/1871417#18714171Answer by Mitch Wheat for Silverlight - Client VerificationMitch Wheat2009-12-09T03:28:38Z2009-12-09T03:28:38Z<p>These might be of interest:</p>
<p><a href="http://silverlight.net/learn/videos/silverlight-videos/using-aspnet-secure-services-and-applications-services/" rel="nofollow">Using ASP.NET Secure Services and Applications Services</a></p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/dd434653.aspx" rel="nofollow">Build Line-Of-Business Enterprise Apps With Silverlight, Part 2</a></p>
<p>MS Whitepaper: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7CEF15A8-8AE6-48EB-9621-EE35C2547773&displaylang=en" rel="nofollow">Security Guidance for Writing and Deploying Silverlight Applications</a></p>
http://stackoverflow.com/questions/1871133/the-ruby-community-values-simplicity-whats-your-argument-for-simplifying-a-db/1871170#18711702Answer by Mitch Wheat for The Ruby community values simplicity...what's your argument for simplifying a db schema in a new project?Mitch Wheat2009-12-09T01:56:10Z2009-12-09T01:56:10Z<p>Your DB schema should reflect the domain and its relationships.</p>
<p>De-normalisation should only be done when you have measured that there is a performance problem. </p>
<p>7 joins is not excessive or bad, provided you have good indexes in place.</p>
http://stackoverflow.com/questions/1867430/sql-merge-table-and-group-by/1867452#18674525Answer by Mitch Wheat for SQL merge table and group byMitch Wheat2009-12-08T14:48:45Z2009-12-08T15:28:38Z<pre><code>SELECT ID, Sum(Minutes)
FROM MyTable
GROUP BY ID
</code></pre>
http://stackoverflow.com/questions/1867445/monitor-account-activity-for-sql-server-2005/1867471#18674712Answer by Mitch Wheat for Monitor account activity for SQL Server 2005Mitch Wheat2009-12-08T14:51:32Z2009-12-08T14:51:32Z<p>Run a profiler trace with the <a href="http://msdn.microsoft.com/en-us/library/ms190260.aspx" rel="nofollow">Audit Login event</a> selected: or just select the Standard Trace Template (and perhaps limit the trace size).</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/ms187929.aspx" rel="nofollow">Using SQL Server Profiler</a></p>
http://stackoverflow.com/questions/1865442/sql-server-sp-sometimes-not-to-be-included-in-where-clause/1865457#18654572Answer by Mitch Wheat for SQL server SP : sometimes not to be included in WHERE clauseMitch Wheat2009-12-08T08:15:33Z2009-12-08T08:15:33Z<p>A commonly used approach is:</p>
<pre><code>CREATE PROCEDURE [dbo].[spGetBonusRunDetails]
(
@StartDate as DATETIME,
@EndDate as DATETIME,
@PageNumber int,
@PageSize int,
@Status int = NULL
)
AS
;WITH DataCTE AS
(
SELECT ROW_NUMBER() OVER(Order by Id) as RowNumber
,[StartDateTime]
,[EndDate]
,[Status]
,[ExecutionTime]
,[Code] , TotalRows = Count(*) OVER()
FROM [dbo].[BonusRun]
WHERE ((StartDateTime BETWEEN @StartDate AND @EndDate)
OR (EndDate BETWEEN @StartDate AND @EndDate))
AND (@Status IS NULL OR Status = @Status)
)
</code></pre>
<p><strong>But</strong> please be aware that this can have implications for Parameter Sniffing and the possibility of an inappropriate cached query plan.</p>
<p>In fact, while I always try not to use dynamic TSQL, when there are a large number of optional parameters, it is a valid approach to avoid incorrect cached plans.</p>
http://stackoverflow.com/questions/1865353/combining-like-and-in-for-mssql/1865375#18653750Answer by Mitch Wheat for Combining "LIKE" and "IN" for MSSQLMitch Wheat2009-12-08T07:55:20Z2009-12-08T07:55:20Z<p>No, you will have to use OR:</p>
<pre><code>SELECT
*
FROM
table
WHERE
column LIKE 'Text%' OR
column LIKE 'Link%' OR
column LIKE 'Hello%' OR
column LIKE '%World%'
</code></pre>
<p>Have you looked at <a href="http://msdn.microsoft.com/en-us/library/ms142571.aspx" rel="nofollow">Full-Text Search</a>?</p>
http://stackoverflow.com/questions/1865263/reading-tables-and-columns-in-sql-server-using-c/1865284#18652840Answer by Mitch Wheat for Reading Tables and columns in SQL SERVER using C#Mitch Wheat2009-12-08T07:36:20Z2009-12-08T07:36:20Z<p>You can do this using <a href="http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.aspx" rel="nofollow">Microsoft.SqlServer.Management.Smo</a> from C#. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms162175.aspx" rel="nofollow">Programming Specific Tasks in SMO</a></p>
http://stackoverflow.com/questions/1865199/importing-a-sql-ddl-file-into-microsoft-sql-server/1865217#18652170Answer by Mitch Wheat for importing a sql ddl file into Microsoft SQL server Mitch Wheat2009-12-08T07:23:39Z2009-12-08T07:23:39Z<p>You can use SQL Server Managment Studio, or use the <a href="http://msdn.microsoft.com/en-us/library/ms170207.aspx" rel="nofollow">SqlCmd</a> line.</p>
http://stackoverflow.com/questions/1865190/svn-noob-quick-summary-of-how-to-use-it/1865211#18652115Answer by Mitch Wheat for SVN Noob: quick summary of how to use it?Mitch Wheat2009-12-08T07:20:33Z2009-12-08T07:20:33Z<p>Check out the <a href="http://svnbook.red-bean.com/" rel="nofollow">RedBean SVN free ebook</a>. It's an excellent reference, containing info on branching, Tags etc</p>
<p>Also: Phil Haack's article <a href="http://haacked.com/archive/2006/02/22/QuickstartGuidetoSubversiononSourceForge.aspx" rel="nofollow">Quickstart Guide to Subversion on SourceForge</a></p>
http://stackoverflow.com/questions/1864542/how-to-get-date-from-datetime-in-sql/1864557#18645574Answer by Mitch Wheat for How to get date from datetime in sqlMitch Wheat2009-12-08T04:21:25Z2009-12-08T04:21:25Z<p>Compare only on the date portion (without time):</p>
<pre><code>WHERE DateColumn >= DATEADD(day, DATEDIFF(day, 0, @SomeDateParam), 0)
</code></pre>
http://stackoverflow.com/questions/1854827/how-can-a-total-complete-beginner-read-source-code/1854831#185483111Answer by Mitch Wheat for How can a total, complete beginner read source code?Mitch Wheat2009-12-06T09:06:16Z2009-12-06T09:06:16Z<p>Have you looked at these:</p>
<p><a href="http://stackoverflow.com/questions/207701/python-tutorial-for-total-beginners">Python tutorial for total beginners?</a></p>
<p><a href="http://stackoverflow.com/questions/34570/what-is-the-best-quick-read-python-book-out-there">What is the best quick-read Python book out there?</a></p>
<p><a href="http://stackoverflow.com/search?q=%5Bpython%5D+books">SO Python Book Search</a></p>
http://stackoverflow.com/questions/1854638/free-icons-sets-for-common-file-types/1854689#18546890Answer by Mitch Wheat for Free icons sets for common file typesMitch Wheat2009-12-06T07:52:37Z2009-12-06T07:52:37Z<p>Please See: <a href="http://stackoverflow.com/questions/139944/where-can-one-find-free-software-icons-images">Where can one find free software icons / images?</a></p>
http://stackoverflow.com/questions/1854306/resize-bitmap-like-in-ms-paint/1854321#18543211Answer by Mitch Wheat for Resize bitmap like in MS PaintMitch Wheat2009-12-06T04:09:47Z2009-12-06T04:09:47Z<p>Please see: <a href="http://stackoverflow.com/questions/333589/image-resizing-in-net-with-antialiasing">Image resizing in .Net with Antialiasing</a></p>
http://stackoverflow.com/questions/1851795/function-that-returning-index-position-of-string-after-match-found-c/1851814#18518140Answer by Mitch Wheat for function that returning index position of string after match found C#Mitch Wheat2009-12-05T10:28:22Z2009-12-05T10:28:22Z<p>Rather than use <code>IsMatch()</code>, use <code>Matches</code>:</p>
<pre><code> const string stringToTest = "abcedfghijklghmnopqghrstuvwxyz";
const string patternToMatch = "gh*";
Regex regex = new Regex(patternToMatch, RegexOptions.Compiled);
MatchCollection matches = regex.Matches(stringToTest);
foreach (Match match in matches )
{
Console.WriteLine(match.Index);
}
</code></pre>
http://stackoverflow.com/questions/1832934/whats-the-best-approach-for-creating-visually-appealing-windows-applications/1832967#18329670Answer by Mitch Wheat for What's the best approach for creating visually appealing windows applications?Mitch Wheat2009-12-02T13:38:19Z2009-12-02T13:38:19Z<p>A good place to start would be the <a href="http://msdn.microsoft.com/en-us/aa937791.aspx" rel="nofollow">Windows XNA Developer Centre</a>. XNA contains support for DirectSound.</p>
<p>Also check out <a href="http://www.xnadevelopment.com/tutorials.shtml" rel="nofollow">XNA Development Tutorials.</a></p>
http://stackoverflow.com/questions/1831464/parsing-sap-idoc-files/1831491#18314911Answer by Mitch Wheat for Parsing SAP IDOC filesMitch Wheat2009-12-02T08:39:45Z2009-12-02T08:39:45Z<p>I would suggest trying the SAP web site, <a href="http://help.sap.com/saphelp%5Fnw04/Helpdata/EN/e9/23c80d66d08c4c8c044a3ea11ca90f/content.htm" rel="nofollow">SAP .NET Connector</a>:</p>
<blockquote>
<p>The SAP .NET Connector is a
development environment that enables
communication between the Microsoft.
NET platform and SAP systems. This
connector supports RFCs and Web
services, and allows you to write
different applications such as Web
form, Windows form, or console
applications in the Microsoft Visual
Studio.Net. With the SAP .NET
Connector, you can use all common
programming languages, such as Visual
Basic. NET, C#, or Managed C++.</p>
<p>Features Using the SAP .NET Connector
and SAP .NET Proxy Wizard, you can:</p>
<p>· Write .NET Windows and Web
form applications that have access to
SAP business objects (BAPIs).</p>
<p>· Develop client applications
for the SAP Server. Here you can use
either RFCs or HTTP/SOAP/XML
(outside-in).</p>
<p>· Write RFC server applications
that run in a .NET environment and can
be installed starting from the SAP
system (inside-out).</p>
</blockquote>
<p><a href="http://help.sap.com/saphelp%5Fnw04/helpdata/EN/e8/0f499a4221604fb10200f24772c82a/content.htm" rel="nofollow">IDoc Receiver as a Windows Service</a> </p>
http://stackoverflow.com/questions/1823685/database-when-should-i-use-a-composite-index/1823697#18236970Answer by Mitch Wheat for Database: When should I use a composite index?Mitch Wheat2009-12-01T02:52:39Z2009-12-01T03:03:07Z<p>There is no Black and White, one size fits all answer.</p>
<p>You should use a composite index, when your query work load would benefit from one.</p>
<p>You need to profile your query work load in order to determine this.</p>
<p>A composite index comes into play when queries can be satisfied entirely from that index.</p>
<p>UPDATE (in response to edit to posted question): If you are selecting * from the table the composite index may be used, it may not. You will need to run <a href="http://dev.mysql.com/doc/refman/5.0/en/explain.html" rel="nofollow">EXPLAIN PLAN</a> to be sure.</p>
http://stackoverflow.com/questions/1823583/c-reusing-an-adapter-to-populate-other-controls/1823689#18236890Answer by Mitch Wheat for C# Reusing an Adapter to populate other controlsMitch Wheat2009-12-01T02:49:39Z2009-12-01T02:49:39Z<p>You can filter a DataTable but it returns an array of DataRow objects rather than a filtered DataTable, which can't be directly bound to a DataGrid or other data bound control. Instead use a DataView:</p>
<pre><code>DataView dv = new DataView(dt);
dv.RowFilter = "Filter Expresion";
dg.DataSource = dv;
</code></pre>
<p>See <a href="http://msdn.microsoft.com/en-us/library/13wb36xf%28VS.71%29.aspx" rel="nofollow">Sorting and Filtering Data Using a DataView</a></p>
http://stackoverflow.com/questions/1815478/new-line-in-vb-net/1815484#18154841Answer by Mitch Wheat for New line in VB.NETMitch Wheat2009-11-29T13:01:06Z2009-11-29T13:01:06Z<pre><code>vbCrLf
vbCr
vbLf
</code></pre>
http://stackoverflow.com/questions/1922317/recommendations-for-two-challenging-web-app-problemsComment by Mitch Wheat on recommendations for two challenging web app problemsMitch Wheat2009-12-17T15:06:47Z2009-12-17T15:06:47Zwhat's your question?http://stackoverflow.com/questions/1514211/how-to-use-nunit-with-snippetcompiler/1514305#1514305Comment by Mitch Wheat on How to use NUnit with SnippetCompiler ?Mitch Wheat2009-12-17T14:26:32Z2009-12-17T14:26:32ZWould the downvoter please leave a comment. Thanks.http://stackoverflow.com/questions/1908124/rsa-key-generator-using-vhdlComment by Mitch Wheat on rsa key generator using vhdlMitch Wheat2009-12-15T15:16:01Z2009-12-15T15:16:01Zgood luck with that....http://stackoverflow.com/questions/1906411/sql-query-if-statementComment by Mitch Wheat on Sql query - if statementMitch Wheat2009-12-15T10:14:44Z2009-12-15T10:14:44ZPlease google "SQL Injection attack'http://stackoverflow.com/questions/1896487/need-help-about-ado-net-transaction/1896559#1896559Comment by Mitch Wheat on Need Help about ADO.Net TransactionMitch Wheat2009-12-14T16:42:44Z2009-12-14T16:42:44ZIf you think using "READ UNCOMMITED" is a good idea, you're wrong!http://stackoverflow.com/questions/1896487/need-help-about-ado-net-transaction/1896559#1896559Comment by Mitch Wheat on Need Help about ADO.Net TransactionMitch Wheat2009-12-14T16:41:54Z2009-12-14T16:41:54ZWould the downvoter please leave a comment. Thanks.http://stackoverflow.com/questions/1896555/how-to-open-a-file-and-search-for-a-word-rubyComment by Mitch Wheat on How to open a file and search for a word [Ruby]?Mitch Wheat2009-12-13T13:50:38Z2009-12-13T13:50:38Zhave you at least done a search?http://stackoverflow.com/questions/1895616/how-to-get-the-excel-file-name-path-in-vbaComment by Mitch Wheat on How to get the excel file name / path in VBAMitch Wheat2009-12-13T06:39:44Z2009-12-13T06:39:44ZI suggest you improve your acceptance rate; otherwise people might not be inclined to answer your questions...
http://stackoverflow.com/questions/1895754/sql-server-2000-view-list-of-sprocs-with-grant-execute-for-a-particular-role-exComment by Mitch Wheat on SQL Server 2000 - View list of sprocs with GRANT EXECUTE for a particular role exclusively ?Mitch Wheat2009-12-13T06:38:13Z2009-12-13T06:38:13Zbelongs on superuser.com...http://stackoverflow.com/questions/1895415/alt-vs-title-vs-filenameComment by Mitch Wheat on alt vs title vs filename?Mitch Wheat2009-12-13T05:20:41Z2009-12-13T05:20:41ZI would suggest improving yout acceptance rate; otherwise people might not be inclined to answer your questions...http://stackoverflow.com/questions/1895567/vs2008-c-thread-pool-question/1895614#1895614Comment by Mitch Wheat on vs2008 c#: Thread pool questionMitch Wheat2009-12-13T05:15:43Z2009-12-13T05:15:43Z@Michael Valenty: of course threading is appropriate for processor intensive operation as long as they have coarse granularity (i.e. work can easily be split into sizeable chunks)! If it wasn't, then there wouldn't be much point of multithreading. database or web services calls are examples of coarse grained operationshttp://stackoverflow.com/questions/1895409/game-programming-in-c-pdf-books/1895416#1895416Comment by Mitch Wheat on Game programming in C++ pdf booksMitch Wheat2009-12-13T05:12:58Z2009-12-13T05:12:58Z@Ash: I answer question as I see fit at the time. I don't downvote someone for trying to help the poster.http://stackoverflow.com/questions/1895409/game-programming-in-c-pdf-books/1895416#1895416Comment by Mitch Wheat on Game programming in C++ pdf booksMitch Wheat2009-12-13T04:01:35Z2009-12-13T04:01:35Z@aSH: excuse? what's your excuse for voting down?http://stackoverflow.com/questions/1895409/game-programming-in-c-pdf-books/1895416#1895416Comment by Mitch Wheat on Game programming in C++ pdf booksMitch Wheat2009-12-13T03:25:48Z2009-12-13T03:25:48Z@Ash: downvoting is for wrong answers, not punishment of someone answering a question differently to how you would.http://stackoverflow.com/questions/1894026/examples-of-parameterized-queriesComment by Mitch Wheat on Examples of parameterized queriesMitch Wheat2009-12-12T17:05:29Z2009-12-12T17:05:29Z<a href="http://www.google.com.au/search?hl=en&source=hp&q=+MySQL++parameterized+queries&meta=&aq=f&oq=" rel="nofollow">google.com.au/search?hl=en&source=hp&q=+M…</a>