Forum Replies Created

Viewing 15 posts - 17,956 through 17,970 (of 22,202 total)

  • RE: Are the posted questions getting worse?

    I left out a few things:

    Cricket bat, hockey stick, bludgeoning devices of all kinds, light sabre's, blasters, fiber optic laser beam assemblers, fiber optic laser beam disassemblers, death stars, a...

  • RE: Are the posted questions getting worse?

    Chad Crawford (3/19/2009)


    You are more than welcome to The Thread. We all started with little knowledge and we all still have people who know more than we do.

    I have...

  • RE: Index not rebuilding

    Oh yeah. We did a lot of tests to see if we could put GUID to work. It made developers lives easier, but it really seriously impacted the database. I...

  • RE: Index not rebuilding

    I have several issues with GUID's as clustered indexes. First, they're very wide. This means fewer per page and more pages per index, making them somewhat less efficient. That's a...

  • RE: Index not rebuilding

    I don't think Gail and I are in disagreement here. You need a clustered index on these tables, however, a primary key of GUID is not the best choice, and...

  • RE: assigning values to a parameter of a sql statement

    nabajyoti.b (3/19/2009)


    i have table table1 with two columns col1,col2

    my statement is insert table1 values('dummy',xyz)

    where xyz is a variable and i want to put some values in a loop for...

  • RE: Are the posted questions getting worse?

    RBarryYoung (3/18/2009)


    Bruce W Cassidy (3/18/2009)


    [font="Verdana"]Ah, anger management...

    As a suggestion, go buy a collection of soft, squishy balls. Not only can you play with them as stress relievers, but you...

  • RE: Upgrade SQL 2000 to SQL 2005/2008 Server

    Support cycles being what they are, if I were upgrading today (and I am), I'd be going for 2008, not 2005. At this point, it's four years into the 2005...

  • RE: Restore SQL2008 database to SQL2005

    Compatibility mode is so that older or deprecated code continues to work on the new server, not so you can move backwards. Once it's formatted on the 2008 system, it's...

  • RE: Index not rebuilding

    Unless, by chance, you're using the ordered GUID. It still fragments, but not as much.

  • RE: Slow performing select statement on large table

    Right there with you. I finally developed enough arm & shoulder strength to graduate to the 10lb sledge. Makes a HUGE difference. As you say, it'll fix or replace anything.

  • RE: Index not rebuilding

    You don't need to cluster on the PK. Generally, the best place for the cluster is on the most frequently used access path. More often than not, this is the...

  • RE: Slow performing select statement on large table

    Matt (3/18/2009)


    GilaMonster (3/18/2009)


    No. If there's a lock on the messages table it will just affect queries on the messages table. If there's a lock on a portion of the messages...

  • RE: Slow performing select statement on large table

    Nah, blocking can be very isolated. It might be a particular page on the table that's slowing stuff down.

  • RE: Slow performing select statement on large table

    Matt (3/18/2009)


    The annoying thing is that at the time of posting on this forum the query runs in less than a second, it's only at certain periods throughout the day...

Viewing 15 posts - 17,956 through 17,970 (of 22,202 total)