Forum Replies Created

Viewing 15 posts - 45,646 through 45,660 (of 49,571 total)

  • RE: sql server 2005 stops every night

    sultankahut (7/16/2008)


    After that a series of other messages like "SQL Server is terminating in response to a 'stop' request from Service Control Manager.

    That means that either somebody stopped SQL (issuing...

  • RE: I cannot select distinct when I inner join to other tables.

    J (7/16/2008)


    I am not certain this can really be called a flaw.

    SELECT DISTINCT ntext

    would mean for each record in the query, go get the text stored at pointer of ntext...

  • RE: DB Design ideas

    Sandy (7/16/2008)


    I have just gone through this links, and I think for the above DB design situation its not required. Because Karthik has already specified that there is no more...

  • RE: Call a web service from T-SQL

    noeld (7/16/2008)


    But I would go even further. When you find yourself in this situation you should try to call the webservice from the "CLIENT" not on the server.

    Fully agreed....

  • RE: query optimizer

    Just bear in mind that the entriesd in the query stats dmv are transient and are removed when the plan is discarded from cache.

    It cannot be guaranteed that everything...

  • RE: Cursor not fetching next row

    Pleasure.

  • RE: Cursor not fetching next row

    You can, but beware if you have more than a couple hundred rows. That kind of correlated subquery/triangular join performs really, really badly on larger row counts.

    Maybe a temp table...

  • RE: Monitoring the performance of Server

    Yes, it will have an effect. How much of one depends not only on the counters but on the frequency that you are logging the events.

    I would suggest you try...

  • RE: Monitoring the performance of server using perfmon tool

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

    No replies to this thread please. Direct replies to:

    http://www.sqlservercentral.com/Forums/Topic535347-65-1.aspx

  • RE: SQL Profiler

    Books online states

    The number of read operations on the logical disk that are performed by the server on behalf of the event. These read operations include all reads from...

  • RE: Cursor not fetching next row

    I don't have an answer to your cursor question, but maybe a solution that eliminates the cursor would be acceptable.

    First a check, are you using SQL 2005? (I assume so,...

  • RE: select into

    It does normally work out that way, though I have seen cases (on a large table on a server with multiple procs) where the order could come back in different...

  • RE: mssqlsystemresource database

    In my experience, if you can start SQL, you're fine.

    Steve: System resource contains the definitions of all of the system views, DMVs, Information schema views, all of the sp_ procs...

  • RE: Tran Log filling up daily

    Jack Corbett (7/16/2008)


    I obviously need to read a lot more.

    Was a similar query available pre-2005?

    No. In 2000 finding the cause of log filling was more trial and error....

  • RE: Tran Log filling up daily

    To find the cause of the log filling up, run

    SELECT name, recovery_model_desc, log_reuse_wait_desc from sys.databases

    The log_reuse_wait_desc will tell you what is preventing the space in the log file from been...

Viewing 15 posts - 45,646 through 45,660 (of 49,571 total)