Viewing 15 posts - 3,106 through 3,120 (of 7,429 total)
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...
April 24, 2003 at 10:30 am
I never thought about the index hint ordering. I will say that is cool and does work nicely.
April 24, 2003 at 10:28 am
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...
April 24, 2003 at 10:24 am
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...
April 24, 2003 at 9:45 am
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...
April 24, 2003 at 5:35 am
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...
April 24, 2003 at 5:16 am
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....
April 24, 2003 at 4:39 am
Did you install while logged in as an administrator account? Not Power User or other but Admin.
April 24, 2003 at 4:30 am
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...
April 24, 2003 at 4:15 am
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 &...
April 24, 2003 at 4:12 am
This
quote:
SOAP Toolkit 3.0 uninstalled, 2.0SP1 installed, the 3.0 re-installed
never happend on my machine...
April 24, 2003 at 3:27 am
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....
April 23, 2003 at 4:36 am
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...
April 23, 2003 at 4:29 am
quote:
so if you sayselect 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...
April 23, 2003 at 4:15 am
Viewing 15 posts - 3,106 through 3,120 (of 7,429 total)