Viewing 11 posts - 1 through 11 (of 11 total)
It often occurs that we need to collect partial information to be completed later in a subsequent step when it becomes available. Haven't we all stood in line behind someone...
October 15, 2019 at 5:25 pm
Refactoring, at least as used by the defacto canonical book "Refactoring" by Martin Fowler, doesn't mean simply altering code, whether to good effect or not, whether well-written or not.
It's explicitly...
November 11, 2015 at 4:22 pm
There is value in being aware of the many reasons queries are fast or slow. What would begin making this useful would be a. A discussion about relative magnitude of...
June 7, 2012 at 1:55 am
To repeat what others have said, this has been done over and over.
The thing that makes me most nervous though is how it turns the user
interface into a big table...
October 27, 2010 at 4:23 pm
Glen Cooper (4/27/2010)
April 27, 2010 at 4:04 pm
Did I understand that you have Administrators writing rules that are passed through triggers? Given the inherent difficulty of debugging triggers isn't that an issue?
Don't you have an issue where...
April 23, 2010 at 1:41 pm
As to the size of the table, you'll presumably write it to be large enough for the purpose to which you are applying it at the time. Validating its size...
September 23, 2009 at 11:36 pm
It still seems to me like a solution in search of a problem.
If you can't get a simple static table approved for a
perfectly defensible purpose, why would The Force...
September 23, 2009 at 6:12 pm
Cliff Jones (12/7/2007)
December 7, 2007 at 3:45 pm
I've always wondered why SET NOCOUNT ON has not been the default. It seems self-evident that doing more work takes longer, and should be made optional. Basically, don't do the...
December 7, 2007 at 2:20 pm
Ordinarily one uses cursors for normal database activity as a last resort. Hopefully you can simplify this a bit.
Can you describe what you are trying to accomplish at a little...
August 2, 2007 at 9:44 pm
Viewing 11 posts - 1 through 11 (of 11 total)