Viewing 15 posts - 271 through 285 (of 321 total)
Agile development is all about recognizing you won't get it perfect the first time, and the time and effort wasted on waterfall style high ceremony up front design and documentation...
December 20, 2007 at 5:39 am
Thanks Matt, for taking the time to reply with such a complete example. I studied and learned from your approach, but I'm not sure what is to be gained...
December 18, 2007 at 11:51 am
My fear in using global ##temp tables was that multiple users could trip over each over. Is that unfounded?
December 17, 2007 at 1:20 pm
I think you can use:
insert into TableA
(user_id, fname, lname)
select 'ajones','ANN','JONES'
Where user_id <> 'ajones'
(Something of a moot no-op statement, but I assume your requirements have been simplified.)
or use an EXCEPT statement...
December 17, 2007 at 1:18 pm
It had me stumped! That might be a good interview question. (I'd suggest an Obfuscated SQL contest, but too much SQL falls into that category naturally.)
December 14, 2007 at 5:25 am
The cowards way out, when you can, is to simply add (and later discard) top rows containing text to keep Excel from incorrect assumptions about the rest of the row...
December 14, 2007 at 5:21 am
Very nice Derek!
Getting the list might be a good use of the custom reports option, although I don't recall if the report gets any indication of the object from which...
December 13, 2007 at 6:17 am
As I'm sure you know, all SQL Server Objects support extended properties; I try (with only modest success) to define and populate a "description" property (and others as desired) to...
December 13, 2007 at 4:52 am
I have reached the conclusion (possibly unjustified) that splitting a table into history v. current is usually a bad idea, and creates problems like being unable to do a complete...
December 11, 2007 at 7:23 am
While I would hardly consider omitting the "=true" a shortcut, perhaps I can be accused of over generalizing. T-SQL is the first language that I recall that did not allow...
December 7, 2007 at 4:50 am
Interesting. In fact, in Access 2003 this query (where [isDate] is a check box field):
SELECT [Elems - CPMIS].Name, [Elems - CPMIS].Typ
FROM [Elems - CPMIS]
WHERE IsDate;
works fine.
But the Designer...
December 6, 2007 at 11:39 am
You can say field = true, but it is redundant. Field is either true, false, or null; in which case a test against true simply returns the value of the...
December 6, 2007 at 6:50 am
Or cleaner, since MS Access recognizes Booleans (unlike SQL Server), simply say "where field". (Where takes a Boolean, and field (displayed with check boxes) is a Boolean.)
From...
December 5, 2007 at 5:06 am
For sure, but the big question is why is there such a big difference between the two call styles? (I have since discovered that the reference to CURRENT_TIMESTAMP in the...
November 21, 2007 at 6:39 am
Same topic (http://www.sqlservercentral.com/Forums/FindPost424410.aspx), but I don't see anywhere the function is calling itself. You may have found the key, but I am still missing it. The table returning...
November 21, 2007 at 4:36 am
Viewing 15 posts - 271 through 285 (of 321 total)