Forum Replies Created

Viewing 15 posts - 6,016 through 6,030 (of 14,953 total)

  • RE: Identity Column

    Alter Table is the only way to add an identity column to an existing table.

    Other methods involve copying the table (usually to a temp table), dropping it, recreating it, and...

  • RE: Age-old question: Cluster on Date or ID?

    The "hot spot" thing has been fixed for a while. I think since SQL 2000. Not so much of an issue these days.

    I'd say the bigger issue to...

  • RE: Rename SQL Server

    Server groups are server groups. If they have members, they might end up being in use.

  • RE: Error converting data type varchar to bigint

    It means one or more rows are returning something that can't be converted into a big integer.

    You might be able to use IsNumeric to find which rows.

  • RE: MCITP: Data Architect

    If you post it on Microsoft Connect, people can vote for/against it, and Microsoft gets the suggestion there.

  • RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LONGON Exception

    Windows can only pass authentication keys from one computer to one other, it doesn't allow chaining them. So, if you use Windows credentials to log in to a workstation,...

  • RE: Are You a Ten?

    K. Brian Kelley (11/17/2010)


    Lynn Pettis (11/17/2010)


    Anyone who claims to be a 10, imho, is either a liar or too full of himself (or herself) as it is simple arrogance. ...

  • RE: Connection Error, very common

    Only nothing to worry about if it's not a hardware problem that's going to get worse. I'd at least run diagnostics on that.

  • RE: @@ERROR and Triggers

    Yeah, that works too. I was just talking about reading error messages in SSMS, but getting an actual error value makes more sense for what you're looking for.

  • RE: Logic loop to check variables

    You're welcome.

  • RE: Insert with Loop

    Ah. That makes sense then.

  • RE: My SQLServer 2005 unexpexted is slow

    Have you looked at performance monitor to see what is taking up time? Is it running into memory pressure issues?

  • RE: Google Scale

    There's always a point, beyond which, no amount of optimizing anything has any measurable positive effect. There's also a point where the cost of increasing the optimization exceeds the...

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (11/16/2010)


    Alvin Ramard (11/16/2010)


    Chris Morris-439714 (11/16/2010)


    WayneS (11/16/2010)


    Chris Morris-439714 (11/16/2010)


    Thanks guys. I'll leave him be, he's had enough prompting.

    Think he'll PM you again for more help?

    No idea, Wayne.

    That really...

  • RE: How do we know the table name of an index?

    Yeah, I confused it for a moment with the sys.columns view. Should have looked before I posted.

Viewing 15 posts - 6,016 through 6,030 (of 14,953 total)