Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Victor Kirhenshtein

#5836
General Support / Re: 1.1.4 database upgrade error
September 12, 2011, 04:15:29 PM
Yes, of course it will be corrected. Looks like 1.1.4 is one of the worst releases for the project history :( I'll do a 1.1.5 release this week with the fixes.
Btw, in 1.1.4 we have replaced old mssql.ddr with new one, which uses SQL Server Native Client, so it should work on modern Windows versions with SQL Server 2005 and up.

Best regards,
Victor
#5837
General Support / Re: db upgrade 1.1.4
September 12, 2011, 04:01:46 PM
Hi!

Same problem as here: https://www.netxms.org/forum/installation/1-1-4-database-upgrade-error/. In short, try to run manually

ALTER TABLE business_services DROP CONSTRAINT DF__business___paren__09746778;

Best regards,
Victor
#5838
General Support / Re: 1.1.4 database upgrade error
September 12, 2011, 04:00:37 PM
Try to login with same user as NetXMS server or use fully qualified name, most likely something like dbo.DF__business___paren__4B0D20AB or netxms.DF__business___paren__4B0D20AB. You should see fully qualified table names in management studio under <database>/tables.

Best regards,
Victor
#5839
General Support / Re: 1.1.4 database upgrade error
September 12, 2011, 03:27:05 PM
Please execute manually the following query:

ALTER TABLE business_services DROP CONSTRAINT DF__business___paren__4B0D20AB;

and then run upgrade again.

Best regards,
Victor
#5840
Announcements / Re: NetXMS 1.1.4 released
September 12, 2011, 10:32:17 AM
It was marked as private by reporter. It was about comment area on object overview page in new console - for large comments, scroll bars does not appear.

Best regards,
Victor
#5841
General Support / Re: db upgrade 1.1.4
September 11, 2011, 10:49:21 PM
Yes, unfortunately there is a bug in MySQL driver in 1.1.4. I'll try to made a patch tomorrow. Other DB engines should work fine. I do most of the development using Oracle and PostgreSQL, and at some point forgot to make necessary tests at MySQL.

Best regards,
Victor
#5842
General Support / Re: db upgrade 1.1.4
September 11, 2011, 10:15:07 PM
I have replicated this issue on my system. Looks like a bug in MySQL driver. I'll post a patch when I fix it.

Best regards,
Victor
#5843
General Support / Re: db upgrade 1.1.4
September 11, 2011, 10:02:05 PM
If you run netxmsd.exe from command line, you should omit -d switch, like this:

netxmsd.exe -D 9

Best regards,
Victor
#5844
General Support / Re: db upgrade 1.1.4
September 11, 2011, 09:29:57 PM
You should not initialize database if it already contains data. Initialization is for fresh installation on empty database.

Generally I do not recommend to use SQLite in production. It has both performance and upgrade issues, although performance can be insufficient only for relatively large installations. Upgrade problems are related to the fact that SQLite does not support DROP COLUMN operation - so if database upgrade requires column removal from the table, it will fail. It is possible to do upgrade manually in these cases, but it is time consuming and requires digging into the source code of nxdbmgr to see what SQL queries should be executed.

Best regards,
Victor
#5845
General Support / Re: db upgrade 1.1.4
September 11, 2011, 08:21:52 PM
So, you have MySQL database for 1.0.12 and want to upgrade it to 1.1.4? It should be possible to done it in place. Just install 1.1.4, point it to appropriate database, and run database upgrade. If it shows any error, please send me log/screenshot of nxdbmgr upgrade execution.

Best regards,
Victor
#5846
General Support / Re: version 1.1.4
September 11, 2011, 08:13:31 PM
Is there anything in the logs? Also, try to start netxmsd.exe from command line in debug mode (netxmsd.exe -D 9) and look for debug messages.

Best regards,
Victor
#5847
General Support / Re: db upgrade 1.1.4
September 11, 2011, 08:11:37 PM
What is your production DB engine?
#5848
General Support / Re: db export
September 11, 2011, 06:15:56 PM
Hi!

DB export uses built-in sqlite engine to create export file. It works with all supported DB engines. What exact file it cannot found?

Best regards,
Victor
#5849
General Support / Re: system requierments
September 11, 2011, 03:55:49 PM
Hi!

On Windows, it is Windows Server 2003 or Windows XP, no specific requirements for service packs.

Best regards,
Victor
#5850
Announcements / NetXMS 1.1.4 released
September 11, 2011, 03:17:44 PM
Hi all!

NetXMS version 1.1.4 is out. Changes from previous release:


- Implemented named parameters for events
- Added integration script for HP EVA disk arrays
- Added driver for Netscreen firewalls
- Usage of DNS names instead of IP address for defining primary
  communication address is now supported (for better support of nodes with
  dynamic IPs)
- New MIBs added: ATM-TC-MIB, CISCO-BRIDGE-EXT-MIB, CISCO-IF-EXTENSION-MIB,
  CISCO-L2L3-INTERFACE-CONFIG-MIB, CISCO-PRIVATE-VLAN-MIB,
  CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB, DVMRP-MIB, IGMP-MIB, IPV6-TC,
  RAPID-CITY-BAY-STACK, RC-MLT-MIB
- Mobile client for Android introduced
- Many small improvements in management console
- Fixed some problems with database export/import
- Fixed issues: #328, #329, #330

Best regards,
Victor