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

#5851
General Support / Re: db upgrade 1.1.4
September 14, 2011, 03:48:00 PM
Hi!

Looks like database was messed up during all these upgrades. Can you please run

nxdbmgr upgrade -X

(it will ignore errors), and then try to run server. Also, if possible, export and send to me database schema - I'll check it for correctness.

Best regards,
Victor
#5852
General Support / Re: 1.1.4 sending mail errors
September 14, 2011, 12:23:11 PM
That's very strange. I don't touch e-mail sending code for a very long time. Is it possible to log SMTP conversation on your mail server?

Best regards,
Victor
#5853
General Support / Re: db upgrade 1.1.4
September 14, 2011, 12:21:31 PM
Could you please try this driver?

Best regards,
Victor
#5854
General Support / Re: Java Console - Map Object Link
September 13, 2011, 10:45:59 PM
Hi!

It's not implemented yet. I'll do it in one of the updates.

Best regards,
Victor
#5855
General Support / Re: NetXMS Agent for Debian/Ubuntu x64
September 13, 2011, 10:43:40 PM
It is in plans for a long time. I'll try to find some time to make it. What branch are more demanded - 1.0.x or 1.1.x?

Best regards,
Victor
#5856
General Support / Re: db upgrade 1.1.4
September 13, 2011, 01:13:49 AM
MySQL driver patch for 1.1.4. Just replace existing mysql.ddr with attached one.

Best regards,
Victor
#5857
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
#5858
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
#5859
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
#5860
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
#5861
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
#5862
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
#5863
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
#5864
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
#5865
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