Quantcast
Channel: ProjectWise Design Integration Wiki
Viewing all articles
Browse latest Browse all 1890

Slow user list index for SQL Server

$
0
0
Current Revision posted to Content Management - Wiki by Marty.Nickel on 7/29/2013 7:49:56 PM

  
 Applies To 
  
 Product(s):ProjectWise Integration Server
 Version(s):08.11.11.559
 Environment: N/A
 Area: Integration / Caching /Gateway
 Subarea: MISC
 Original Author:marty nickel, Bentley Technical Support Group
  

 

 

 

 

 

 

 

Problem Description

User list slow to come back

Reason

The user list retrieves information back from the dms_audt table.  When this table is larger it can slowness with the User list displaying in a timely manner.

Steps to Resolve

Apply the attached index.  This will only work for SQL Servers, there have been no improvements shown with Oracle:

/* *********************************************************************************************
--
-- This will add an index to the dms_audt table to help with a slow user list
-- Author: Marty Nickel
-- Date Created: 10/3/2012
--
************************************************************************************************/

CREATE NONCLUSTERED INDEX [index_dms_audt_slow_user_list] ON [dbo].[dms_audt]
(
 [o_objtype] ASC,
 [o_objno] ASC
)
INCLUDE ( [o_acttime]) WITH (SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF) ON [PRIMARY]


Viewing all articles
Browse latest Browse all 1890

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>