- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- Re: HP insight manager database very large
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2007 03:09 AM
05-10-2007 03:09 AM
HP insight manager database very large
Any help would be appreciated.
Thanks Roger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2007 06:36 AM
05-10-2007 06:36 AM
Re: HP insight manager database very large
Please do not ferget to apply you re points, there are situated next to every message, next to date and time as UNASSIGNED.
Thank you and have a nice day.
Daniel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2007 11:10 PM
05-28-2007 11:10 PM
Re: HP insight manager database very large
Does anyone have a guide to the SQL tables as well?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007 12:34 AM
05-30-2007 12:34 AM
Re: HP insight manager database very large
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007 12:54 AM
05-30-2007 12:54 AM
Re: HP insight manager database very large
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007 12:59 AM
05-30-2007 12:59 AM
Re: HP insight manager database very large
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007 07:59 AM
05-30-2007 07:59 AM
Re: HP insight manager database very large
To delete the events from the database you can create an event collection of all events older than xx days then you can schedule a delete events task that references that event collection.
You should also determine what are these events and if SIM can be configured to ignore them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2007 01:06 PM
05-30-2007 01:06 PM
Re: HP insight manager database very large
Open SQL Enterprise mangers, select the database, open SQL Query Analyzer, and run the following script, change DB name to yours SQL database.
example:
-- Replace 'db_name' with the database name you want to shrink the log from.
-- Replace 'logfile_log' with the file-name from the db properties under the
-- Transaction Log tab (not the physical filename). You may need the double quotes.
-- (the log filename is usually the db_name with '_log' appended to it.)
Use db_name
BACKUP LOG db_name WITH TRUNCATE_ONLY
DBCC SHRINKFILE ("logfile_log",100)
go
Changing SQL DB logging mode to a â simpleâ will have only minor implication is that you do not have Trans log file. In event of SQL DB crash, you have to restore SQL db from full backup, since there is no Trans log file.
Yes this is one time exercise, as long as you keep the logging mode to a â Simpleâ . You do not need to stop SQL services.
Thanks,
Mahesh