On Thu, 5 Jul 2007 13:36:01 -0700, Ben Howard
It goes seven dots in relatively quickly and then just waits for
something for like 10-20 seconds, with the time changing per file.
Using EditSite to add a new site from the dev box to the prod box is
slow. From prod to dev is fast. So, it seems to be the database part
that is slow.
<SNIP>
A little more.
I just tested saving a project and looking at the database locks being
held 7 dots in:
There's 5 locks: Type

B, Mode:S, Status:GRANT, Owner:Sess
The Last TSQLs are:
-MSP_WEB_SP_QRY_GetAllResourceForResId;1
-MSP_WEB_SP_QRY_GetEOrDResourceForResID;1
-IF @@TRANCOUNT > 0 COMMIT TRAN; IF @@TRANCOUNT = 0 SET XACT_ABORT OFF
-MSP_WEB_SP_SEC_CheckSPObjectPermission;1
-sp_execute;1
There's a 2nd set of locks, with the same proc id as
"sp_execute;1"earlier but in a separate object listing:
ProjectServer.dbo.MSP_Attribute_Strings.
For all, the Status is GRANT and the Owner is Xact.
Last TSQL Lock Type Mode Index
sp_execute;1 KEY X I_MSP_ATTRIBUTE_STRINGS
sp_execute;1 KEY X I_MSP_ATTRIBUTE_STRINGS
sp_execute;1 PAG IX I_MSP_ATTRIBUTE_STRINGS
sp_execute;1 TAB IX
These appear on both dev and prod servers. But on Dev it takes a
second or two, whereas prod takes (in the project i was testing)
perhaps 10-20 seconds.
I tested both when noone else was logged on, and no locks were being
help in the ProjectServer database. Because of last weeks
backup\restore, dev and prod currenty have nearly the same data.
I am not sure what else i can check to determine the issue. Would
someone please point me in the right direction? I'd appreciate any
help i could get.
B.