User IDisposable - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T15:33:22Zhttp://stackoverflow.com/feeds/user/2076http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/711159/how-to-set-a-default-value-for-one-column-in-sql-based-on-another-column/1511481#15114810Answer by IDisposable for How to set a default value for one column in SQL based on another columnIDisposable2009-10-02T19:53:13Z2009-10-02T19:53:13Z<p>So, for example, in a TAG table (where tags are applied to posts) if you want to count one tag as another...but default to counting new tags as themselves, you would have a trigger like this:</p>
<pre><code>CREATE TRIGGER [dbo].[TR_Tag_Insert]
ON [dbo].[Tag]
AFTER INSERT
AS
BEGIN
SET NOCOUNT ON;
UPDATE dbo.Tag
SET [CountAs] = I.[ID]
FROM INSERTED AS I
WHERE I.[CountAs] IS NULL
AND dbo.Tag.ID = I.ID
END
</code></pre>
http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/1479994#14799942Answer by IDisposable for What's the coolest startup programmer job title?IDisposable2009-09-25T23:41:54Z2009-09-25T23:41:54Z<p>My actual job title (on the company issued business cards) is <strong>Hack Prime</strong></p>
http://stackoverflow.com/questions/1479953/porting-32-bit-c-code-to-64-bit-is-it-worth-it-why/1479990#14799903Answer by IDisposable for Porting 32 bit C++ code to 64 bit - is it worth it? Why?IDisposable2009-09-25T23:38:07Z2009-09-25T23:38:07Z<ol>
<li>If your program has no need to run under 64-bit, why would you? If you are not memory bound, and you don't have huge datasets, there is no point. The new Miata doesn't have bigger tires, because it doesn't NEED them.</li>
<li>32-bit support (even if only via emulation) will extend long past when your software ceases to be useful. We still emulate Atari 2600s, right?</li>
<li>No, in all likelyhood, your application will be slower in 64-bit mode, simply because less of it will fit in the processor's cache. It might be slightly more secure, but good coders don't need that crutch :)</li>
</ol>
<p>Rico Mariani's post on why Microsoft <strong>isn't</strong> porting Visual Studio to 64-bit really sums it up <a href="http://blogs.msdn.com/ricom/archive/2009/06/10/visual-studio-why-is-there-no-64-bit-version.aspx" rel="nofollow">Visual Studio: Why is there no 64 bit version? (yet)</a></p>
http://stackoverflow.com/questions/994927/stored-procedure-returning-an-int/1253007#12530070Answer by IDisposable for Stored Procedure returning an intIDisposable2009-08-10T03:32:25Z2009-08-10T03:32:25Z<p>The first SELECT in your SPROC is yielding an INT into the temporary variable </p>
<pre><code>SELECT @CONTRACT = CONTRACT FROM [tbl_property] WHERE [PROPREF] = @PROPREF
</code></pre>
<p>which is what is tripping up the metadata. You should do a</p>
<pre><code> SET @CONTRACT = (SELECT CONTRACT FROM [tbl_property] WHERE [PROPREF] = @PROPREF)
</code></pre>
<p>instead.</p>
http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access/1176361#11763611Answer by IDisposable for SQL to determine minimum sequential days of access?IDisposable2009-07-24T08:14:12Z2009-07-24T20:40:16Z<p>Joe Celko has a complete chapter on this in SQL for Smarties (calling it Runs and Sequences). I don't have that book at home, so when I get to work... I'll actually answer this. (assuming history table is called dbo.UserHistory and the number of days is @Days)</p>
<p>Another lead is from <a href="http://www.sqlteam.com/article/detecting-runs-or-streaks-in-your-data" rel="nofollow">SQL Team's blog on runs</a></p>
<p>The other idea I've had, but don't have a SQL server handy to work on here is to use a CTE with a partitioned ROW_NUMBER like this:</p>
<pre><code>WITH Runs
AS
(SELECT UserID
, CreationDate
, ROW_NUMBER() OVER(PARTITION BY UserId
ORDER BY CreationDate)
- ROW_NUMBER() OVER(PARTITION BY UserId, NoBreak
ORDER BY CreationDate) AS RunNumber
FROM
(SELECT UH.UserID
, UH.CreationDate
, ISNULL((SELECT TOP 1 1
FROM dbo.UserHistory AS Prior
WHERE Prior.UserId = UH.UserId
AND Prior.CreationDate
BETWEEN DATEADD(dd, DATEDIFF(dd, 0, UH.CreationDate), -1)
AND DATEADD(dd, DATEDIFF(dd, 0, UH.CreationDate), 0)), 0) AS NoBreak
FROM dbo.UserHistory AS UH) AS Consecutive
)
SELECT UserID, MIN(CreationDate) AS RunStart, MAX(CreationDate) AS RunEnd
FROM Runs
GROUP BY UserID, RunNumber
HAVING DATEDIFF(dd, MIN(CreationDate), MAX(CreationDate)) >= @Days
</code></pre>
<p>The above is likely <strong>WAY HARDER</strong> than it has to be, but left as an a brain tickle for when you have some other definition of "a run" than just dates.</p>
http://stackoverflow.com/questions/983492/query-times-out-in-net-sqlcommand-executenonquery-works-in-sql-server-managemen3Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management StudioIDisposable2009-06-11T20:32:51Z2009-06-16T10:35:08Z
<p><strong>Update: Problem solved, and staying solved.</strong> <em>If you want to see the site in action, visit <a href="http://www.tweet08.com" rel="nofollow">Tweet08</a></em></p>
<p>I've got several queries that act differently in SSMS versus when run inside my .Net application. The SSMS executes fine in under a second. The .Net call times out after 120 seconds (connection default timeout).</p>
<p>I did a SQL Trace (and collected <em>everything</em>) I've seen that the connection options are the same (and match the SQL Server's defaults). The SHOWPLAN All, however, show a huge difference in the row estimates and thus the working version does an aggressive Table Spool, where-as the failing call does not.</p>
<p>In the SSMS, the datatypes of the temp variables are based on the generated SQL Parameters in the .Net, so they are the same.</p>
<p>The failure executes under Cassini in a VS2008 debug session. The success is under SSMS 2008 . Both are running against the same destination server form the same network on the same machine.</p>
<p>Query in SSMS:</p>
<pre><code>DECLARE @ContentTableID0 TINYINT
DECLARE @EntryTag1 INT
DECLARE @ContentTableID2 TINYINT
DECLARE @FieldCheckId3 INT
DECLARE @FieldCheckValue3 VARCHAR(128)
DECLARE @FieldCheckId5 INT
DECLARE @FieldCheckValue5 VARCHAR(128)
DECLARE @FieldCheckId7 INT
DECLARE @FieldCheckValue7 VARCHAR(128)
SET @ContentTableID0= 3
SET @EntryTag1= 8
SET @ContentTableID2= 2
SET @FieldCheckId3= 14
SET @FieldCheckValue3= 'igor'
SET @FieldCheckId5= 33
SET @FieldCheckValue5= 'a'
SET @FieldCheckId7= 34
SET @FieldCheckValue7= 'a'
SELECT COUNT_BIG(*)
FROM dbo.ContentEntry AS mainCE
WHERE GetUTCDate() BETWEEN mainCE.CreatedOn AND mainCE.ExpiredOn
AND (mainCE.ContentTableID=@ContentTableID0)
AND ( EXISTS (SELECT *
FROM dbo.ContentEntryLabel
WHERE ContentEntryID = mainCE.ID
AND GetUTCDate() BETWEEN CreatedOn AND ExpiredOn
AND LabelFacetID = @EntryTag1))
AND (mainCE.OwnerGUID IN (SELECT TOP 1 Name
FROM dbo.ContentEntry AS innerCE1
WHERE GetUTCDate() BETWEEN innerCE1.CreatedOn AND innerCE1.ExpiredOn
AND (innerCE1.ContentTableID=@ContentTableID2
AND EXISTS (SELECT *
FROM dbo.ContentEntryField
WHERE ContentEntryID = innerCE1.ID
AND (ContentTableFieldID = @FieldCheckId3
AND DictionaryValueID IN (SELECT dv.ID
FROM dbo.DictionaryValue AS dv
WHERE dv.Word LIKE '%' + @FieldCheckValue3 + '%'))
)
)
)
OR EXISTS (SELECT *
FROM dbo.ContentEntryField
WHERE ContentEntryID = mainCE.ID
AND ( (ContentTableFieldID = @FieldCheckId5
AND DictionaryValueID IN (SELECT dv.ID
FROM dbo.DictionaryValue AS dv
WHERE dv.Word LIKE '%' + @FieldCheckValue5 + '%')
)
OR (ContentTableFieldID = @FieldCheckId7
AND DictionaryValueID IN (SELECT dv.ID
FROM dbo.DictionaryValue AS dv
WHERE dv.Word LIKE '%' + @FieldCheckValue7 + '%')
)
)
)
)
</code></pre>
<p>Trace's version of .Net call (<em>some formatting added</em>):</p>
<pre><code>exec sp_executesql N'SELECT COUNT_BIG(*) ...'
,N'@ContentTableID0 tinyint
,@EntryTag1 int
,@ContentTableID2 tinyint
,@FieldCheckId3 int
,@FieldCheckValue3 varchar(128)
,@FieldCheckId5 int
,@FieldCheckValue5 varchar(128)
,@FieldCheckId7 int
,@FieldCheckValue7 varchar(128)'
,@ContentTableID0=3
,@EntryTag1=8
,@ContentTableID2=2
,@FieldCheckId3=14
,@FieldCheckValue3='igor'
,@FieldCheckId5=33
,@FieldCheckValue5='a'
,@FieldCheckId7=34
,@FieldCheckValue7='a'
</code></pre>
http://stackoverflow.com/questions/983492/query-times-out-in-net-sqlcommand-executenonquery-works-in-sql-server-managemen/984200#9842000Answer by IDisposable for Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management StudioIDisposable2009-06-11T22:56:11Z2009-06-11T22:56:11Z<p>Checked and this server, a development server, was not running SQL Server 2005 SP3. Tried to install that (with necessary reboot), but it didn't install. Oddly now both code and SSMS return in subsecond time.</p>
<p>Woot this is a HEISENBUG. </p>
http://stackoverflow.com/questions/873849/vs-2008-sp1-over-remote-desktop-constant-repainting/873857#8738570Answer by IDisposable for VS 2008 SP1 over Remote Desktop: Constant Repainting?IDisposable2009-05-17T03:42:56Z2009-05-17T03:42:56Z<p>Did you remember to:</p>
<ol>
<li>Turn off the Navigation Bar</li>
<li>Turn off Track changes</li>
<li>Turn off Animate environment tools</li>
</ol>
http://stackoverflow.com/questions/231438/cuckoo-hashing-in-c/871017#8710170Answer by IDisposable for Cuckoo hashing in CIDisposable2009-05-15T21:55:34Z2009-05-15T21:55:34Z<p>Kind of off-topic, but I'm looking into using cuckoo hashing for a cache, where it's explicitly okay to drop entries off the deep end. Anyone see that as a horrible idea?</p>
http://stackoverflow.com/questions/152003/server-side-virus-scanning/661268#6612680Answer by IDisposable for Server side virus scanningIDisposable2009-03-19T06:54:55Z2009-03-19T06:54:55Z<p>You should look into <a href="http://www.opswat.com/metascan.shtml" rel="nofollow">opswat's MetaScan</a>. This tool manages the updating and multiple-engine scanning of files. It bundles with AVG, CA eTrustâ„¢. ClamWin, ESET NOD32 Antivirus Engine, MicroWorld eScan Engine, Norman Virus Control, and VirusBuster EDK. Additionally it will invoke the Nortons and such. The advantage is that you get multiple engines running against the file.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/492912#49291217Answer by IDisposable for What real life bad habits has programming given you?IDisposable2009-01-29T18:52:08Z2009-01-29T18:52:08Z<p><strong>Wife</strong>: "Can I ask you a question?"</p>
<p><strong>Me</strong>: "Yes. Would you like another, more useful one?"</p>
http://stackoverflow.com/questions/433881/optimized-table-structure-for-tags-table/486520#4865200Answer by IDisposable for Optimized Table structure for Tags table.IDisposable2009-01-28T04:53:35Z2009-01-28T06:17:11Z<p>You should be mapping the <code>TagText</code> to <code>TagId</code> in code (and mapping to an in-memory cache anyway) and passing the pre-mapped <code>TagId</code> into your query.</p>
<p>Also there's no reason you need a synthetic key for the <code>Article_Tag</code> table. You should be using a composite-primary-key (<code>ArticleId</code>, <code>TagId</code>).</p>
<p>So, I say #1 with minor tweak mentioned above.</p>
http://stackoverflow.com/questions/464456/httpcontext-current-session-vs-global-asax-this-session/471385#4713853Answer by IDisposable for "HttpContext.Current.Session" vs Global.asax "this.Session"IDisposable2009-01-23T00:08:45Z2009-01-23T00:08:45Z<p>To answer the original question better:</p>
<h2>Background</h2>
<p>Every single page request spins up a new <code>Session</code> object and then inflates it from your session store. To do this, it uses the cookie provided by the client or a special path construct (for cookieless sessions). With this session identifier, it consults the session store and deserializes (this is why all providers but InProc need to be Serializable) the new session object.</p>
<p>In the case of the InProc provider, merely hands you the reference it stored in the <code>HttpCache</code> keyed by the session identifier. <em>This is why the InProc provider drops session state when the <code>AppDomain</code> is recycled (and also why multiple web servers cannot share InProc session state</em>. </p>
<p>This newly created and inflated object is stuck in the <code>Context.Items</code> collection so that it's available for the duration of the request.</p>
<p>Any changes you make to the <code>Session</code> object are then persisted at the end of the request to the session store by serializing (or the case of InProc, the <code>HttpCache</code> entry is updated).</p>
<p>Since <code>Session_End</code> fires without a current request in-fly, the <code>Session</code> object is spun up ex-nilo, with no information available. If using InProc session state, the expiration of the <code>HttpCache</code> triggers a callback event into your <code>Session_End</code> event, so the session entry is available, but is still a copy of what was last stored in the <code>HttpContext.Cache</code>. This value is stored against the <code>HttpApplication.Session</code> property by an internal method (called <code>ProcessSpecialRequest</code>) where is the available. Under all other cases, it internally comes from the <code>HttpContext.Current.Session</code> value.</p>
<h2>Your answer</h2>
<p>Since the Session_End always fires against a null Context, you should ALWAYS use this.Session in that event and pass the HttpSessionState object down to your tracing code. In all other contexts, it's perfectly fine to fetch from <code>HttpContext.Current.Session</code> and then pass into the tracing code. <strong>Do NOT</strong>, however, let the tracing code reach up for the session context.</p>
<h2>My answer</h2>
<p>Don't use <code>Session_End</code> unless you know that the session store you are using supports <code>Session_End</code>, which it <strong>does</strong> if it returns <code>true</code> from <code>SetItemExpireCallback</code>. The only in-the-box store which does is the <code>InProcSessionState</code> store. It is possible to write a session store that does but the question of who will process the <code>Session_End</code> is kind of ambiguous if there are multiple servers.</p>
http://stackoverflow.com/questions/464456/httpcontext-current-session-vs-global-asax-this-session/464487#4644870Answer by IDisposable for "HttpContext.Current.Session" vs Global.asax "this.Session"IDisposable2009-01-21T08:51:40Z2009-01-22T20:48:47Z<p>Remember that Session_End runs when the session times out without activity. The browser doesn't originate that event (because it's inactive), so the only time you actually will get the event is when using the InProc provider. In EVERY OTHER provider, this event will never fire.</p>
<p>Moral? Don't use Session_End.</p>
http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/236800#23680013Answer by IDisposable for What do project managers do all day?IDisposable2008-10-25T18:19:23Z2008-11-07T04:20:02Z<p>Good project managers are like umbrellas.</p>
<p>They keep the hot sun off you when too many nice new projects/task arrive which would distract your priorities.</p>
<p>They keep the cold rain off you when too many conflicting requirements and problems overwhelm you.</p>
<p>They fold up and get out of the way when you're doing fine and seem to be invisible. Secretly, though, they are attending meetings and managing expectations and simply protecting you.</p>
<p>They are always there in case you need them.</p>
<p>Yes, I know this is flippant to some degree, but so is the question.</p>
http://stackoverflow.com/questions/67370/dynamically-create-a-generic-type-for-template/67530#675303Answer by IDisposable for Dynamically Create a generic type for templateIDisposable2008-09-15T22:10:28Z2008-09-17T19:58:19Z<p>What you are looking for is MakeGenericType</p>
<pre><code>string elementTypeName = Console.ReadLine();
Type elementType = Type.GetType(elementTypeName);
Type[] types = new Type[] { elementType };
Type listType = typeof(List<>);
Type genericType = listType.MakeGenericType(types);
IProxy proxy = (IProxy)Activator.CreateInstance(genericType);
</code></pre>
<p>So what you are doing is getting the type-definition of the generic "template" class, then building a specialization of the type using your runtime-driving types.</p>
http://stackoverflow.com/questions/65512/which-is-faster-best-select-or-select-column1-colum2-column3-etc/67380#6738013Answer by IDisposable for Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.IDisposable2008-09-15T21:53:18Z2008-09-15T21:53:18Z<p>Given <strong>your</strong> specification that you <strong>are</strong> selecting all columns, there is little difference <strong>at this time</strong>. Realize, however, that database schemas do change. If you use <strong><code>SELECT *</code></strong> you are going to get any new columns added to the table, even though in all likelihood, your code is not prepared to use or present that new data. This means that you are exposing your system to unexpected performance and functionality changes.</p>
<p>You may be willing to dismiss this as a minor cost, but realize that columns that you don't need still must be:</p>
<ol>
<li>Read from database</li>
<li>Sent across the network</li>
<li>Marshalled into your process</li>
<li>(for ADO-type technologies) Saved in a data-table in-memory</li>
<li>Ignored and discarded / garbage-collected</li>
</ol>
<p>Item #1 has many hidden costs including eliminating some potential covering index, causing data-page loads (and server cache thrashing), incurring row / page / table locks that might be otherwise avoided.</p>
<p>Balance this against the potential savings of specifying the columns versus an <strong><code>*</code></strong> and the only potential savings are:</p>
<ol>
<li>Programmer doesn't need to revisit the SQL to add columns</li>
<li>The network-transport of the SQL is smaller / faster</li>
<li>SQL Server query parse / validation time</li>
<li>SQL Server query plan cache</li>
</ol>
<p>For item 1, the reality is that you're going to add / change code to use any new column you might add anyway, so it is a wash.</p>
<p>For item 2, the difference is rarely enough to push you into a different packet-size or number of network packets. If you get to the point where SQL statement transmission time is the predominant issue, you probably need to reduce the rate of statements first.</p>
<p>For item 3, there is NO savings as the expansion of the <strong><code>*</code></strong> has to happen anyway, which means consulting the table(s) schema anyway. Realistically, listing the columns will incur the same cost because they have to be validated against the schema. In other words this is a complete wash.</p>
<p>For item 4, when you specify specific columns, your query plan cache could get larger but <strong>only</strong> if you are dealing with different sets of columns (which is not what you've specified). In this case, you <strong>do want</strong> different cache entries because you want different plans as needed.</p>
<p>So, this all comes down, because of the way you specified the question, to the issue resiliency in the face of eventual schema modifications. If you're burning this schema into ROM (it happens), then an <strong><code>*</code></strong> is perfectly acceptable. </p>
<p>However, my general guideline is that you should only select the columns you need, which means that <strong>sometimes</strong> it will look like you are asking for all of them, but DBAs and schema evolution mean that some new columns might appear that could greatly affect the query.</p>
<p>My advice is that you should <strong>ALWAYS SELECT specific columns</strong>. Remember that you get good at what you do over and over, so just get in the habit of doing it right.</p>
<p>If you are wondering why a schema might change without code changing, think in terms of audit logging, effective/expiration dates and other similar things that get added by DBAs for systemically for compliance issues. Another source of underhanded changes is denormalizations for performance elsewhere in the system or user-defined fields.</p>
http://stackoverflow.com/questions/1592939/is-it-possible-to-have-fields-that-are-assignable-only-onceComment by IDisposable on Is it possible to have fields that are assignable only once?IDisposable2009-10-20T07:54:45Z2009-10-20T07:54:45ZSounds like a WriteOnce field.http://stackoverflow.com/questions/95257/how-to-get-a-table-of-dates-between-x-and-y-in-sql-server-2005/95728#95728Comment by IDisposable on How to get a table of dates between x and y in sql server 2005IDisposable2009-10-19T19:55:15Z2009-10-19T19:55:15ZIf you can't use CTEs (like in SQL Server 2000), then you can use what I wrote here <a href="http://musingmarc.blogspot.com/2006/07/need-date-range-in-sql-without-filling.html" rel="nofollow">musingmarc.blogspot.com/2006/07/…</a>http://stackoverflow.com/questions/95257/how-to-get-a-table-of-dates-between-x-and-y-in-sql-server-2005/95284#95284Comment by IDisposable on How to get a table of dates between x and y in sql server 2005IDisposable2009-10-19T19:54:24Z2009-10-19T19:54:24ZAnd it's portable to other SQL engines (including Server 2000). :)http://stackoverflow.com/questions/1213258/what-are-the-benefits-of-putting-a-default-value-in-a-column/1213282#1213282Comment by IDisposable on What are the benefits of putting a default value in a column?IDisposable2009-10-02T19:58:31Z2009-10-02T19:58:31ZSurely you meant GetUtcDate() for the LastChangeOn default...http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title/471958#471958Comment by IDisposable on What's the coolest startup programmer job title?IDisposable2009-09-25T23:42:50Z2009-09-25T23:42:50ZMy actual title is <b>Hack Prime</b>, I like that.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1091856#1091856Comment by IDisposable on What's your most controversial programming opinion?IDisposable2009-09-16T17:21:07Z2009-09-16T17:21:07ZIt's Jon. You've failed to even identify the correct target.http://stackoverflow.com/questions/7244/anyone-know-a-good-workaround-for-the-lack-of-an-enum-generic-constraint/1409873#1409873Comment by IDisposable on Anyone know a good workaround for the lack of an enum generic constraint?IDisposable2009-09-15T23:29:25Z2009-09-15T23:29:25ZHasAny and HasAll seem awesome.http://stackoverflow.com/questions/246498/creating-a-datetime-in-a-specific-time-zone-in-c-fx-3-5/246529#246529Comment by IDisposable on Creating a DateTime in a specific Time Zone in c# fx 3.5IDisposable2009-09-15T20:51:42Z2009-09-15T20:51:42ZNot sure about the expected use of the constructor that takes a DateTime and TimeZoneInfo, but given that you're calling the dateTime.ToUniversalTime() method, I suspect you are guessing it to "maybe" be in local time. In that case, I think you should really be using the passed-in TimeZoneInfo to convert it to UTC since they're telling you it is supposed to be in that timezone.http://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net/780800#780800Comment by IDisposable on How do I remove diacritics (accents) from a string in .NET?IDisposable2009-09-01T21:18:15Z2009-09-01T21:18:15ZYou should preallocate the StringBuilder buffer to the name.Length to minimize memory allocation overhead.
That last Split/Join call to remove sequential duplicate _ is interesting. Perhaps we should just avoid adding them in the loop. Set a flag for the previous character being an _ and not emit one if true.http://stackoverflow.com/questions/1297272/how-long-should-sql-email-fields-beComment by IDisposable on How long should SQL email fields be?IDisposable2009-08-19T00:26:37Z2009-08-19T00:26:37ZWhat RFC are you using for those values?http://stackoverflow.com/questions/58429/sql-set-based-range/59657#59657Comment by IDisposable on SQL set-based rangeIDisposable2009-08-15T06:51:50Z2009-08-15T06:51:50ZAlso, you could probably use a generic for all the base numeric types (byte, int, etc....)http://stackoverflow.com/questions/58429/sql-set-based-range/59657#59657Comment by IDisposable on SQL set-based rangeIDisposable2009-08-15T06:50:58Z2009-08-15T06:50:58ZAwesome... one thing I would do different is in your logic to test if we're ever going to complete, you should really do this: if (Math.Sign(_end - _start) != Math.Sign(_incr)) throw new ArgumentException(""Will never reach end!");http://stackoverflow.com/questions/1253167/how-does-being-high-on-marijuana-affect-your-ability-to-codeComment by IDisposable on How does being high on marijuana affect your ability to code?IDisposable2009-08-10T06:25:08Z2009-08-10T06:25:08Z@Thorarin is correct, obviouslyhttp://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access/1178855#1178855Comment by IDisposable on SQL to determine minimum sequential days of access?IDisposable2009-07-24T21:33:45Z2009-07-24T21:33:45ZThank you! When you want to talk about days in SQL Server, you do it by truncating the time completely. I use Truncate the CreateionDate down to days in all these tests (on the right side only or you kill SARG) using DATEADD(dd, DATEDIFF(dd, 0, CreationDate), 0) This works by subtracting the supplied date from zero--which Microsoft SQL Server interprets as 1900-01-01 00:00:00 and gives the number of days. This value is then re-added to the zero date yielding the same date with the time truncated.http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access/1176255#1176255Comment by IDisposable on SQL to determine minimum sequential days of access?IDisposable2009-07-24T21:31:44Z2009-07-24T21:31:44ZJust repeating myself, because this is a oft seen issue. Truncate the CreateionDate down to days in all these tests (on the right side only or you kill SARG) using DATEADD(dd, DATEDIFF(dd, 0, CreationDate), 0) This works by subtracting the supplied date from zero--which Microsoft SQL Server interprets as 1900-01-01 00:00:00 and gives the number of days. This value is then re-added to the zero date yielding the same date with the time truncated.