Forum Replies Created

Viewing 15 posts - 25,846 through 25,860 (of 26,487 total)

  • RE: Query worked in SQL 2000 but not in 2005

    Being at work right now, can't take the time.  If I can, I will see what I can do from home if some else hasn't already jumped in to help.

  • RE: SQL Server 2008 is here

    I signed up for the CTP.  Guess I'll start "playing" with it shortly.

  • RE: Update leading Zeros

    Try this:

    update dbo.mytable set

        mycolumn = replicate('0', 6 - len(ltrim(rtrim(mycolumn)))) + mycolumn

    where

        len(ltrim(rtrim(mycolumn)) < 6

  • RE: Query worked in SQL 2000 but not in 2005

    First thing I would do, rewrite the query for SQL Server 2005.  I'd use CTE's to replace the derived tables in your query and I would use ANSI standard join...

  • RE: Loading sql server 2005 backup file to sql server 2000

    I would say no.  I was asking Microsoft that question myself as we have been having performance issues on one of our SQL Server 2005 systems and that question was...

  • RE: Same Query Same Database Different Servers

    Actually, the DTA's recommendations did help general performance of the system.  It recommended 36 new indexes that when implemented were beneficial to overall performance.  We still had issues at times...

  • RE: Same Query Same Database Different Servers

    Regarding our issues, we finally broke down and called Microsoft for help.  While we had a tech on the line we found one thing we had not looked at or...

  • RE: Bankers Rounding

    I have nothing to admit to being wrong about, nor do I have reason to apologize.

    As you have stated in several posts in this thread, you haven't answered my question. ...

  • RE: Loading sql server 2005 backup file to sql server 2000

    Unfortunately, no.  From BOL: Backups created with Microsoft SQL Server 2005 cannot be restored to an earlier version of SQL Server.

  • RE: Bankers Rounding

    Dave J.

    Okay, I agree.

    Lynn

  • RE: Bankers Rounding

    Huh?  This started as a topic on a Bankers Rounding function, and then you ask what day do you consider a transaction occuring when it occurs at midnight?  What does...

  • RE: Bankers Rounding

    You changed the subject when you brought up midnight.  We are no longer talking about the bankers round function.

  • RE: Bankers Rounding

    Okay, I can't stay out of it any longer.  David, you have put up a good argument, but it is time to end it.  No matter how much we try...

  • RE: Bankers Rounding

    mengus,

    Took a bit, but I see where you are coming from.  It looks like a case of semantics between your modification to my solution.  In mine, I choose to round...

  • RE: Statistics Explained

    I'll have to see if I can find a copy of Ken's book.  Your explaination helps, but to get a better understanding, perhaps additional books are worth the investment.

    Thanks.

Viewing 15 posts - 25,846 through 25,860 (of 26,487 total)