This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Knowledge Base
- :
- FlexNet Manager Suite database maintenance and performance guide
Subscribe
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
FlexNet Manager Suite database maintenance and performance guide
FlexNet Manager Suite database maintenance and performance guide
Summary
Provides you with some guidelines to assist in maintaining the performance of your FlexNet Manager Suite product.Synopsis
FlexNet Manager Suite is designed and built according to best practices with regards to performance and self-maintenance, however over time it may be desirable to perform certain maintenance and optimization tasks to ensure optimal performance. In general there are no special requirements for maintaining FlexNet Manager Suite or optimizing its operation beyond what is standard practice for any SQL Server.Discussion
Though SQL Server itself periodically performs a number of maintenance activities to optimize performance, there is a stored procedure in the FlexNet Manager Suite database that will run the SQL Server UPDATE STATISTICS procedure that will update query optimization statistics against the relevant FlexNet Manager Suite database tables. Note that this can take a while to complete:dbo.ECMUpdateStatistics
Another option that may be useful may be to clear out unneeded data from the Compliance history table, which by default is not pruned and can grow large over time. This table may contain data that is no longer relevant outside of archival and auditing purposes, for example that which relates to devices or other entities which were deleted some time ago. In this example, records older than 1 year are deleted from the database:
DELETE FROM ComplianceHistory WHERE HistoryDate < DATEADD(year, -1, GetDate())
Note: You should carefully consider what history information is valuable for your organization before attempting to remove any data. It is recommended that you perform a database backup before making any of these changes.
Beyond these possibilities, deeper optimization of your FlexNet Manager Suite environment is something the Flexera Services team can help with. If you are experiencing actual degradation of database or product performance, the best course of action would be to contact the Flexera Support team mailto:support@flexera.com
No ratings
Comments
Oct 18, 2019
04:12 AM
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
Oct 18, 2019
04:12 AM
Script provided by @ChrisG at the end of this topic is much nicer and better solution for deleting the history comparing to simple DELETE FROM.
https://community.flexera.com/t5/FlexNet-Manager-Forum/History-table-deletion-scripts/m-p/96349#M458
Oct 18, 2019
05:35 AM
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
Oct 18, 2019
05:35 AM
Hello David,
Perhaps it is an idea to build in some Maintenance configuration option in the Interface of FNMS. This would be much easier and also better maintained with newer releases. This is something our customers are asking for already many years now.
Regards
Ronald