Forum Replies Created

Viewing 15 posts - 45,691 through 45,705 (of 49,571 total)

  • RE: Any Advice on Tuning

    Any Advice on Tuning

    Yeah. Get rid of the cursor. I can't see anything that makes the cursor necessary.

    Some information on what it's supposed to do, structures of tables involved and...

  • RE: Deadlocks

    steve smith (7/15/2008)


    I can't get this to load in my browser. Is there a problem in the way it's cited?

    Try doing a save-as

    http://download.microsoft.com/download/f/1/c/f1cf7b8d-7fb9-4b71-a658-e748e67f9eba/RowVersioningBasedIsolation.doc

    I've greatly enjoyed this thread, and a...

  • RE: Deadlocks

    Jonathan Kehayias (7/15/2008)


    The key thing here is the timing of the events. In this kind of deadlock scenario, a few nanoseconds can make the difference between a successful execution...

  • RE: LOG File Growth

    Do you have replication active?

    Do you have database mirroring?

    If you run the following, what does it return for the DB in question?

    SELECT name, recovery_model_desc, log_reuse_wait_desc from sys.databases

  • RE: Microsoft Certified Master: SQL Server 2008

    Steve Jones - Editor (7/15/2008)


    The prerequisites make some sense, but it needs to have some way to verify those items and test the skills.

    Since it's training courses and lab...

  • RE: Time outs

    There's no magical quick-fix for performance problems. You are going to have to find the poorly performing queries (run profiler for an hour or so and catch all the queries...

  • RE: DBCC Reindex then ??

    What recovery model is your database in?

  • RE: SQL Server 2000 - 2 Part Question-Case Statement and Processing speed

    The concatenation problem I'll leave for someone else. As for the perf problem...

    The functions you have on the column in the where clause prevent index seeks, so the query requires...

  • RE: restoring T-logs in single shot

    Specifying WITH RECOVERY recovers the database and brings it online. Once recovered, no more log backups can be applied (which is why you only want it specified on the last)

  • RE: DBCC command turning up repeatedly in Profiler

    Then someone's running a proc/sql batch on the other server that's checking your statistics.

    Have a look at the server that's the source of this. See what you can see running

  • RE: DBCC Reindex then ??

    Reindex alone should be fine. Reindex updates the statistics so there's no need to do that as a separate step

    Don't shrink your databases

    Don't truncate your logs. Either set up a...

  • RE: Encrypt and Dcrypt data

    rinu philip (7/15/2008)


    I have tried it on sql 2000.:) and it worked..

    I thnk that's an ODBC function, rather than native SQL. Can't find a confirmation though.

    Either way, there's no associated...

  • RE: T-LOGS

    DBCC SQLPERF(logspace) will show you the percentage log space used for all the database on the server

  • RE: Encrypt and Dcrypt data

    rinu philip (7/15/2008)


    SELECT ENCRYPT ('Test')-> when this select query is run on a database the value obtained is in an encrypted format.

    On which version of SQL? On SQL 2005,...

  • RE: query

    HanShi (7/15/2008)


    Keep in mind that the results are reset whenever the SQL-service is restarted.

    Entries disappear from the query_stats DMV when the query plan is discarded from the plan cache. Depending...

Viewing 15 posts - 45,691 through 45,705 (of 49,571 total)