Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: Deletes take forever

    my statement looks like this

    delete from table where column = 'value'

  • RE: Deletes take forever

    I just ran DBCC SHOWCONTIG on the table and found out that the indexes might be fragmented.

    So I will give DBCC Reindex a shot and see how it affects the...

  • RE: Deletes take forever

    Total # of rows 5306052

    Rows to be deleted 175000

  • RE: Adding IDENTITY to a primary key column of existing table

    This procedure creates a NewID column copies everything from ID to NewID, drops the ID column and renames NewID to ID. Now While creating the NewID column you can set...

  • RE: String Manipulations

    The problem is I cannot get a list of city names. I have to work with only the kind of strings that I mentioned above.

    I know its gonna be difficult,...

  • RE: SUBQUERY not working

    you are selecting all the rows of table "tblUsers_Sites" when you say "SELECT * FROM tblUsers_Sites WHERE UserID = @userid" and trying to equate it to tblSites.ID

    Select only...

Viewing 6 posts - 1 through 6 (of 6 total)