Viewing 15 posts - 46 through 60 (of 84 total)
5 PCs and a PS2 that are used virtually every day. But I still don't have digital cable or HDTV.
I'm thinking of scavenging some older pcs and fiddling around...
January 25, 2005 at 7:42 am
And further more ...
Suppose you consolidate the DBs and as a part of weekly maintenance you run a dbcc checkdb repair_fast. This requires...
January 14, 2005 at 7:30 am
Well, for what it's worth, we run several hundred databases in our environment. It creates some adminstrative headaches and some things (like starting and stopping the service) are very slow,...
January 14, 2005 at 7:23 am
No harm, no foul.
I for one appreciate the effort you guys put forth in creating these things. But we all like to complain a bit
January 12, 2005 at 1:23 pm
It only asked if it was possible. Anything is possible. Such a broadly stated question is the bane of IT. Good specs always make for a better outcome. Plus, it's...
January 12, 2005 at 7:46 am
This was my thinking. Seems to me that since we were given latitude in setting requirements for the developer, the best approach would be to have him submit his request...
December 20, 2004 at 9:19 am
OK. I'm confused. The question says the error is because of a duplicate primary key in the publisher, but all of the answers deal with the subscriber or agent. It seems...
November 16, 2004 at 7:28 am
Still don't think it's a bug.
This fails:
1) select 999999999 * 11
But these dont'
2) select 99999999 * 11
3) select 9999999999 * 11
I believe what is happening is that SQL Server uses...
November 9, 2004 at 9:00 am
Not a bug, but a type conversion problem.
This works:
declare @Tmp numeric(38,4)
declare @tmp2 bigint
set @tmp2=999999999
set @Tmp = @tmp2 * 11
select @Tmp
November 9, 2004 at 7:33 am
I stand corrected.
It is actually a very powerful language in what it allows you do to. It is, again IMHO, a weak language...
November 5, 2004 at 8:22 am
So who invented T-SQL?
IMHO, this is a really good example of the weakness of the language. Implicit type conversions are dangerous in general, but...
November 5, 2004 at 7:00 am
WOW!
That question was worth twenty one points!!!
November 1, 2004 at 7:07 am
It's been my experience that QOD runs hot and cold and we are in a bit of a cold spell. Sometimes it really makes you think.
My problem with this question...
October 22, 2004 at 8:46 am
Hence my preference for strongly typed languages. IMHO, code like that should not pass a code review. If you ever expect a string value to be assigned to an integer value,...
October 19, 2004 at 7:09 am
Thanks for the explanation on this. I thought something strange along these lines could happen but I really wasn't sure what was going on. It makes perfect now sense since...
September 7, 2004 at 1:10 pm
Viewing 15 posts - 46 through 60 (of 84 total)