Forum Replies Created

Viewing 15 posts - 6,481 through 6,495 (of 7,418 total)

  • RE: Hidden Tricks To SQL Server Table Cleanup

    SAinCA (3/6/2013)


    @ScottPletcher

    Not sure if what you are saying is that "it didn't happen the way I said it did..."

    READ_COMMITTED_SNAPSHOT isolation is set ON for the database in question.

    In order to...

  • RE: Hidden Tricks To SQL Server Table Cleanup

    SAinCA (3/6/2013)


    Please, if you're on SQL2005, watch out that you have sufficient TEMPDB space to accommodate all those deleted rows.

    When a row is deleted, it is stored in TEMPDB as,...

  • RE: Hidden Tricks To SQL Server Table Cleanup

    Edward.Polley 76944 (3/6/2013)


    Agreed the count method consumes resources so initially against huge tables I hard code the count. Say the table has 50 million rows to remove, no point...

  • RE: Formatting issue in SQL

    sqlnaive (3/6/2013)


    Yuvipoy/Lynn,

    I agree with both of you. Infact i'm checking my code that way only. However my concern is if SQL is giving such an efficient way of checking a...

  • RE: Hidden Tricks To SQL Server Table Cleanup

    Like some others here, I'm not in favor of the "count" method of doing these DELETEs. In particular, if the process has to be stopped and then resumed later,...

  • RE: DB Normalisation Help required

    Below is a start. Please don't skimp on the design phase, it will bite you later. Foreign key relationships are indicated by matching column names.

    Be prepared, though: when...

  • RE: how to write a column expression in a query based on other table value exist

    Or you can use EXISTS:

    SELECT

    sno, sname, address,

    CASE

    WHEN EXISTS(SELECT 1 FROM dbo.StudentDrillEnrolled sde WHERE sde.sno...

  • RE: Formatting issue in SQL

    Check out OBJECT_DEFINITION(). That returns a single nvarchar(MAX) that is the whole procedure, rather than 255 characters per row (artificial "line"?) that sp_helptext seems to do.

    I find it useful...

  • RE: convert 2000 db to 2008 r2 db

    In SQL 2008, if you want a specific user to be able to execute any stored proc (existing ones and newly created ones), you can do this:

    USE <your_db_name>

    GRANT EXECUTE TO...

  • RE: Select full month number (with 0)

    Lynn Pettis (3/5/2013)


    ScottPletcher (3/5/2013)


    Lynn Pettis (3/5/2013)


    ScottPletcher (3/5/2013)


    Jeff Moden (3/4/2013)


    I'd love to take the credit for it but it's not my code. It's Scotts (although I'd have done it the...

  • RE: SQL 2008 enterprise to standard degradation

    There's no physical db differences from Enterprise to Std, so if the SQL version numbers are the same, you should be able to restore all dbs, including system dbs, from...

  • RE: Select full month number (with 0)

    Lynn Pettis (3/5/2013)


    ScottPletcher (3/5/2013)


    Jeff Moden (3/4/2013)


    I'd love to take the credit for it but it's not my code. It's Scotts (although I'd have done it the same way).

    I was...

  • RE: Select full month number (with 0)

    Jeff Moden (3/4/2013)


    I'd love to take the credit for it but it's not my code. It's Scotts (although I'd have done it the same way).

    I was just curious as...

  • RE: Including additional columns in a unique clustered index

    GilaMonster (3/4/2013)


    ScottPletcher (3/4/2013)


    Again, rigid overly-simplistic rules such as those will give you a poorly performing database with excessive nonclustered indexes to cover all the queries the clus index can't because...

  • RE: Select full month number (with 0)

    Jeff Moden (3/4/2013)


    @Scott,

    I'm not so sure why you insist on using codes for literal dates, but I prefer not to.

    Where in the world did I suggest using a format code...

Viewing 15 posts - 6,481 through 6,495 (of 7,418 total)