guides:reference:custom_tables
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:reference:custom_tables [2022/01/07 17:35] – yspeerte | guides:reference:custom_tables [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Custom data tables ===== | ||
+ | |||
+ | The NetYCE database allows you to create custom data tables for use in Relations and for general purposes. These tables are accessible for data maintenance using the " | ||
+ | |||
+ | This article describes how to create a custom table. | ||
+ | |||
+ | |||
+ | ==== NetYCE databases ==== | ||
+ | |||
+ | NetYCE supports tables in four distinct databases, each for a specific purpose. | ||
+ | |||
+ | ^ Database ^ Function ^ Remarks ^ | ||
+ | | YCE | Networking device models and objects | netYCE managed | | ||
+ | | LOGS | Application logs | netYCE managed | | ||
+ | | NCCM | Network device configurations history | netYCE managed | | ||
+ | | CMDB | CMDB tables | NetYCE managed, customer accessible | | ||
+ | | NMS | Custom tables and Customer specials | Customer managed | | ||
+ | |||
+ | Custom tables are permitted only in the " | ||
+ | |||
+ | When the system creates a backup of its database, the YCE, LOGS, CMDB and NMS databases are included in the " | ||
+ | |||
+ | NetYCE uses the " | ||
+ | |||
+ | |||
+ | ==== Database accounts ==== | ||
+ | |||
+ | To facilitate the permissions over the various databases and tables, the " | ||
+ | |||
+ | ^ User ^ Scope ^ Password ^ | ||
+ | | netYCE | full admin | *not public* | | ||
+ | | touchup | application r/w | *not public | | ||
+ | | justread | application r/o | gmngmhhw | | ||
+ | | replication | master/ | ||
+ | | cmdbadmin | CMDB table mgmt | cmdbadmin | | ||
+ | | nmsadmin | NMS table mgmt | nmsadmin | | ||
+ | |||
+ | To create and manipulate tables in the NMS database the ' | ||
+ | |||
+ | ==== Patches tables ==== | ||
+ | |||
+ | NetYCE relies on an extensive system of patches that automatically update database tables and data during installation and software updates. To keep track of the patches already installed or to be executed a dedicated table is created in each of the databases. Its existence and data integrity is essential for the proper operation of NetYCE. These tables should never be modified in any sense. | ||
+ | |||
+ | In the NMS database this table is named " | ||
+ | |||
+ | ==== Table requirements ==== | ||
+ | |||
+ | For NetYCE to support Custom tables properly, a few requirements on the table definition apply: | ||
+ | |||
+ | * Table " | ||
+ | |||
+ | * Table at least one primary key " | ||
+ | |||
+ | * Use column type " | ||
+ | |||
+ | * Indicate a default value like and empty string and if a NULL value is allowed " | ||
+ | |||
+ | * Create secondary (MUL) keys for columns often used in JOINS "**KEY `Hosts` (`HostA`, | ||
+ | |||
+ | - Last column definition to make database replication more reliable: " | ||
+ | |||
+ | Example of a poorly defined table: | ||
+ | < | ||
+ | CREATE TABLE `NMS`.`Custom_domains` ( | ||
+ | `Domain` char(20) NOT NULL, | ||
+ | `Domain_name` char(100) | ||
+ | ); | ||
+ | </ | ||
+ | |||
+ | The same table properly defined: | ||
+ | < | ||
+ | CREATE TABLE `NMS`.`Custom_domains` ( | ||
+ | `Domain` varchar(20) NOT NULL DEFAULT '', | ||
+ | `Domain_name` varchar(100) DEFAULT '', | ||
+ | `Timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), | ||
+ | PRIMARY KEY (`Domain`) | ||
+ | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; | ||
+ | </ | ||
+ | |||
+ | |||
+ | ==== MySQL managers ==== | ||
+ | |||
+ | To create or modify a Custom table, any of the available Mysql management applications can be used. They often offer many different functions for examining and modifying databases and are available for Linux, Mac and Windows. Many commercial and free tools are available on the internet. | ||
+ | |||
+ | * Mysql Workbench for all platforms | ||
+ | * Sequel Pro for Mac | ||
+ | |||
+ | Additionally, | ||
+ | |||
+ | ==== Using the " | ||
+ | |||
+ | The sample session below shows how to login and first create a table, and then remove it. | ||
+ | |||
+ | Login as " | ||
+ | |||
+ | < | ||
+ | $ mysql -u nmsadmin -p | ||
+ | Enter password: | ||
+ | Welcome to the MariaDB monitor. | ||
+ | Your MariaDB connection id is 8735 | ||
+ | Server version: 10.2.41-MariaDB-log MariaDB Server | ||
+ | |||
+ | Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. | ||
+ | |||
+ | Type ' | ||
+ | |||
+ | MariaDB [(none)]> | ||
+ | Database changed | ||
+ | MariaDB [NMS]> show tables; | ||
+ | +--------------------+ | ||
+ | | Tables_in_NMS | ||
+ | +--------------------+ | ||
+ | | Nms_patches | ||
+ | +--------------------+ | ||
+ | 1 row in set (0.00 sec) | ||
+ | |||
+ | MariaDB [NMS]> describe Nms_patches; | ||
+ | +--------------+--------------+------+-----+---------------------+-------------------------------+ | ||
+ | | Field | Type | Null | Key | Default | ||
+ | +--------------+--------------+------+-----+---------------------+-------------------------------+ | ||
+ | | Patch_id | ||
+ | | Patch_base | ||
+ | | Patch_status | varchar(50) | ||
+ | | Patch_descr | ||
+ | | Patch_log | ||
+ | | Timestamp | ||
+ | +--------------+--------------+------+-----+---------------------+-------------------------------+ | ||
+ | 6 rows in set (0.00 sec) | ||
+ | |||
+ | MariaDB [NMS]> SELECT Patch_id, Patch_descr FROM Nms_patches ORDER BY Patch_id DESC LIMIT 1; | ||
+ | +----------+---------------------------------------------+ | ||
+ | | Patch_id | Patch_descr | ||
+ | +----------+---------------------------------------------+ | ||
+ | | 21092706 | NMS cutoff patch for setting 7.2.0 to 8.0.0 | | ||
+ | +----------+---------------------------------------------+ | ||
+ | 1 row in set (0.00 sec) | ||
+ | |||
+ | MariaDB [NMS]> CREATE TABLE `Custom_domains` ( | ||
+ | -> | ||
+ | -> | ||
+ | -> | ||
+ | -> | ||
+ | -> ) ENGINE=MyISAM DEFAULT CHARSET=utf8; | ||
+ | Query OK, 0 rows affected (0.00 sec) | ||
+ | |||
+ | MariaDB [NMS]> describe Custom_domains; | ||
+ | +-------------+--------------+------+-----+---------------------+-------------------------------+ | ||
+ | | Field | Type | Null | Key | Default | ||
+ | +-------------+--------------+------+-----+---------------------+-------------------------------+ | ||
+ | | Domain | ||
+ | | Domain_name | varchar(100) | YES | | ||
+ | | Timestamp | ||
+ | +-------------+--------------+------+-----+---------------------+-------------------------------+ | ||
+ | 3 rows in set (0.00 sec) | ||
+ | |||
+ | MariaDB [NMS]> DROP TABLE Custom_domains; | ||
+ | Query OK, 0 rows affected (0.00 sec) | ||
+ | |||
+ | MariaDB [NMS]> \q | ||
+ | Bye | ||
+ | </ | ||
+ | |||
+ | |||