Yes. Drop all tables from database and then initialize it with command
nxdbmgr init c:\netxms\lib\sql\dbinit_mssql.sql
Best regards,
Victor
nxdbmgr init c:\netxms\lib\sql\dbinit_mssql.sql
Best regards,
Victor
We really need your input in this questionnaire
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
You can edit manual in wiki (I'll move it to pdf then), or just create separate articles about how to configure things.
C:\Source\NetXMS\x64\debug>sqlplus sys/admin@//192.168.64.3 as sysdba
SQL*Plus: Release 11.2.0.1.0 Production on Wed Feb 19 11:41:37 2014
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
SQL>
SQL> create user netxms identified by netxms;
User created.
SQL> grant create session to netxms;
Grant succeeded.
SQL> grant resource to netxms;
Grant succeeded.
SQL> grant create view to netxms;
Grant succeeded.
SQL>
DBDriver = oracle.ddr
DBServer = //192.168.64.3/XE
DBLogin = netxms
DBPassword = netxms
C:\Source\NetXMS\x64\debug>nxdbmgr init ..\..\sql\dbinit_oracle.sql
NetXMS Database Manager Version 1.2.12 Build 7861
Initializing database...
Database initialized successfully
C:\Source\NetXMS\x64\debug>