If you have a lot of information to enter,
you may find it useful to populate
the Author, Institution, Topic, and SecurityGroup tables directly.
mysql -u docdbadm -p SomeDocDB
mysql> insert into SecurityGroup set Name='SomeGroup',Description='Some Group of Priviledged People',CanCreate=1;
mysql> insert into Institution set ShortName='Fermilab',LongName='Fermi National Accelerator Laboratory';
mysql> insert into Author (FirstName,MiddleInitials,LastName,InstitutionID)
-> values('John','J.','Doe',1),
-> ('W.','Bill','Jones',1);
mysql> insert into Author (FirstName,LastName,InstitutionID)
-> values('Amy','Smith',1);
mysql> INSERT INTO Topic (TopicID,ShortDescription,LongDescription)
-> values(1,'Main Topic 1','Some high-level topic');
mysql> INSERT INTO Topic (TopicID,ShortDescription,LongDescription)
-> values(2,'Main Topic 2','Another high-level topic');
mysql> INSERT INTO Topic (TopicID,ShortDescription,LongDescription)
-> values(3,'Lower-level','A child topic of topic 2');
## And insert into the hierarchy too
mysql> INSERT INTO TopicHierarchy (TopicID,ParentTopicID)
-> values(3,2);