The new kid on the block!

Monday, November 5, 2012

Microsoft Dynamics CRM and SQL Server 2012

At Microsoft Dynamics our vision is to help companies transform into dynamic businesses by impassioning and equipping the individuals in their organizations.  SQL Server 2012 which is being released at the Virtual Launch Event today is helping us deliver on that promise.  Microsoft Dynamics CRM along with SQL Server 2012 provides a mission-critical customer data platform that can provide valuable insights for end-users, fulfilling the vision of “CRM Anywhere” by enabling individuals to access the right information at the right time on the right device.

Related Link

Thursday, June 21, 2012

CRM Books (FREE) on my Skydrive

I've few books for Microsoft Dynamics CRM lovers and hope that it would benefit them in every way.

Feel free to write back.

Related Link

Monday, June 4, 2012

CHANGING 5000 LIST VIEW LIMIT

CRM 2011 has added a count to all list views but this count is limited to 5000 records; if you have more than 5000 records, you will get "Records 1-x of 5000+".

Note: This only applies to CRM 'On-Premise' installation.

USE MSCRM_CONFIG
GO

Update DeploymentProperties
Set IntColumn=-1
Where ColumnName='TotalRecordCountLimit'

-1 (or any negative number), will disable the limit but you can also change it to another limit.

Reset the IIS to apply the above changes.