Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: evilDBA
  • Order by date
  1. evilDBA

    nolock hint is causing a table lock

    Hint: if you see some table-level locks of your table, it can be just harmless schema-stability lock, not data lock.
  2. evilDBA

    My old laptop is faster then my PROD :)

    >While the total number of feet to travel may be longer the max potential throughput is much higher. Ha ha! All SAN guys are always talking about *throughput*, and never - about the reactivity. For the OLTP systems we need reactivity, not the throughput. It is like using a 18-wheeler (SAN)...
  3. evilDBA

    My old laptop is faster then my PROD :)

    >It's all about having enough disks, of the correct type, in the correct RAID group, shared with the correct other LUNs and services. But I guess no matter how you configure it, SAN will always have longer 'roundtrip' time to disk in comparison to a local disk. Reactivity will be lower - and...
  4. evilDBA

    Intra-query parallelism deadlock?

    You can trace individual statements in stored procs using SQL profiler. Or, if you isolated you query, you can add debug prints :) On OLTP systems, where the number of simultaneous active connections >> N of processors, I recommend to disable parralelism completely. On OLAP/Reporting systems...
  5. evilDBA

    Intra-query parallelism deadlock?

    > I don't even know where to begin. It is very simple Just add OPTION (MAXDOP 1) at the end of your query
  6. evilDBA

    My old laptop is faster then my PROD :)

    Thank you, I'll read the article. It would be interesting to know the best execution time on your PROD, say, during the calm night time. I bet it will be around 600-700ms - still worse then my laptop :) Quick question. What do you mean by separation of a LOG and DATA on a SAN disk? Say, if I...
  7. evilDBA

    Deadlocks - Help

    I cant help without looking at the souce code of stored procedures.
  8. evilDBA

    My old laptop is faster then my PROD :)

    Take the script I provide and execute it several times on any database. Take the best result (it returns the elapsed time in ms) On my old laptop I get about 600ms. On the best PROD server I had 430ms - but it was with a standard RAID drives. On any SAN EMC system it was a real nightmare. 800...
  9. evilDBA

    Debugging or a parody on it?

    >I also use SQL Profiler quite a lot to see exactly what is being executed. It is much more difficult for nested procedures. BTW the utility I found really works.
  10. evilDBA

    Debugging or a parody on it?

    Hi, thank you all. Look what I had googled, images look promising, I will try it. http://www.sqlsolutions.com/products/sql-ultimate-debugger/screenshots.html
  11. evilDBA

    Debugging or a parody on it?

    So, only debug selects? No other way?
  12. evilDBA

    Debugging or a parody on it?

    Hi, I am new here. I tried to debug stored procedures in the Visual Studio and you know… it was a real shock. Like going in time 10 or 20 years back. The stored procedures I deal with contain a lot of @tab and #tab, but it appears that I can not evaluate the values of these objects! The only...

Part and Inventory Search

Back
Top