Forum Replies Created

Viewing 15 posts - 45,721 through 45,735 (of 49,571 total)

  • RE: change nonclustered index to clustered index in sql server 2000 database table

    kiran (7/14/2008)


    I have posted in different forum

    Please don't cross post. It just wastes people's time and fragments replies.

    Replies to th following thread please

    http://www.sqlservercentral.com/Forums/Topic533714-145-1.aspx

  • RE: alter non-clustered index on primary key

    It's an index enforcing the primary key. To drop it, you will have to use ALTER TABLE ... DROP CONSTRAINT rather than DROP INDEX

  • RE: clustered index and pK

    They are unrelated terms.

    A primary key is the identifier of the row. It must be unique, it must have no nulls and it's used to enforce the entity integrity of...

  • RE: query

    Run profiler against your system for a while (an hour or so) and then examine the saved trace to identify the queries with the highest duration, reads and CPU.

  • RE: How do I reduce or eliminate logging?

    shahbaz.oradba (7/14/2008)


    take backup of T log with this option.

    WITH TRUNCATE_ONLY

    In simple recovery mode (which the OP's database is in), the log automatically truncates on checkpoint. Hence there is no...

  • RE: query optimizer

    shahbaz.oradba (7/14/2008)


    Hi,

    how can we know that particular query is taking long time and we have to optimize that,and i heared that query optimization through sqlserver profiler degrades the perfomance.?

    Sorry, I...

  • RE: Use a JOIN or a WHERE statement? What's the Difference?

    brdudley (7/14/2008)


    There is a slight difference in that the Where clause is evaluated after the Joins have happened.

    Order of clauses depends on the plan the opimiser chooses. Sometimes the...

  • RE: Restoring differential backup on other server

    shahbaz.oradba (7/14/2008)


    your backup startegy should be

    Backup strategies vary based on the size of the system, the available space for backups, the time allowed for restore and a number of other...

  • RE: Regarding database file shrinking

    Perry Whittle (7/14/2008)


    this shrinking malarky has been done to death all over the forum:D

    I know. That's why I wrote the blog post in the first place, so I didn't have...

  • RE: ETL Process taking a while to execute

    Generally, if you're deleting up to half the table (maybe even more) it's faster to save the rows you want, then trunate the table than to run the delete.

    Less impact...

  • RE: Deadlocks

    David Griffiths (7/14/2008)


    You state that using a non-covering index forces bookmark look-ups, and that these are the root of the problem. That is precisely correct, and that is precisely what...

  • RE: Cluster Service Restarts Automatically

    JeeKay (7/14/2008)


    Hi,

    DO you have the different types of Isolation Levels in SQL 2 K like 2005 ? I was not aware. I will try to do some reading on that....

  • RE: Upgrading to 2005

    Have you tried SQL Profiler?

  • RE: SQL server 2005 hardware configuration

    Guru (7/14/2008)


    this sufficient for my hardware configuration plz any one to suggest me.

    Depends what you're going to do with it.

    I would strongly suggest a RAID array rather than...

  • RE: Deadlocks

    Could you perhaps post the schema of the two Job tables and the definitions of the indexes that these example queries use?

    What are the execution times of these selects and...

Viewing 15 posts - 45,721 through 45,735 (of 49,571 total)