Forum Replies Created

Viewing 15 posts - 3,106 through 3,120 (of 7,429 total)

  • RE: SQLSERV.EXE eating up all memory

    Page Faults demonstrate that a lot of page swaping is going on and points to potential insufficent memory. If all other figures are low but the Page Faults are high...

  • RE: Multiple updates

    I never thought about the index hint ordering. I will say that is cool and does work nicely.

  • RE: Changing Execution Plans For Same SQL Code

    Try changing your trigger to match the updated syntax for joins to see what happens.

    CREATE TRIGGER rem_trg_rem_Test_table1_INSERT ON rem_Test_table1 FOR INSERT AS
    

    SELECT INSERTED.[ID] FROM INSERTED...
  • RE: SQLSERV.EXE eating up all memory

    quote:


    These no's are far below than ours :O.

    At 446112K of memory consumption by SQLSERVR.EXE, page faults are 114665K.

    We have upgraded our...

  • RE: SQLSERV.EXE eating up all memory

    I am not 100% sure and have not found the details anywhere but I believ stolen referres to there not being enough buffer space for all processes and that another...

  • RE: Multiple updates

    Are the columns in order via a clustered index so that the order is currently 4,6,8,9

    if so then the previous should handle otherwise i say is 8,6,4,9 8 will be...

  • RE: Cursors - Are they always the wrong way

    I will say I am not a fan of cursors for server side stuff just by the way they use memory as they are more intensive for the most part....

  • RE: MSDE install on a Domain Controller

    Did you install while logged in as an administrator account? Not Power User or other but Admin.

  • RE: SQL Server Hanging when Update Statement Executed

    Look at the execution plan of the update that is causing the issue. It will of course lock rows/pages or table based on the plan and something may be dragging...

  • RE: how would You determine the fields in a PK?

    This will give you just the column names from the PK. It was stripped from the sp_pkeys Proc.

    
    
    select
    convert(sysname,c.name) as COLUMN_NAME
    from
    sysindexes i
    INNER JOIN
    syscolumns c
    ON
    c.id = i.id
    where
    (i.status &...
  • RE: Group BY

    Sorry cafemar1 I wasn't meaning to make it sound otherwise.

  • RE: Strange Query Error

    This

    quote:


    SOAP Toolkit 3.0 uninstalled, 2.0SP1 installed, the 3.0 re-installed


    never happend on my machine...

  • RE: Changing Execution Plans For Same SQL Code

    Can you capture both execution plans in text form and post so we can see the differences. I use them myself a lot and have gotten used to reading them....

  • RE: Strange Query Error

    Tested myself. Apparently there is a limitation within subqueries to cascade inward.

    Testing myself it seems at level 3 it cannot see any of the alias before itself, even level...

  • RE: Group BY

    quote:


    so if you say

    select distinct name, count(name)

    from table

    it won't work

    you have to say

    select distinct name, count(name)

    from table

    group by name

    and it lists the...

Viewing 15 posts - 3,106 through 3,120 (of 7,429 total)