Forum Replies Created

Viewing 15 posts - 9,496 through 9,510 (of 49,571 total)

  • RE: corrupted mdf file

    Steve Jones - SSC Editor (3/30/2014)


    NOTE that DBCC DBREPAIR is not recommended. I would be very careful about using any of these tools.

    More drive-by spam. This stuff gets posted on...

  • RE: TEMPDB issue

    poratips (3/28/2014)


    Only my concern is that it might cause corruption, right?

    Shrinking TempDB can, but since that's the opposite of what you need to do (make it bigger, give it more...

  • RE: Clustered Index Scan

    INT has a higher precedence than string, the string will convert to int, so if that is an int column (which we don't know), then the query will be essentially

    SELECT...

  • RE: Clustered Index Scan

    Eirikur Eiriksson (3/28/2014)


    SELECT @ProductID= ProductID FROM Product WITH (NOLOCK) WHERE SalesID= '@salesId' and Product = 'Clothes '

    Apart from not being SARGable...

    All the predicates in that query are SARGable. They're all...

  • RE: Log file is filling up

    I wrote an article on server-side trace?

  • RE: TEMPDB issue

    Shrinking (making smaller) a full file (too small) is a little counter-productive. It's like reducing the speed you're driving at because it's taking too long to get where you're going.

    You...

  • RE: Are the posted questions getting worse?

    Jack Corbett (3/28/2014)


    I call myself a Database Developer, but I've used programmer in the past. MY current title is Data Software Development Lead. If you can...

  • RE: Are the posted questions getting worse?

    Ed Wagner (3/28/2014)


    Grant - You have booth babes??? :w00t:

    Grant *is* the booth 'babe' 🙂

  • RE: Log file is filling up

    What is the recovery model?

  • RE: Duplicate key issue ... again ... and again ...

    Can you post the table definition and the procedure?

  • RE: Are the posted questions getting worse?

    Ed Wagner (3/28/2014)


    WayneS (3/27/2014)


    Luis Cazares (3/27/2014)


    How is it possible that someone writes a cursor instead of using SUM()?

    I'm afraid that this database is full of these pieces of sh code...

  • RE: Are the posted questions getting worse?

    dwain.c (3/28/2014)


    Ville-Pekka Vahteala (3/27/2014)


    Luis Cazares (3/27/2014)


    How is it possible that someone writes a cursor instead of using SUM()?

    I'm afraid that this database is full of these pieces of sh code...

  • RE: missing .mdf and .ldf database file after hard drive crash

    Two things.

    They're not hard drive recovery specialists. If you don't have an mdf and an ldf which doesn't attach or a backup which won't restore (a full-sized backup, not the...

  • RE: SQL INSERTS are significanlty slower on newer server

    mberran (3/27/2014)


    GilaMonster (3/27/2014)


    What wait types are you seeing on your data modification queries?

    What do the disk latency counters look like (physical disk sec/read and physical disk sec/write)?

    I requested the information...

  • RE: GUID Pirmary key

    Koen Verbeeck (3/27/2014)


    should a table always be clustered instead of a heap?

    Yes, in vast majority of cases.

    Heap has the forwarded records and the non-deallocation of pages to contend with, scans...

Viewing 15 posts - 9,496 through 9,510 (of 49,571 total)