- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- HPSIM 4.1 with remote Database(sql2000)
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
07-20-2004 10:42 PM
07-20-2004 10:42 PM
HPSIM 4.1 with remote Database(sql2000)
I am wondering if anybody tried using remote db with HPSIM 4.1.
I have been trying this bit the install never seem to be over while doing that, works fine with MSDE, but i dont want to use that as it will increase the overhead on my CMS box.
Cheers
Vivek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2004 12:57 AM
07-21-2004 12:57 AM
Re: HPSIM 4.1 with remote Database(sql2000)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2004 09:01 PM
07-21-2004 09:01 PM
Re: HPSIM 4.1 with remote Database(sql2000)
It doesnt throws any error/exception, but after creating database and schema(SIM install) it gets stuck at a screen(Initailizing install), I am trying to use a remote database MS sql 2000 sp3 running on windows 2000 sp4.
The server i am installing HPSIM is running Windows 2003 with sql client tools.
I have tried to install this configuration at least three times and it always shows the same thing.
Any help will be much appreciated.
Cheers
Vivek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2004 01:59 AM
07-22-2004 01:59 AM
Re: HPSIM 4.1 with remote Database(sql2000)
If you look in the file initconfig.log (before aborting the hung installation) you will see errors like the following.
Creating database 'Insight_v1_0_162058859'...
Creating schema...
*** WARNING: FAILED the following SQL command:
====
CREATE index notice_st_dev_sv_index on notices(State, deviceKey,
noticeseverity)
====
java.sql.SQLException: [Microsoft][ODBC SQL Server Driver][SQL Server]
Column name 'deviceKey' does not exist in the target table.
*** WARNING: FAILED the following SQL command:
====
CREATE INDEX trap_rcv_lu_index on trapitems (trap_enterprise,
trap_generic_id, trap_specific_id)
====
java.sql.SQLException: [Microsoft][ODBC SQL Server Driver][SQL Server]
Cannot create an index on 'trapitems', because this table does not
exist in database 'Insight_v1_0_162058859'.
*** WARNING: FAILED the following SQL command:
====
create view notices_view as ( select devices.Name as 'Device
Name', 'Severity' = case when noticeSeverity=100 then 'Informational'
when noticeSeverity = 1 then 'Normal' when noticeSeverity=2
then 'Warning' when noticeSeverity=3 then 'Minor' when
noticeSeverity=4 then 'Major' when noticeSeverity=5 then 'Critical'
else convert(char(10), noticeSeverity) end, 'state' = case when
state=1 then 'Discovered' when state=2 then 'Not Cleared' when state =
5 then 'Cleared' when state = 6 then 'IN Progress' end, generated,
cleared, largeValue as Description from notices, noticeType, devices,
stringresource, stringtablelarge where notices.noticeType =
noticeType.noticeType and notices.deviceKey = devices.deviceKey and
stringresource.resourceclassname='noticetype' and
stringresource.resourceName='description' and
noticeType.noticeType=stringresource.subclass and stringtablelarge.id
= stringresource.id )
To successfully install SIM on SQL 2000 you will need to create a new database instance using the default collation sequence.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2004 11:09 PM
07-25-2004 11:09 PM
Re: HPSIM 4.1 with remote Database(sql2000)
Thanks very much for the info.