MYSQL Database Schema(s) for SANCP data


First: ABOUT SANCP OUTPUT FORMAT(S)
===================================

You can now use the 'format' option in the sancp configuration
file to specify what information you wish to record for 'stats', 
'realtime', and 'stdout' (the latter is for 'console' use.)

See docs/fields.LIST for the name and description of all available 'fields'
See contrib/sancp.conf for an example 'format' configuration entry



SANCP DB SCHEMAS
================

Now, with the above having been explained, you can have sancp
create a basic mysql schema for each output format: stats and realtime.

Running the following will generate schemas for sancp's default
stats and realtime output formats. 

% sancp --schemas 

Sancp will exit after having created:

	./realtime.schema
	./stats.schema 

  in the current directory.



And, this will create schemas for the stats and realtime output formats
as specified in the configuration file 'sancp.conf'

% sancp -c sancp.conf --schemas 

Again, the following files are created in the current directory

	./realtime.schema
	./stats.schema 


NOTE: The schemas generated by sancp DO require further modification; they are designed
to help simplify the process of creating database tables. 
i.e You will need to, at least, identify a PRIMARY KEY field or INDEX(ES).

