Pregunta

Estamos usando CRM 2011 como nuestra capa de persistencia y notamos un desempeño terrible.

Miramos y he aquí y he aquí que hay indexación, pero la indexación es un compuesto de todas las columnas en la entidad (casi, casi).Lo que lo hace prácticamente inútil para todas las intenciones y propósitos.

Entonces, ¿cómo puedo acelerar esto?Podría ir a la base de datos y agregar manualmente un índice, pero quiero pasar por los canales adecuados si es posible y para la capacidad de mantenimiento futura.Me he cambiado a través de Bing y Google y StackOverflow, pero no pude encontrar ninguna información sobre esta funcionalidad básica.

Ayuda.

¿Fue útil?

Solución

You can't solve this problem with Dynamics CRM. There is no way to configure indexing in Dynamics CRM, as it doesn't give you access to the underlying database - even not in a meta way.

If you have the need for indexes, you have to define them yourself in the database. This is supported by Microsoft (it is excluded from the unsupported modifications)

Modifications to the physical schema of the database, other than adding or updating indexes.

Keep in mind that due to the fact, that the application itself has no knowledge about the indexes, they are not part of the customizations and you have to deploy them yourself.

Otros consejos

For the guidance on adding CRM 2011 indexes, following this link: Optimizing and Maintaining a Microsoft Dynamics CRM 2011 Server Infrastructure

See the section labeled: Optimizing and Maintaining the Microsoft Dynamics CRM Database

While this question is about CRM 2011 it is worth noting that CRM 2013 (both online and on-premises) includes support for adding indexes:

In CRM 2013, the Index Management job automatically adds indexes for Quick Find columns, up to 20 in total.

Simply add quick find columns for the relevant fields and wait for the Index Management job to run.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top