Forum Replies Created

Viewing 15 posts - 16 through 30 (of 36 total)

  • RE: Long executive plan, long compile? Why?

    Fergusson,

    have you had a look at the query plan when the "compile" time was so long? It must have been a litte complex, but try to check if it used...

  • RE: Blocking on TempDb

    Ludo, I haven't analysed your comnplete work, but three things came to my mind which may be helpful:

    1) Split your Transactions into smaller chunks, so you can commit multiple parts....

  • RE: Update Table in diff DB, same server

    Sorry, but I am confused by your code. Maybe I am just used to a different syntax, maybe this is the reason for your problem: To me it seems you...

  • RE: Index conflict

    What makes the query so complicated that you can not use index hints? If it is complicated, how does a simple query behave ? Is it slow or fast if...

  • RE: 15K vs 10K Disks

    Thank you all for your help. I have ordered the 10K Disks and asked my dealer for info on the write-cache-enabler. Seems to make sense to invest <500$ since the...

  • RE: Changing a column from INT to BIGINT - Urgent

    why are you so hungry for a bigint? You can have an ID which spreads over two columns.

  • RE: "Stuck" stored procedure hung on tempdb?

    dplittle, have you had any success so far?

    Two things came to my mind when looking at your code:

    1) your WHERE clause is weak, i.e. the "like" part does not...

  • RE: Cascade delete - too slow - need ideas...

    loks like your tables do internal restructuring after the delete. What are your Indexes and their fillfactors ? I would experiment with different values for the fillfactor on the clustered...

  • RE: SQL server is not known to be running

    quote:


    I was able to solve this message in one instance by increasing the amount of time in the login time-out (seconds)
  • RE: SQL server is not known to be running

    quote:


    This doesn't return the state in a quick enough manner to the slower PC's to allow EM to know that everything...

  • RE: SQL server is not known to be running

    quote:


    When I try to connect to the server in EM, I get the following message:

    The SQL Server \\servername is not known...

  • RE: Specify your index in your query!

    quote:


    IMHO it is better to investigate why the optimizer preferred the clustered index to the index that you felt was more...

  • RE: Really strange performance problem

    quote:


    is it possible the query using the substing(30) might cross a line from using RAM to using HDD for storage?
  • RE: Really strange performance problem

    rickzan,

    I suspect your varchar-column runs across some kind of page-border when you change the substring from 20 to 30 characters. This may make a comparison more difficult for the server...

  • RE: I want to avoid transactions

    I remember our developer group trying the same thing about 5 years ago. They just wanted to avoid the overhead of transaction logging where it's not really necessary. After a...

Viewing 15 posts - 16 through 30 (of 36 total)