Forum Replies Created

Viewing 15 posts - 46 through 60 (of 85 total)

  • RE: Hoiw many computers do you use at home?

    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...


    Bob
    SuccessWare Software

  • RE: A couple of Databases Versus Many Databases

    And further more ...

     

    Suppose you consolidate the DBs and as a part of weekly maintenance you run a dbcc checkdb repair_fast. This requires...


    Bob
    SuccessWare Software

  • RE: A couple of Databases Versus Many Databases

    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,...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 12 Jan 2005

    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


    Bob
    SuccessWare Software

  • RE: Question of the Day for 12 Jan 2005

    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...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 20 Dec 2004

    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...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 13 Oct 2004

    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...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 09 Nov 2004

    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...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 09 Nov 2004

    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


    Bob
    SuccessWare Software

  • RE: Question of the Day for 05 Nov 2004

    I stand corrected.

    It is actually a very powerful language in what it allows you do to. It is, again IMHO, a weak language...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 05 Nov 2004

    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...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 08 Oct 2004

    WOW!

    That question was worth twenty one points!!!


    Bob
    SuccessWare Software

  • RE: Question of the Day for 22 Oct 2004

    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...


    Bob
    SuccessWare Software

  • RE: Question of the Day for 19 Oct 2004

    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,...


    Bob
    SuccessWare Software

  • RE: Restore log backup without database backup file

    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...


    Bob
    SuccessWare Software

Viewing 15 posts - 46 through 60 (of 85 total)