Forum Replies Created

Viewing 11 posts - 106 through 116 (of 116 total)

  • RE: Installing SQL Server 2005 on Windows 2003 having SQL Server 2000

    >3)  Yes, you can use SQL QA 2000 to access SQL Server 2005, but only from another server. I believe that if you install SQL Server 2005 on the same server...

  • RE: Migration plan SQL2k to SQL2K5

    I think, the "Microsoft SQL Server 2005 Upgrade Advisor", which comes with the installation dvd is a good start.

     

  • RE: System not meeting sql requirments for some reason

    >I think it's safe to assume this won't be a production environment<

    How did you discover?

  • RE: Insert table select rows

    Basically, the procedure is OK. But how about some parentheses around it's parameters?

    CREATE PROCEDURE [contact].[importContactClient]

    (@userID int, @id uniqueidentifier) AS ...

  • RE: Using Cursors in Recursive calls

    I can't see, why a cursor would be necessary. Simply traverse your dependencies and issue a non-cursor call as long as you receive results.

    'DELETE FROM ' + @tableX + ' WHERE...

  • RE: Current Date minus one???

    Hello. I don't agree. First, people have no choice SQL-Server doesn't care, whether one ENTERS a time portion. That doesn't change the storage of...

  • RE: Current Date minus one???

    Do you think there are "."-characters stored in floating point values? ;P

    Of course not. The internal storage is always completely different from what you see. Never wondered how SQL...

  • RE: Current Date minus one???

    -- There are a lot of possible solutions. The following is only one of them.

    DECLARE @dtmEnd AS DATETIME,

                @dtmStart AS DATETIME

    SET @dtmEnd = FLOOR(CAST(GETDATE() AS FLOAT))

    SET @dtmStart = DATEADD(d,-1,@dtmEnd)

    PRINT...

  • RE: Help with Gigantic SQL Grand Total retrieval

    Of course, there are questions: will you pay me, if I do your work?

    Otherwise your problem should at least be broken down to...

  • RE: Dynamic SQL or Stored Procedure

    I wonder how many magnificent stored procedures could have been written, while you people prefer to talk ... 😉

    Simply take a look at this discussion. Is it structured? Is it...

  • RE: Question of the Day for 15 Jun 2004

    !exactly. The problem with the assumption of only one row being inserted/updated is obvious - but this wioll raise an error. The bigger problem is that inserts will go by...

Viewing 11 posts - 106 through 116 (of 116 total)