Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

Code Block
languagebash
themerdark
$ mysql -u shrine -pdemouser


Code Block
languagesql
themerdark
CREATE DATABASE adapterAuditDB;
CREATE DATABASE qepAuditDB;
CREATE DATABASE stewardDB;
CREATE DATABASE 

...

shrine_query_history

...

 

Loading tables into DBs

adapter.sql → adapterAuditDB

;


Code Block
languagesql
themerdark
$ mysql -u shrine -pdemouser database_name < filename.sql

...



  • shrine_query_history

...

...

...

 

Ontology scripts

ontology_create_tables.sql - Creates shrine_ont, creates SHRINE, TABLE_ACCESS, and SCHEMES tables, and sets up schemas within tables.

 


Sign into MySQL as root and grant the shrine user full access again to all of these databases and their tables:

Code Block
languagebash
themerdark
$ mysql -u root
MariaDB [(none)]> GRANT ALL privileges ON *.* TO 'shrine'@'localhost';

...