17_important data tables

Overview

Teaching: min
Exercises: min
Questions
Objectives

title: “17. Important Data Tables” teaching: 25 exercises: 17 questions:

1. Vendor Schema

The OTN Node database format includes a “vendor” schema which contains multiple tables. Each table is formatted to hold tag or receiver speciications for a certain manufactoruer. These tables are used by the Nodebooks during verification processes and it is often important for Node Managers to do further investigating by searching these tables.

These are the tables:

Here are some useful SQL queries:

When we identify problems like different tag ID or tag life expectancy in tag-1 notebook, we should check which one is correct in vendor.c_vemco_tags. OTN Database - path of data through the system OTN Database - path of data through the system

Details about vendor.c_vemco_tags table:

When we identify problems like different transmitter_IDs in deployment notebook, we want to check which one is correct in vendor.c_vemco_receivers

When there’s a missing INNOVASEA spec (warning shows as below), we want to first check if we have a auth file

SELECT * FROM obis.contacts c
LEFT JOIN vendor.contacts_auths ca
ON c.contact_pk = ca.contact_pk
LEFT JOIN obis.contacts_projects cp
ON c.contact_pk = cp.contact_pk WHERE
  collectioncode = 'XXXXX'

OTN Database - path of data through the system

OTN Database - path of data through the system

Details about vendor.c_vemco_receivers table:

2. OBIS Schema

The OTN Node database format includes a “OBIS” schema which contains multiple tables. Each table is formatted to hold speiecs, instrument, animal, and project information

There are a couple of important tables:

3. Discovery Schema

The OTN Node database format includes a “discovery” schema which contains multiple tables. Each table is formatted to hold a summary of detecion information

This schema holds the summarized information of the data. The tables in this schema include:

These tables have many applications, including creating data reports.

Key Points