IDisposable
|
Registered User
|
|
|
Oct 20 |
comment |
Is it possible to have fields that are assignable only once? Sounds like a WriteOnce field. |
|
Oct 19 |
comment |
How to get a table of dates between x and y in sql server 2005 If you can't use CTEs (like in SQL Server 2000), then you can use what I wrote here musingmarc.blogspot.com/2006/07/… |
|
Oct 19 |
comment |
How to get a table of dates between x and y in sql server 2005 And it's portable to other SQL engines (including Server 2000). :) |
|
Oct 2 |
comment |
What are the benefits of putting a default value in a column? Surely you meant GetUtcDate() for the LastChangeOn default... |
|
Oct 2 |
answered | How to set a default value for one column in SQL based on another column |
|
Sep 25 |
comment |
What’s the coolest startup programmer job title? My actual title is Hack Prime, I like that. |
|
Sep 25 |
answered | What’s the coolest startup programmer job title? |
|
Sep 25 |
answered | Porting 32 bit C++ code to 64 bit - is it worth it? Why? |
|
Sep 16 |
comment |
What’s your most controversial programming opinion? It's Jon. You've failed to even identify the correct target. |
|
Sep 15 |
comment |
Anyone know a good workaround for the lack of an enum generic constraint? HasAny and HasAll seem awesome. |
|
Sep 15 |
comment |
Creating a DateTime in a specific Time Zone in c# fx 3.5 Not 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. |
|
Sep 1 |
comment |
How do I remove diacritics (accents) from a string in .NET? You 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. |
|
Aug 28 |
awarded | ● Nice Answer |
|
Aug 21 |
awarded | ● Yearling |
|
Aug 19 |
comment |
How long should SQL email fields be? What RFC are you using for those values? |
|
Aug 15 |
comment |
SQL set-based range Also, you could probably use a generic for all the base numeric types (byte, int, etc....) |
|
Aug 15 |
comment |
SQL set-based range Awesome... 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!"); |
|
Aug 10 |
answered | Stored Procedure returning an int |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? Thank 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. |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? Just 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. |
|
Jul 24 |
revised |
SQL to determine minimum sequential days of access? Admitted defeat, I'm not even opening Query editor on this one... |
|
Jul 24 |
revised |
SQL to determine minimum sequential days of access? Wow, cut and paste sucks in here. |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? (because NOBODY would do a SELECT *, we know adding this computed column will not affect the query plans unless the column is referenced... right guys?!?) |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? And the IsConsecutive can be a computed column defined in the UserHistory table. You could also make it a materialized (stored) computed column that is created when the row is inserted IFF (if and ONLY if) you always insert the rows in chronological order. |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? 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. |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? (the above works by taking the difference in whole days between 0 (e.g. 1900-01-01 00:00:00.000) and then adding that difference in whole days back to 0 (e.g. 1900-01-01 00:00:00). This results in the time portion of the DATETIME being discarded) |
|
Jul 24 |
comment |
SQL to determine minimum sequential days of access? Truncating a SQL DATETIME to date-only is best done with DATEADD(dd, DATEDIFF(dd, 0, UH.CreationDate), 0) |
|
Jul 24 |
answered | SQL to determine minimum sequential days of access? |
|
Jun 24 |
comment |
Is this an efficient sql server query? If you cast to sql_variant, the sorting logic will be string-based, so numeric values will not be sorted as expected. |
|
Jun 16 |
revised |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio Noted that problem is solved, and giving link to site-in-action |
|
Jun 16 |
awarded | ● Scholar |
|
Jun 16 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio I agree that it should be because of that. However it never came back. I suspect one of the Windows Updates that installed at reboot had some effect. That or something in the Hyper-V host got happy. |
|
Jun 16 |
accepted | Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio |
|
Jun 13 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio I'm using "codegen" as a short-hand for our SqlParameter-creating code which is synched to the actual datatypes in the database. We always generate the correct SqlType values. As a closing comment, since the server was rebooted, this issue has not arised again... joy. |
|
Jun 12 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio No, sorry. Read the question again... I show the .Net trace's call and it IS passing in exactly the correct datatypes. Our access layer gets that right. |
|
Jun 12 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio Thanks for the information, we do NOT have Forced Parameterization turn on (I confirmed it is off for the Server and this database). As for different parameters, nope... same exact query was the ONLY values sent ever to this server. In fact, given the nature of the bug, the only values that could have changed are the strings in the middle of the (evil, ICK!!) LIKE '%' + @parameter + '%' clauses. It's something strange in the server, near as I can tell. Seems to be behaving since being rebooted. |
|
Jun 11 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio All tables have all the indexes (of the right kind) you could ever wish for.. the plan shows nothing but happy-path plan elements. |
|
Jun 11 |
answered | Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio |
|
Jun 11 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio You are correct about the sp_executesql I would be surprised if that's the cause as this is ONLY statement against the server that could match the plan cache (fresh restart). I can't force a recompile on every statement my codegen makes, that would hammer the server. Can I disable parameterization somehow? |
|
Jun 11 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio No stored procs in the game. Statistics updated, ALL indexes rebuilt. |
|
Jun 11 |
awarded | ● Student |
|
Jun 11 |
revised |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio added clarification about where the runs occur. |
|
Jun 11 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio Good question. Yes, same destination server, same network, same machine (e.g. Cassini/Asp.Net for the failure, SSMS 2008 for the success). |
|
Jun 11 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio By didn't change anything, I mean that I added that to the SSMS and it still finish in sub-second time. |
|
Jun 11 |
comment |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio Tried that, didn't change anything. The connection, database and server defaults are ARITHABORT ON. Trace show same connection options for both connections: -- network protocol: TCP/IP set quoted_identifier on set arithabort on set numeric_roundabort off set ansi_warnings on set ansi_padding on set ansi_nulls on set concat_null_yields_null on set cursor_close_on_commit off set implicit_transactions off set language us_english set dateformat mdy set datefirst 7 set transaction isolation level read committed |
|
Jun 11 |
revised |
Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio added trace's RPCComplete (for the timeout case) |
|
Jun 11 |
asked | Query times out in .Net SqlCommand.ExecuteNonQuery, works in SQL Server Management Studio |
