+-------------------------------------------------------------+
| CONCAT('Program started at ', CURTIME(), ' on ', CURDATE()) |
+-------------------------------------------------------------+
| Program started at 16:58:19 on 2007-07-29                   |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|  9743328 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.01 sec)

--------------
SELECT BaseYear, VClass, RoadType, FIPSCountyId, FIPSStateId, VMT 

FROM BaseYearVMT LIMIT 1 
--------------

+----------+--------+----------+--------------+-------------+--------+
| BaseYear | VClass | RoadType | FIPSCountyId | FIPSStateId | VMT    |
+----------+--------+----------+--------------+-------------+--------+
|     2009 |      1 |       11 |            1 |           1 | 99.113 |
+----------+--------+----------+--------------+-------------+--------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.01 sec)

--------------
CREATE TABLE xTEMP1 

SELECT BaseYear, VClass, RoadType, FIPSCountyId, FIPSStateId, VMT 

FROM BaseYearVMT p 

WHERE ISNULL(p.BaseYear) OR ISNULL(p.VClass) OR ISNULL(p.RoadType) OR ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId)  
--------------

Query OK, 0 rows affected (0.06 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|     3223 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. Altitude in County,must be either H or L.' AS ErrorAltitude

FROM County t

WHERE t.Altitude NOT IN ('H','L')

GROUP BY Altitude

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9996: Data out of range. OzoneSeasonStartMonth in County must be between 1 and 12.' AS ErrorOzoneSeasonStartMonth

FROM County t

WHERE t.OzoneSeasonStartMonth NOT BETWEEN 1 AND 12

GROUP BY OzoneSeasonStartMonth

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data out of range. OzoneSeasonStartDay in County must be between 1 and 31.' AS ErrorOzoneSeasonStartDay

FROM County t

WHERE t.OzoneSeasonStartDay NOT BETWEEN 1 AND 31

GROUP BY OzoneSeasonStartDay

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data out of range. OzoneSeasonEndMonth in County must be between 1 and 12.' AS OzoneSeasonEndMonth

FROM County t

WHERE t.OzoneSeasonEndMonth NOT BETWEEN 1 AND 12

GROUP BY OzoneSeasonEndMonth

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data out of range. OzoneSeasonEndDay in County must be between 1 and 31' AS ErrorOzoneSeasonEndDay

FROM County t

WHERE t.OzoneSeasonEndDay NOT BETWEEN 1 AND 31

GROUP BY OzoneSeasonEndDay

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

+--------------+-------------+-------------+----------+--------------------+-----------------------+---------------------+---------------------+-------------------+-----------------+--------------+------------------+------------------+---------------------+---------------------------+--------------+-------------------------------+
| FIPSCountyId | FIPSStateId | CountyName  | Altitude | BarometricPressure | OzoneSeasonStartMonth | OzoneSeasonStartDay | OzoneSeasonEndMonth | OzoneSeasonEndDay | Stage2StartYear | PhaseInYears | LDVStage2Percent | HDVStage2Percent | NGVFractionFileName | CountyMonthHourDataSource | DataSourceId | CountyVMTMonthAllocDataSource |
+--------------+-------------+-------------+----------+--------------------+-----------------------+---------------------+---------------------+-------------------+-----------------+--------------+------------------+------------------+---------------------+---------------------------+--------------+-------------------------------+
|            1 |          10 | Kent County | L        |             29.962 |                     6 |                   1 |                   8 |                31 |              93 |            2 |             65.3 |             65.3 |                     |                       625 |          701 |                          1006 |
+--------------+-------------+-------------+----------+--------------------+-----------------------+---------------------+---------------------+-------------------+-----------------+--------------+------------------+------------------+---------------------+---------------------------+--------------+-------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, CountyName, Altitude, BarometricPressure, OzoneSeasonStartMonth, OzoneSeasonStartDay, OzoneSeasonEndMonth, OzoneSeasonEndDay, Stage2StartYear, PhaseInYears, LDVStage2Percent,  

HDVStage2Percent, NGVFractionFileName, CountyMonthHourDataSource, DataSourceId, CountyVMTMonthAllocDataSource 

FROM County p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.CountyName) OR ISNULL(p.Altitude) OR ISNULL(p.BarometricPressure) OR ISNULL(p.OzoneSeasonStartMonth) OR ISNULL(p.OzoneSeasonStartDay) OR ISNULL(p.OzoneSeasonEndMonth) 

 OR ISNULL(p.OzoneSeasonEndDay) OR ISNULL(p.NGVFractionFileName) OR ISNULL(p.CountyVMTMonthAllocDataSource) 
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|     3223 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, HwyRepFIPSCntyID, NRRepFIPSCntyID 

FROM CountyMap LIMIT 1 
--------------

+--------------+-------------+------------------+-----------------+
| FIPSCountyId | FIPSStateId | HwyRepFIPSCntyID | NRRepFIPSCntyID |
+--------------+-------------+------------------+-----------------+
|            1 |           1 |                1 |               1 |
+--------------+-------------+------------------+-----------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, HwyRepFIPSCntyID, NRRepFIPSCntyID 

FROM CountyMap p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.HwyRepFIPSCntyID) OR ISNULL(p.NRRepFIPSCntyID)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|    38676 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. Month in CountyMonth must be between 1 and 12.' AS ErrorMonth

FROM CountyMonth t

WHERE t.Month < 1 Or t.Month > 12

GROUP BY Month

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.03 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, Month 

FROM CountyMonth LIMIT 1 
--------------

+--------------+-------------+-------+
| FIPSCountyId | FIPSStateId | Month |
+--------------+-------------+-------+
|            1 |           1 |     1 |
+--------------+-------------+-------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, Month 

FROM CountyMonth p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.Month)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|   928224 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. Month in CountyMonth must be between 1 and 12.' AS ErrorMonth

FROM CountyMonth t

WHERE t.Month < 1 Or t.Month > 12

GROUP BY Month

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.03 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, Month, HourID, AverageTemp, AverageRelHumidity 

FROM CountyMonthHour LIMIT 1 
--------------

+--------------+-------------+-------+--------+-------------+--------------------+
| FIPSCountyId | FIPSStateId | Month | HourID | AverageTemp | AverageRelHumidity |
+--------------+-------------+-------+--------+-------------+--------------------+
|            1 |           1 |     1 |      1 |          39 |               75.7 |
+--------------+-------------+-------+--------+-------------+--------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, Month, HourID, AverageTemp, AverageRelHumidity 

FROM CountyMonthHour p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.Month) OR ISNULL(p.HourID) OR ISNULL(p.AverageTemp) OR ISNULL(p.AverageRelHumidity)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|     2896 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, FileTypeID, CountyNRFileName, DataSourceId 

FROM CountyNRFile LIMIT 1 
--------------

+--------------+-------------+------------+------------------+--------------+
| FIPSCountyId | FIPSStateId | FileTypeID | CountyNRFileName | DataSourceId |
+--------------+-------------+------------+------------------+--------------+
|            1 |          53 | wob        | 53000wob         |          201 |
+--------------+-------------+------------+------------------+--------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, FileTypeID, CountyNRFileName, DataSourceId 

FROM CountyNRFile p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.FileTypeID)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|   361728 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, VType, RoadType, Month, AllocFactor 

FROM CountyVMTMonthAllocation LIMIT 1 
--------------

+--------------+-------------+-------+----------+-------+-------------+
| FIPSCountyId | FIPSStateId | VType | RoadType | Month | AllocFactor |
+--------------+-------------+-------+----------+-------+-------------+
|            1 |          53 |     1 |       11 |     1 |     7.31667 |
+--------------+-------------+-------+----------+-------+-------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, VType, RoadType, Month, AllocFactor 

FROM CountyVMTMonthAllocation p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.VType) OR ISNULL(p.RoadType) OR ISNULL(p.Month) OR ISNULL(p.AllocFactor)  
--------------

Query OK, 0 rows affected (0.02 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|   167594 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.02 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. HasNRStateInputs in Countyyear must be either N or Y.' AS ErrorHasNRStateInputs

FROM Countyyear t

WHERE t.HasNRStateInputs NOT IN ('N','Y')

GROUP BY HasNRStateInputs

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.05 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. HasORStateInputs in Countyyear must be either N or Y.' AS ErrorHasORStateInputs

FROM Countyyear t

WHERE t.HasORStateInputs NOT IN ('N','Y')

GROUP BY HasORStateInputs

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.06 sec)

+--------------+-------------+------+--------------+-------------+-----------------+-------------------+-------------------+---------------------+-------------------+------------------+-----------------+---------------------------+--------------------+---------------------+--------------------------+-----------+---------------+--------------+------------------+------------------+-------------------------------+-----------------------+
| FIPSCountyId | FIPSStateId | Year | ATPFileName  | IMFileName  | RegDistFileName | VMTByHourFileName | MileAccumFileName | TripsPerDayFileName | StartDistFileName | SoakDistFileName | HotSoakFileName | DiurnSoakActivityFileName | TripLengthFileName | DieselFractFileName | AvgSpeedDistBaseFileName | Stage2Pct | NRACTFileName | DataSourceId | HasNRStateInputs | HasORStateInputs | CountyYearMonthHourDataSource | BaseYearVMTDataSource |
+--------------+-------------+------+--------------+-------------+-----------------+-------------------+-------------------+---------------------+-------------------+------------------+-----------------+---------------------------+--------------------+---------------------+--------------------------+-----------+---------------+--------------+------------------+------------------+-------------------------------+-----------------------+
|            1 |           9 | 2013 | atp09001.txt | 0900199.imp |                 |                   |                   |                     |                   |                  |                 |                           |                    |                     |                          |         0 |               |          407 | N                | N                |                             0 |                     0 |
+--------------+-------------+------+--------------+-------------+-----------------+-------------------+-------------------+---------------------+-------------------+------------------+-----------------+---------------------------+--------------------+---------------------+--------------------------+-----------+---------------+--------------+------------------+------------------+-------------------------------+-----------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, Year, ATPFileName, IMFileName, RegDistFileName, VMTByHourFileName, MileAccumFileName, TripsPerDayFileName, StartDistFileName, SoakDistFileName, HotSoakFileName, DiurnSoakActivityFileName,  

TripLengthFileName, DieselFractFileName, AvgSpeedDistBaseFileName, Stage2Pct, NRACTFileName, DataSourceId, HasNRStateInputs, HasORStateInputs,  

CountyYearMonthHourDataSource, BaseYearVMTDataSource 

FROM CountyYear p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.Year) OR ISNULL(p.ATPFileName) OR ISNULL(p.IMFileName) OR ISNULL(p.RegDistFileName) OR ISNULL(p.VMTByHourFileName) OR ISNULL(p.MileAccumFileName) 

 OR ISNULL(p.TripsPerDayFileName) OR ISNULL(p.StartDistFileName) OR ISNULL(p.SoakDistFileName) OR ISNULL(p.HotSoakFileName) OR ISNULL(p.DiurnSoakActivityFileName) OR ISNULL(p.TripLengthFileName) OR  

ISNULL(p.DieselFractFileName) OR ISNULL(p.AvgSpeedDistBaseFileName) OR ISNULL(p.NRACTFileName) OR ISNULL(p.HasNRStateInputs) OR ISNULL(p.HasORStateInputs) 
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|  2011128 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.02 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. Month in CountyMonth must be between 1 and 12.' AS ErrorMonth

FROM CountyMonth t

WHERE t.Month < 1 Or t.Month > 12

GROUP BY Month

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.02 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, Year, Month, NGId, HwyDieselId, HwyGasolineId, NRGasolineId, NRDieselId, HwyFuelDataSource, NRFuelDataSource, RMDieselId 

FROM CountyYearMonth LIMIT 1 
--------------

+--------------+-------------+------+-------+------+-------------+---------------+--------------+------------+-------------------+------------------+------------+
| FIPSCountyId | FIPSStateId | Year | Month | NGId | HwyDieselId | HwyGasolineId | NRGasolineId | NRDieselId | HwyFuelDataSource | NRFuelDataSource | RMDieselId |
+--------------+-------------+------+-------+------+-------------+---------------+--------------+------------+-------------------+------------------+------------+
|            1 |           1 | 1999 |     1 |    1 |         336 |          3143 |         3143 |       2457 |               308 |              308 |       2767 |
+--------------+-------------+------+-------+------+-------------+---------------+--------------+------------+-------------------+------------------+------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, Year, Month, NGId, HwyDieselId, HwyGasolineId, NRGasolineId, NRDieselId, HwyFuelDataSource, NRFuelDataSource, RMDieselId 

FROM CountyYearMonth p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.Year) OR ISNULL(p.Month) OR ISNULL(p.HwyDieselId)  
--------------

Query OK, 0 rows affected (0.39 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|  6496704 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. Month in CountyMonth must be between 1 and 12.' AS ErrorMonth

FROM CountyMonth t

WHERE t.Month < 1 Or t.Month > 12

GROUP BY Month

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.01 sec)

--------------
SELECT FIPSCountyId, FIPSStateId, Year, Month, HourID, Temperature, RelativeHumidity 

FROM CountyYearMonthHour LIMIT 1 
--------------

+--------------+-------------+------+-------+--------+-------------+------------------+
| FIPSCountyId | FIPSStateId | Year | Month | HourID | Temperature | RelativeHumidity |
+--------------+-------------+------+-------+--------+-------------+------------------+
|            1 |           1 | 1999 |     1 |      1 |        43.6 |             80.5 |
+--------------+-------------+------+-------+--------+-------------+------------------+
1 row in set (0.03 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSCountyId, FIPSStateId, Year, Month, HourID, Temperature, RelativeHumidity 

FROM CountyYearMonthHour p 

WHERE ISNULL(p.FIPSCountyId) OR ISNULL(p.FIPSStateId) OR ISNULL(p.Year) OR ISNULL(p.Month) OR ISNULL(p.HourID)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|      128 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT DataSourceId, Author, Date, Sponsor, DocumentId, QualityLevel, Comments 

FROM DataSource LIMIT 1 
--------------

+--------------+--------+------------+---------+--------------------------------+--------------+----------+
| DataSourceId | Author | Date       | Sponsor | DocumentId                     | QualityLevel | Comments |
+--------------+--------+------------+---------+--------------------------------+--------------+----------+
|          801 | Pechan | 2002-06-01 | EPA     | 99 NEI; June 02; trvmt99_f_m6_ | NULL         |          |
+--------------+--------+------------+---------+--------------------------------+--------------+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT DataSourceId, Author, Date, Sponsor, DocumentId, QualityLevel, Comments 

FROM DataSource p 

WHERE ISNULL(p.DataSourceId)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|      114 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT DieselId, DieselSulfur 

FROM Diesel LIMIT 1 
--------------

+----------+--------------+
| DieselId | DieselSulfur |
+----------+--------------+
|       11 |           11 |
+----------+--------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT DieselId, DieselSulfur 

FROM Diesel p 

WHERE ISNULL(p.DieselId) OR ISNULL(p.DieselSulfur)  
--------------

Query OK, 0 rows affected (0.02 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|        6 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT EmissionTypeID, EmissionType 

FROM EmissionType LIMIT 1 
--------------

+----------------+--------------+
| EmissionTypeID | EmissionType |
+----------------+--------------+
|              1 | Exh          |
+----------------+--------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT EmissionTypeID, EmissionType 

FROM EmissionType p 

WHERE ISNULL(p.EmissionTypeID) OR ISNULL(p.EmissionType)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       22 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT FileTypeID, FileTypeDescription 

FROM FileType LIMIT 1 
--------------

+------------+---------------------+
| FileTypeID | FileTypeDescription |
+------------+---------------------+
| sea        | Seasonality         |
+------------+---------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FileTypeID, FileTypeDescription 

FROM FileType p 

WHERE ISNULL(p.FileTypeID) OR ISNULL(p.FileTypeDescription)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|     4280 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Min/Max/Data out of range. RVPOxyWaiver in Gasoline, must be either 1 or 2' AS ErrorRVPOxyWaiver

FROM Gasoline t

WHERE t.RVPOxyWaiver NOT IN (1,2)

GROUP BY RVPOxyWaiver

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.01 sec)

--------------
SELECT max(ETOHMktShare) AS maxMarketShare, min(ETOHMktShare) AS minMarketShare,

'Error 9022: Min/Max of ETOHMktShare' AS ErrorMinMax

FROM Gasoline

GROUP BY ETOHMktShare

HAVING maxMarketShare  > 1.00 or minMarketShare  < 0.00 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(MTBEMktShare) AS maxMarketShare, min(MTBEMktShare) AS minMarketShare,

'Error 9022: Min/Max of MTBEMktShare' AS ErrorMinMax

FROM Gasoline

GROUP BY MTBEMktShare

HAVING maxMarketShare  > 1.00 or minMarketShare  < 0.00 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(ETBEMktShare) AS maxMarketShare, min(ETBEMktShare) AS minMarketShare,

'Error 9022: Min/Max of ETBEMktShare' AS ErrorMinMax

FROM Gasoline

GROUP BY ETBEMktShare

HAVING maxMarketShare  > 1.00 or minMarketShare  < 0.00 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(TAMEMktShare) AS maxMarketShare, min(TAMEMktShare) AS minMarketShare,

'Error 9022: Min/Max of TAMEMktShare' AS ErrorMinMax

FROM Gasoline

GROUP BY TAMEMktShare

HAVING maxMarketShare  > 1.00 or minMarketShare  < 0.00 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(AromaticContent) AS maxAromaticContent, min(AromaticContent) AS minAromaticContent,

'Error 9022: Min0/Max55 of AromaticContent' AS ErrorMinMax

FROM Gasoline

GROUP BY AromaticContent

HAVING maxAromaticContent  > 55 or minAromaticContent  < 0 LIMIT 50 
--------------

Empty set (0.02 sec)

--------------
SELECT max(OlefinContent) AS maxOlefinContent, min(OlefinContent) AS minOlefinContent,

'Error 9022: Min0/Max30 of OlefinContent' AS ErrorMinMax

FROM Gasoline

GROUP BY OlefinContent

HAVING maxOlefinContent  > 30 or minOlefinContent  < 0 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(BenzeneContent) AS maxBenzeneContent, min(BenzeneContent) AS minBenzeneContent,

'Error 9022: Min0/Max5 of BenzeneContent' AS ErrorMinMax

FROM Gasoline

GROUP BY BenzeneContent

HAVING maxBenzeneContent  > 5 or minBenzeneContent  < 0 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(E200) AS maxE200, min(E200) AS minE200,

'Error 9022: Min30/Max70 of E200' AS ErrorMinMax

FROM Gasoline

GROUP BY E200

HAVING maxE200  > 70 or minE200  < 30 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(E300) AS maxE300, min(E300) AS minE300,

'Error 9022: Min70/Max100 of E300' AS ErrorMinMax

FROM Gasoline

GROUP BY E300

HAVING maxE300  > 100 or minE300  < 70 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Min/Max/Data out of range. RFG in Gasoline, must be either Y or N' AS ErrorRFG

FROM Gasoline t

WHERE t.RFG NOT IN ('Y', 'N')

GROUP BY RFG

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

+------------+-----+-----------+--------------+--------------+------------+--------------+------------+--------------+------------+--------------+------------+--------------+-----------------+---------------+----------------+------+------+-----+
| GasolineId | RVP | GasSulfur | GasMaxSulfur | RVPOxyWaiver | ETOHVolume | ETOHMktShare | MTBEVolume | MTBEMktShare | ETBEVolume | ETBEMktShare | TAMEVolume | TAMEMktShare | AromaticContent | OlefinContent | BenzeneContent | E200 | E300 | RFG |
+------------+-----+-----------+--------------+--------------+------------+--------------+------------+--------------+------------+--------------+------------+--------------+-----------------+---------------+----------------+------+------+-----+
|          1 | 6.4 |       134 |         1000 |            1 |          0 |            0 |        9.2 |            1 |          0 |            0 |          0 |            0 |            24.9 |          11.1 |            0.7 | 45.5 | 81.6 | Y   |
+------------+-----+-----------+--------------+--------------+------------+--------------+------------+--------------+------------+--------------+------------+--------------+-----------------+---------------+----------------+------+------+-----+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT GasolineId, RVP, GasSulfur, GasMaxSulfur, RVPOxyWaiver, ETOHVolume, ETOHMktShare, MTBEVolume, MTBEMktShare, ETBEVolume, ETBEMktShare, TAMEVolume, TAMEMktShare, AromaticContent, OlefinContent, BenzeneContent,  

E200, E300, RFG 

FROM Gasoline p 

WHERE ISNULL(p.GasolineId) OR ISNULL(p.RVP) OR ISNULL(p.GasSulfur) OR ISNULL(p.GasMaxSulfur) OR ISNULL(p.RVPOxyWaiver) OR ISNULL(p.ETOHVolume) OR ISNULL(p.ETOHMktShare) OR ISNULL(p.MTBEVolume) OR ISNULL(p.MTBEMktShare) 

 OR ISNULL(p.ETBEVolume) OR ISNULL(p.ETBEMktShare) OR ISNULL(p.TAMEVolume) OR ISNULL(p.TAMEMktShare) OR ISNULL(p.AromaticContent) OR ISNULL(p.OlefinContent) OR ISNULL(p.BenzeneContent) OR ISNULL(p.E200)  

OR ISNULL(p.E300) OR ISNULL(p.RFG) 
--------------

Query OK, 0 rows affected (0.02 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       24 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT HourID, HourName 

FROM Hour LIMIT 1 
--------------

+--------+----------------------------------+
| HourID | HourName                         |
+--------+----------------------------------+
|      1 | Hour beginning at 12:00 midnight |
+--------+----------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT HourID, HourName 

FROM Hour p 

WHERE ISNULL(p.HourID) OR ISNULL(p.HourName)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       12 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Min/Max/Data out of range. RoadType in HPMSRoadType is out of range.' AS ErrorRoadType

FROM HPMSRoadType t

WHERE t.RoadType NOT IN (11,13,15,17,19,21,23,25,27,29,31,33)

GROUP BY RoadType

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT RoadType, RoadDesc 

FROM HPMSRoadType LIMIT 1 
--------------

+----------+-------------------+
| RoadType | RoadDesc          |
+----------+-------------------+
|       11 | Interstate: Rural |
+----------+-------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT RoadType, RoadDesc 

FROM HPMSRoadType p 

WHERE ISNULL(p.RoadType) OR ISNULL(p.RoadDesc)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       28 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT max(VClass) AS maxVClass, min(VClass) AS minVClass,

'Error 9022: Min1/Max28 of VClass of M6VClass. Data out of range.' AS ErrorMinMax

FROM M6VClass

GROUP BY VClass

HAVING maxVClass  > 28 or minVClass  < 1 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT max(P5VClass) AS maxP5VClass, min(P5VClass) AS minP5VClass,

'Error: Min1/Max16 of P5VClass of M6VClass' AS ErrorMinMax

FROM M6VClass

GROUP BY P5VClass

HAVING maxP5VClass  > 16 or minP5VClass  < 1 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT VClass, VClassAbbr, VClassDesc, VType, P5VClass 

FROM M6VClass LIMIT 1 
--------------

+--------+------------+-----------------------------------------------+-------+----------+
| VClass | VClassAbbr | VClassDesc                                    | VType | P5VClass |
+--------+------------+-----------------------------------------------+-------+----------+
|      1 | LDGV       | Light-Duty Gasoline Vehicles (Passenger Cars) |     1 |        1 |
+--------+------------+-----------------------------------------------+-------+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT VClass, VClassAbbr, VClassDesc, VType, P5VClass 

FROM M6VClass p 

WHERE ISNULL(p.VClass) OR ISNULL(p.VClassAbbr) OR ISNULL(p.VClassDesc) OR ISNULL(p.VType) OR ISNULL(p.P5VClass)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       16 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT max(VType) AS maxVType, min(VType) AS minVType,

'Error 9022: Min1/Max16 of VType of M6VType. Data out of range.' AS ErrorMinMax

FROM M6VType

GROUP BY VType

HAVING maxVType  > 16 or maxVType  < 1 LIMIT 50 
--------------

Empty set (0.00 sec)

--------------
SELECT VType, VTypeDesc 

FROM M6VType LIMIT 1 
--------------

+-------+--------------------------------------+
| VType | VTypeDesc                            |
+-------+--------------------------------------+
|     1 | Light-Duty Vehicles (Passenger Cars) |
+-------+--------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT VType, VTypeDesc 

FROM M6VType p 

WHERE ISNULL(p.VType) OR ISNULL(p.VTypeDesc)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|        1 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT NGId, NGSulfur 

FROM NaturalGas LIMIT 1 
--------------

+------+----------+
| NGId | NGSulfur |
+------+----------+
|    1 |       30 |
+------+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT NGId, NGSulfur 

FROM NaturalGas p 

WHERE ISNULL(p.NGId) OR ISNULL(p.NGSulfur)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       68 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT PollutantCodeID, PollutantCode, PollutantName, RunSpecPollutantIndex 

FROM PollutantCode LIMIT 1 
--------------

+-----------------+---------------+----------------------------------------------+-----------------------+
| PollutantCodeID | PollutantCode | PollutantName                                | RunSpecPollutantIndex |
+-----------------+---------------+----------------------------------------------+-----------------------+
|              62 | PM25-PRI      | Primary PM2.5 (Filterables and Condensibles) |                   100 |
+-----------------+---------------+----------------------------------------------+-----------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT PollutantCodeID, PollutantCode, PollutantName, RunSpecPollutantIndex 

FROM PollutantCode p 

WHERE ISNULL(p.PollutantCodeID) OR ISNULL(p.PollutantCode) OR ISNULL(p.PollutantName) OR ISNULL(p.RunSpecPollutantIndex)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|      590 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. FuelType in SCC must be one of CNG, Gas, Dies, and LPG.' AS ErrorFuelType

FROM SCC t

WHERE t.FuelType NOT IN ('CNG','Gas','Dies','LPG')

GROUP BY FuelType

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT SCCID, SCC, Part5VClass, HPMSRoadType, Segment, FuelType, Strokes, Part5VClassDesc, RoadwayTypeDesc, SegmentDesc, SCCDesc, mgNH3perGallon, TOGfac, NMOGfac, NMHCfac, VOCfac, PM25fac, SOAfac 

FROM SCC LIMIT 1 
--------------

+-------+------------+-------------+--------------+---------+----------+---------+-----------------+----------------------------------+----------------+-------------------------------------------------------------------------------------------------------------------+----------------+--------+---------+---------+--------+---------+--------+
| SCCID | SCC        | Part5VClass | HPMSRoadType | Segment | FuelType | Strokes | Part5VClassDesc | RoadwayTypeDesc                  | SegmentDesc    | SCCDesc                                                                                                           | mgNH3perGallon | TOGfac | NMOGfac | NMHCfac | VOCfac | PM25fac | SOAfac |
+-------+------------+-------------+--------------+---------+----------+---------+-----------------+----------------------------------+----------------+-------------------------------------------------------------------------------------------------------------------+----------------+--------+---------+---------+--------+---------+--------+
|     1 | 2230001270 |           6 |           27 |       0 | Dies     |    NULL | LDDV            | OthrPrincipalArterial:UrbanTotal | Highway mobile | Mobile Sources  Highway Vehicles - Diesel  Light Duty Diesel Vehicles (LDDV)  Othr Principal Arterial:Urban Total |           NULL |   NULL |    NULL |    NULL |   NULL |    NULL | 0.0237 |
+-------+------------+-------------+--------------+---------+----------+---------+-----------------+----------------------------------+----------------+-------------------------------------------------------------------------------------------------------------------+----------------+--------+---------+---------+--------+---------+--------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT SCCID, SCC, Part5VClass, HPMSRoadType, Segment, FuelType, Strokes, Part5VClassDesc, RoadwayTypeDesc, SegmentDesc, SCCDesc, mgNH3perGallon, TOGfac, NMOGfac, NMHCfac, VOCfac, PM25fac, SOAfac 

FROM SCC p 

WHERE ISNULL(p.SCCID) OR ISNULL(p.SCC) OR ISNULL(p.FuelType) OR ISNULL(p.Part5VClassDesc) OR ISNULL(p.RoadwayTypeDesc) OR ISNULL(p.SegmentDesc) OR ISNULL(p.SCCDesc)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|    23821 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT count(*) as cnt, 'Error 9022: Data error - Min/Max/data out of range. ratioType in scctoxics must be one of VOC, Gal, PM10, Mile, and PMVOC.' AS ErrorratioType

FROM scctoxics t

WHERE t.ratioType NOT IN ('VOC','Gal','PM10','Mile','PMVOC')

GROUP BY ratioType

HAVING count(*) > 0 LIMIT 1 
--------------

Empty set (0.00 sec)

--------------
SELECT SCCID, PollutantCodeID, exhBaseGas, exhEthGas, exhMTBEGas, exhRFGGas, exhDiesel, evapBaseGas, evapEthGas, evapMTBEGas, evapRFGGas, ratioType 

FROM SCCToxics LIMIT 1 
--------------

+-------+-----------------+------------+-----------+------------+-----------+-----------+-------------+------------+-------------+------------+-----------+
| SCCID | PollutantCodeID | exhBaseGas | exhEthGas | exhMTBEGas | exhRFGGas | exhDiesel | evapBaseGas | evapEthGas | evapMTBEGas | evapRFGGas | ratioType |
+-------+-----------------+------------+-----------+------------+-----------+-----------+-------------+------------+-------------+------------+-----------+
|   145 |              41 |      0.015 |     0.015 |      0.015 |     0.015 |      NULL |       0.022 |    0.01254 |     0.01584 |    0.01584 | VOC       |
+-------+-----------------+------------+-----------+------------+-----------+-----------+-------------+------------+-------------+------------+-----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT SCCID, PollutantCodeID, exhBaseGas, exhEthGas, exhMTBEGas, exhRFGGas, exhDiesel, evapBaseGas, evapEthGas, evapMTBEGas, evapRFGGas, ratioType 

FROM SCCToxics p 

WHERE ISNULL(p.SCCID) OR ISNULL(p.PollutantCodeID)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|       53 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT FIPSStateId, StateName, StateAbbr, NLEVFileName, T2ExhPhaseInFileName, T2EvapPhaseInFileName, T2CertFileName, DataSourceId 

FROM State LIMIT 1 
--------------

+-------------+-----------+-----------+--------------+----------------------+-----------------------+----------------+--------------+
| FIPSStateId | StateName | StateAbbr | NLEVFileName | T2ExhPhaseInFileName | T2EvapPhaseInFileName | T2CertFileName | DataSourceId |
+-------------+-----------+-----------+--------------+----------------------+-----------------------+----------------+--------------+
|          56 | WYOMING   | WY        |              |                      |                       |                |          401 |
+-------------+-----------+-----------+--------------+----------------------+-----------------------+----------------+--------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT FIPSStateId, StateName, StateAbbr, NLEVFileName, T2ExhPhaseInFileName, T2EvapPhaseInFileName, T2CertFileName, DataSourceId 

FROM State p 

WHERE ISNULL(p.FIPSStateId) OR ISNULL(p.StateName) OR ISNULL(p.StateAbbr) OR ISNULL(p.NLEVFileName) OR ISNULL(p.T2ExhPhaseInFileName) OR ISNULL(p.T2EvapPhaseInFileName) OR ISNULL(p.T2CertFileName)  
--------------

Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+----------+----------------------+
| COUNT(*) | CheckResult          |
+----------+----------------------+
|     2304 | OK (table not empty) |
+----------+----------------------+
1 row in set (0.00 sec)

--------------
SELECT VType, RoadType, Month, AllocFactor, DataSourceId 

FROM VMTMonthAllocation LIMIT 1 
--------------

+-------+----------+-------+-------------+--------------+
| VType | RoadType | Month | AllocFactor | DataSourceId |
+-------+----------+-------+-------------+--------------+
|     4 |       17 |     1 |        7.44 |          701 |
+-------+----------+-------+-------------+--------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
CREATE TABLE xTEMP1 

SELECT VType, RoadType, Month, AllocFactor, DataSourceId 

FROM VMTMonthAllocation p 

WHERE ISNULL(p.VType) OR ISNULL(p.RoadType) OR ISNULL(p.Month) OR ISNULL(p.AllocFactor)  
--------------

Query OK, 0 rows affected (0.03 sec)
Records: 0  Duplicates: 0  Warnings: 0

+----------+----------------------------+
| COUNT(*) | CheckResult                |
+----------+----------------------------+
|        0 | Required fields checked OK |
+----------+----------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+----------------------------------------------------------+
| Check data structure/definition of table BaseYearVMT ... |
+----------------------------------------------------------+
| Check data structure/definition of table BaseYearVMT ... |
+----------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 15 rows affected (0.00 sec)
Records: 15  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------------------------+
| @TestLine := aline                                                           |
+------------------------------------------------------------------------------+
|   PRIMARY KEY  (`BaseYear`,`VClass`,`RoadType`,`FIPSCountyId`,`FIPSStateId`) |
+------------------------------------------------------------------------------+
1 row in set (0.02 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. BaseYearVMT.BaseYear should be part of primary key.', 'BaseYearVMT.BaseYear type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.BaseYear type: checked OK.                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `BaseYear` smallint(6) NOT NULL default '0', |
+------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. BaseYearVMT.BaseYear should be = SMALLINT.', 'BaseYearVMT.BaseYear type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.BaseYear type: checked OK.                                                                                                                 |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `BaseYear` smallint(6) NOT NULL default '0', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. BaseYearVMT.BaseYear should be NOT NULL.', 'BaseYearVMT.BaseYear required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.BaseYear required type definition: checked OK.                                                                                                                        |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------------------------+
| @TestLine := aline                                                           |
+------------------------------------------------------------------------------+
|   PRIMARY KEY  (`BaseYear`,`VClass`,`RoadType`,`FIPSCountyId`,`FIPSStateId`) |
+------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. BaseYearVMT.VClass should be part of primary key.', 'BaseYearVMT.VClass type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VClass type: checked OK.                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VClass` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. BaseYearVMT.VClass should be = TINYINT.', 'BaseYearVMT.VClass type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VClass type: checked OK.                                                                                                              |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VClass` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. BaseYearVMT.VClass size should be 2.', 'BaseYearVMT.VClass data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VClass data size type: checked OK.                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VClass` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. BaseYearVMT.VClass should be NOT NULL.', 'BaseYearVMT.VClass required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VClass required type definition: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------------------------+
| @TestLine := aline                                                           |
+------------------------------------------------------------------------------+
|   PRIMARY KEY  (`BaseYear`,`VClass`,`RoadType`,`FIPSCountyId`,`FIPSStateId`) |
+------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. BaseYearVMT.RoadType should be part of primary key.', 'BaseYearVMT.RoadType type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.RoadType type: checked OK.                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. BaseYearVMT.RoadType should be = TINYINT.', 'BaseYearVMT.RoadType type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.RoadType type: checked OK.                                                                                                                |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. BaseYearVMT.RoadType size should be 2.', 'BaseYearVMT.RoadType data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.RoadType data size type: checked OK.                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. BaseYearVMT.RoadType should be NOT NULL.', 'BaseYearVMT.RoadType required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.RoadType required type definition: checked OK.                                                                                                                        |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------------------------+
| @TestLine := aline                                                           |
+------------------------------------------------------------------------------+
|   PRIMARY KEY  (`BaseYear`,`VClass`,`RoadType`,`FIPSCountyId`,`FIPSStateId`) |
+------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. BaseYearVMT.FIPSCountyId should be part of primary key.', 'BaseYearVMT.FIPSCountyId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSCountyId type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. BaseYearVMT.FIPSCountyId should be = SMALLINT.', 'BaseYearVMT.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSCountyId type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. BaseYearVMT.FIPSCountyId should be NOT NULL.', 'BaseYearVMT.FIPSCountyId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSCountyId required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------------------------+
| @TestLine := aline                                                           |
+------------------------------------------------------------------------------+
|   PRIMARY KEY  (`BaseYear`,`VClass`,`RoadType`,`FIPSCountyId`,`FIPSStateId`) |
+------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. BaseYearVMT.FIPSStateId should be part of primary key.', 'BaseYearVMT.FIPSStateId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSStateId type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. BaseYearVMT.FIPSStateId should be = TINYINT.', 'BaseYearVMT.FIPSStateId type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSStateId type: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. BaseYearVMT.FIPSStateId size should be 2.', 'BaseYearVMT.FIPSStateId data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSStateId data size type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. BaseYearVMT.FIPSStateId should be NOT NULL.', 'BaseYearVMT.FIPSStateId required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.FIPSStateId required type definition: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. BaseYearVMT.VMT should not be part of primary key.', 'BaseYearVMT.VMT type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VMT type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------+
| @TestLine := aline          |
+-----------------------------+
|   `VMT` float default NULL, |
+-----------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. BaseYearVMT.VMT should be = FLOAT.', 'BaseYearVMT.VMT type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VMT type: checked OK.                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------+
| @TestLine := aline          |
+-----------------------------+
|   `VMT` float default NULL, |
+-----------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. BaseYearVMT.VMT should be NULL.', 'BaseYearVMT.VMT required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| BaseYearVMT.VMT required type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------+
| Check data structure/definition of table County ... |
+-----------------------------------------------------+
| Check data structure/definition of table County ... |
+-----------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 26 rows affected (0.00 sec)
Records: 26  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`) |
+-----------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. County.FIPSCountyId should be part of primary key.', 'County.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSCountyId type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.FIPSCountyId should be = SMALLINT.', 'County.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSCountyId type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.FIPSCountyId should be NOT NULL.', 'County.FIPSCountyId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSCountyId required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`) |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. County.FIPSStateId should be part of primary key.', 'County.FIPSStateId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSStateId type: checked OK.                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.FIPSStateId should be = TINYINT.', 'County.FIPSStateId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSStateId type: checked OK.                                                                                                              |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.FIPSStateId size should be 2.', 'County.FIPSStateId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSStateId data size type: checked OK.                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.FIPSStateId should be NOT NULL.', 'County.FIPSStateId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.FIPSStateId required type definition: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.CountyName should not be part of primary key.', 'County.CountyName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyName type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `CountyName` char(50) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.CountyName should be = CHAR.', 'County.CountyName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyName type: checked OK.                                                                                                          |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `CountyName` char(50) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.CountyName size should be 50.', 'County.CountyName data size type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyName data size type: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `CountyName` char(50) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.CountyName should be NOT NULL.', 'County.CountyName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyName required type definition: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.Altitude should not be part of primary key.', 'County.Altitude type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| County.Altitude type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `Altitude` char(1) NOT NULL default '', |
+-------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.Altitude should be = CHAR.', 'County.Altitude type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| County.Altitude type: checked OK.                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `Altitude` char(1) NOT NULL default '', |
+-------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.Altitude size should be 1.', 'County.Altitude data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| County.Altitude data size type: checked OK.                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `Altitude` char(1) NOT NULL default '', |
+-------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.Altitude should be NOT NULL.', 'County.Altitude required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.Altitude required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.BarometricPressure should not be part of primary key.', 'County.BarometricPressure type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.BarometricPressure type: checked OK.                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `BarometricPressure` float NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.BarometricPressure should be = FLOAT.', 'County.BarometricPressure type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.BarometricPressure type: checked OK.                                                                                                                   |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `BarometricPressure` float NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.BarometricPressure should be NOT NULL.', 'County.BarometricPressure required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.BarometricPressure required type definition: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.OzoneSeasonStartMonth should not be part of primary key.', 'County.OzoneSeasonStartMonth type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartMonth type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `OzoneSeasonStartMonth` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.OzoneSeasonStartMonth should be = TINYINT.', 'County.OzoneSeasonStartMonth type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartMonth type: checked OK.                                                                                                                        |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `OzoneSeasonStartMonth` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.OzoneSeasonStartMonth size should be 2.', 'County.OzoneSeasonStartMonth data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartMonth data size type: checked OK.                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `OzoneSeasonStartMonth` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.OzoneSeasonStartMonth should be NOT NULL.', 'County.OzoneSeasonStartMonth required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartMonth required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.OzoneSeasonStartDay should not be part of primary key.', 'County.OzoneSeasonStartDay type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartDay type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------+
| @TestLine := aline                                       |
+----------------------------------------------------------+
|   `OzoneSeasonStartDay` tinyint(2) NOT NULL default '0', |
+----------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.OzoneSeasonStartDay should be = TINYINT.', 'County.OzoneSeasonStartDay type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartDay type: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------+
| @TestLine := aline                                       |
+----------------------------------------------------------+
|   `OzoneSeasonStartDay` tinyint(2) NOT NULL default '0', |
+----------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.OzoneSeasonStartDay size should be 2.', 'County.OzoneSeasonStartDay data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartDay data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------+
| @TestLine := aline                                       |
+----------------------------------------------------------+
|   `OzoneSeasonStartDay` tinyint(2) NOT NULL default '0', |
+----------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.OzoneSeasonStartDay should be NOT NULL.', 'County.OzoneSeasonStartDay required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonStartDay required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.OzoneSeasonEndMonth should not be part of primary key.', 'County.OzoneSeasonEndMonth type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndMonth type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------+
| @TestLine := aline                                       |
+----------------------------------------------------------+
|   `OzoneSeasonEndMonth` tinyint(2) NOT NULL default '0', |
+----------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.OzoneSeasonEndMonth should be = TINYINT.', 'County.OzoneSeasonEndMonth type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndMonth type: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------+
| @TestLine := aline                                       |
+----------------------------------------------------------+
|   `OzoneSeasonEndMonth` tinyint(2) NOT NULL default '0', |
+----------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.OzoneSeasonEndMonth size should be 2.', 'County.OzoneSeasonEndMonth data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndMonth data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------+
| @TestLine := aline                                       |
+----------------------------------------------------------+
|   `OzoneSeasonEndMonth` tinyint(2) NOT NULL default '0', |
+----------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.OzoneSeasonEndMonth should be NOT NULL.', 'County.OzoneSeasonEndMonth required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndMonth required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.OzoneSeasonEndDay should not be part of primary key.', 'County.OzoneSeasonEndDay type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndDay type: checked OK.                                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `OzoneSeasonEndDay` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.OzoneSeasonEndDay should be = TINYINT.', 'County.OzoneSeasonEndDay type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndDay type: checked OK.                                                                                                                    |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `OzoneSeasonEndDay` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.OzoneSeasonEndDay size should be 2.', 'County.OzoneSeasonEndDay data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndDay data size type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `OzoneSeasonEndDay` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.OzoneSeasonEndDay should be NOT NULL.', 'County.OzoneSeasonEndDay required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.OzoneSeasonEndDay required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.Stage2StartYear should not be part of primary key.', 'County.Stage2StartYear type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.Stage2StartYear type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Stage2StartYear` smallint(6) default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.Stage2StartYear should be = SMALLINT.', 'County.Stage2StartYear type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.Stage2StartYear type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Stage2StartYear` smallint(6) default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.Stage2StartYear should be NULL.', 'County.Stage2StartYear required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.Stage2StartYear required type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.PhaseInYears should not be part of primary key.', 'County.PhaseInYears type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.PhaseInYears type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `PhaseInYears` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.PhaseInYears should be = SMALLINT.', 'County.PhaseInYears type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.PhaseInYears type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `PhaseInYears` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.PhaseInYears should be NULL.', 'County.PhaseInYears required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.PhaseInYears required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.LDVStage2Percent should not be part of primary key.', 'County.LDVStage2Percent type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.LDVStage2Percent type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `LDVStage2Percent` float default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.LDVStage2Percent should be = FLOAT.', 'County.LDVStage2Percent type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.LDVStage2Percent type: checked OK.                                                                                                                 |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `LDVStage2Percent` float default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.LDVStage2Percent should be NULL.', 'County.LDVStage2Percent required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.LDVStage2Percent required type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.HDVStage2Percent should not be part of primary key.', 'County.HDVStage2Percent type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.HDVStage2Percent type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `HDVStage2Percent` float default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.HDVStage2Percent should be = FLOAT.', 'County.HDVStage2Percent type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.HDVStage2Percent type: checked OK.                                                                                                                 |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `HDVStage2Percent` float default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.HDVStage2Percent should be NULL.', 'County.HDVStage2Percent required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.HDVStage2Percent required type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.NGVFractionFileName should not be part of primary key.', 'County.NGVFractionFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.NGVFractionFileName type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `NGVFractionFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.NGVFractionFileName should be = CHAR.', 'County.NGVFractionFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.NGVFractionFileName type: checked OK.                                                                                                                   |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `NGVFractionFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. County.NGVFractionFileName size should be 8.', 'County.NGVFractionFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.NGVFractionFileName data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `NGVFractionFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.NGVFractionFileName should be NOT NULL.', 'County.NGVFractionFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.NGVFractionFileName required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.CountyMonthHourDataSource should not be part of primary key.', 'County.CountyMonthHourDataSource type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyMonthHourDataSource type: checked OK.                                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------+
| @TestLine := aline                                              |
+-----------------------------------------------------------------+
|   `CountyMonthHourDataSource` smallint(6) NOT NULL default '0', |
+-----------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.CountyMonthHourDataSource should be = SMALLINT.', 'County.CountyMonthHourDataSource type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyMonthHourDataSource type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------+
| @TestLine := aline                                              |
+-----------------------------------------------------------------+
|   `CountyMonthHourDataSource` smallint(6) NOT NULL default '0', |
+-----------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.CountyMonthHourDataSource should be NULL.', 'County.CountyMonthHourDataSource required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyMonthHourDataSource required type: checked OK.                                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.DataSourceId should not be part of primary key.', 'County.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.DataSourceId type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `DataSourceId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.DataSourceId should be = SMALLINT.', 'County.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.DataSourceId type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `DataSourceId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.DataSourceId should be NULL.', 'County.DataSourceId required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.DataSourceId required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.02 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. County.CountyVMTMonthAllocDataSource should not be part of primary key.', 'County.CountyVMTMonthAllocDataSource type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyVMTMonthAllocDataSource type: checked OK.                                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------------+
| @TestLine := aline                                                  |
+---------------------------------------------------------------------+
|   `CountyVMTMonthAllocDataSource` smallint(6) NOT NULL default '0', |
+---------------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. County.CountyVMTMonthAllocDataSource should be = SMALLINT.', 'County.CountyVMTMonthAllocDataSource type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyVMTMonthAllocDataSource type: checked OK.                                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------------+
| @TestLine := aline                                                  |
+---------------------------------------------------------------------+
|   `CountyVMTMonthAllocDataSource` smallint(6) NOT NULL default '0', |
+---------------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. County.CountyVMTMonthAllocDataSource should be NOT NULL.', 'County.CountyVMTMonthAllocDataSource required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| County.CountyVMTMonthAllocDataSource required type definition: checked OK.                                                                                                                                        |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------+
| Check data structure/definition of table CountyMap ... |
+--------------------------------------------------------+
| Check data structure/definition of table CountyMap ... |
+--------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 13 rows affected (0.00 sec)
Records: 13  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`) |
+-----------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMap.FIPSCountyId should be part of primary key.', 'CountyMap.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSCountyId type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMap.FIPSCountyId should be = SMALLINT.', 'CountyMap.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSCountyId type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.02 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMap.FIPSCountyId should be NOT NULL.', 'CountyMap.FIPSCountyId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSCountyId required type definition: checked OK.                                                                                                                          |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`) |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMap.FIPSStateId should be part of primary key.', 'CountyMap.FIPSStateId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSStateId type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMap.FIPSStateId should be = TINYINT.', 'CountyMap.FIPSStateId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSStateId type: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyMap.FIPSStateId size should be 2.', 'CountyMap.FIPSStateId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSStateId data size type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMap.FIPSStateId should be NOT NULL.', 'CountyMap.FIPSStateId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.FIPSStateId required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyMap.HwyRepFIPSCntyID should not be part of primary key.', 'CountyMap.HwyRepFIPSCntyID type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.HwyRepFIPSCntyID type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `HwyRepFIPSCntyID` smallint(6) NOT NULL default '0', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMap.HwyRepFIPSCntyID should be = SMALLINT.', 'CountyMap.HwyRepFIPSCntyID type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.HwyRepFIPSCntyID type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `HwyRepFIPSCntyID` smallint(6) NOT NULL default '0', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMap.HwyRepFIPSCntyID should be NOT NULL.', 'CountyMap.HwyRepFIPSCntyID required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.HwyRepFIPSCntyID required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyMap.NRRepFIPSCntyID should not be part of primary key.', 'CountyMap.NRRepFIPSCntyID type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.NRRepFIPSCntyID type: checked OK.                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   `NRRepFIPSCntyID` smallint(6) NOT NULL default '0', |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMap.NRRepFIPSCntyID should be = SMALLINT.', 'CountyMap.NRRepFIPSCntyID type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.NRRepFIPSCntyID type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   `NRRepFIPSCntyID` smallint(6) NOT NULL default '0', |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMap.NRRepFIPSCntyID should be NOT NULL.', 'CountyMap.NRRepFIPSCntyID required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMap.NRRepFIPSCntyID required type definition: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------+
| Check data structure/definition of table CountyMonth ... |
+----------------------------------------------------------+
| Check data structure/definition of table CountyMonth ... |
+----------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 12 rows affected (0.00 sec)
Records: 12  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`) |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonth.FIPSCountyId should be part of primary key.', 'CountyMonth.FIPSCountyId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSCountyId type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonth.FIPSCountyId should be = SMALLINT.', 'CountyMonth.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSCountyId type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonth.FIPSCountyId should be NOT NULL.', 'CountyMonth.FIPSCountyId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSCountyId required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`) |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonth.FIPSStateId should be part of primary key.', 'CountyMonth.FIPSStateId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSStateId type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonth.FIPSStateId should be = TINYINT.', 'CountyMonth.FIPSStateId type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSStateId type: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyMonth.FIPSStateId size should be 2.', 'CountyMonth.FIPSStateId data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSStateId data size type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonth.FIPSStateId should be NOT NULL.', 'CountyMonth.FIPSStateId required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.FIPSStateId required type definition: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`) |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonth.Month should be part of primary key.', 'CountyMonth.Month type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.Month type: checked OK.                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonth.Month should be = TINYINT.', 'CountyMonth.Month type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.Month type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyMonth.Month size should be 2.', 'CountyMonth.Month data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.Month data size type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonth.Month should be NOT NULL.', 'CountyMonth.Month required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonth.Month required type definition: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------+
| Check data structure/definition of table CountyMonthHour ... |
+--------------------------------------------------------------+
| Check data structure/definition of table CountyMonthHour ... |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 15 rows affected (0.02 sec)
Records: 15  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------------+
| @TestLine := aline                                             |
+----------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`,`HourID`) |
+----------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonthHour.FIPSCountyId should be part of primary key.', 'CountyMonthHour.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSCountyId type: checked OK.                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonthHour.FIPSCountyId should be = SMALLINT.', 'CountyMonthHour.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSCountyId type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonthHour.FIPSCountyId should be NOT NULL.', 'CountyMonthHour.FIPSCountyId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSCountyId required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------------+
| @TestLine := aline                                             |
+----------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`,`HourID`) |
+----------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonthHour.FIPSStateId should be part of primary key.', 'CountyMonthHour.FIPSStateId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSStateId type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonthHour.FIPSStateId should be = TINYINT.', 'CountyMonthHour.FIPSStateId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSStateId type: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyMonthHour.FIPSStateId size should be 2.', 'CountyMonthHour.FIPSStateId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSStateId data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonthHour.FIPSStateId should be NOT NULL.', 'CountyMonthHour.FIPSStateId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.FIPSStateId required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------------+
| @TestLine := aline                                             |
+----------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`,`HourID`) |
+----------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonthHour.Month should be part of primary key.', 'CountyMonthHour.Month type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.Month type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonthHour.Month should be = TINYINT.', 'CountyMonthHour.Month type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.Month type: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyMonthHour.Month size should be 2.', 'CountyMonthHour.Month data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.Month data size type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonthHour.Month should be NOT NULL.', 'CountyMonthHour.Month required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.Month required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------------------+
| @TestLine := aline                                             |
+----------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Month`,`HourID`) |
+----------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonthHour.HourID should be part of primary key.', 'CountyMonthHour.HourID type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.HourID type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonthHour.HourID should be = TINYINT.', 'CountyMonthHour.HourID type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.HourID type: checked OK.                                                                                                                  |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyMonthHour.HourID size should be 2.', 'CountyMonthHour.HourID data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.HourID data size type: checked OK.                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonthHour.HourID should be NOT NULL.', 'CountyMonthHour.HourID required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.HourID required type definition: checked OK.                                                                                                                          |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonthHour.AverageTemp should not be part of primary key.', 'CountyMonthHour.AverageTemp type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.AverageTemp type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `AverageTemp` float NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonthHour.AverageTemp should be = FLOAT.', 'CountyMonthHour.AverageTemp type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.AverageTemp type: checked OK.                                                                                                                     |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `AverageTemp` float NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonthHour.AverageTemp should be NOT NULL.', 'CountyMonthHour.AverageTemp required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.AverageTemp required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyMonthHour.AverageRelHumidity should not be part of primary key.', 'CountyMonthHour.AverageRelHumidity type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.AverageRelHumidity type: checked OK.                                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `AverageRelHumidity` float NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyMonthHour.AverageRelHumidity should be = FLOAT.', 'CountyMonthHour.AverageRelHumidity type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.AverageRelHumidity type: checked OK.                                                                                                                            |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `AverageRelHumidity` float NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyMonthHour.AverageRelHumidity should be NOT NULL.', 'CountyMonthHour.AverageRelHumidity required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyMonthHour.AverageRelHumidity required type definition: checked OK.                                                                                                                                      |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------+
| Check data structure/definition of table CountyNRFile ... |
+-----------------------------------------------------------+
| Check data structure/definition of table CountyNRFile ... |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 14 rows affected (0.00 sec)
Records: 14  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`FileTypeID`) |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyNRFile.FIPSCountyId should be part of primary key.', 'CountyNRFile.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSCountyId type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyNRFile.FIPSCountyId should be = SMALLINT.', 'CountyNRFile.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSCountyId type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyNRFile.FIPSCountyId should be NOT NULL.', 'CountyNRFile.FIPSCountyId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSCountyId required type definition: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`FileTypeID`) |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyNRFile.FIPSStateId should be part of primary key.', 'CountyNRFile.FIPSStateId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSStateId type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyNRFile.FIPSStateId should be = TINYINT.', 'CountyNRFile.FIPSStateId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSStateId type: checked OK.                                                                                                                    |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyNRFile.FIPSStateId size should be 2.', 'CountyNRFile.FIPSStateId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSStateId data size type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyNRFile.FIPSStateId should be NOT NULL.', 'CountyNRFile.FIPSStateId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FIPSStateId required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`FileTypeID`) |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyNRFile.FileTypeID should be part of primary key.', 'CountyNRFile.FileTypeID type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FileTypeID type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `FileTypeID` char(3) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyNRFile.FileTypeID should be = CHAR.', 'CountyNRFile.FileTypeID type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FileTypeID type: checked OK.                                                                                                                |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `FileTypeID` char(3) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyNRFile.FileTypeID size should be 3.', 'CountyNRFile.FileTypeID data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FileTypeID data size type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `FileTypeID` char(3) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyNRFile.FileTypeID should be NOT NULL.', 'CountyNRFile.FileTypeID required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.FileTypeID required type definition: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyNRFile.CountyNRFileName should not be part of primary key.', 'CountyNRFile.CountyNRFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.CountyNRFileName type: checked OK.                                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `CountyNRFileName` char(8) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyNRFile.CountyNRFileName should be = CHAR.', 'CountyNRFile.CountyNRFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.CountyNRFileName type: checked OK.                                                                                                                      |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `CountyNRFileName` char(8) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyNRFile.CountyNRFileName size should be 8.', 'CountyNRFile.CountyNRFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.CountyNRFileName data size type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `CountyNRFileName` char(8) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyNRFile.CountyNRFileName should be NULL.', 'CountyNRFile.CountyNRFileName required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.CountyNRFileName required type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyNRFile.DataSourceId should not be part of primary key.', 'CountyNRFile.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.DataSourceId type: checked OK.                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyNRFile.DataSourceId should be = SMALLINT.', 'CountyNRFile.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.DataSourceId type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyNRFile.DataSourceId should be NULL.', 'CountyNRFile.DataSourceId required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyNRFile.DataSourceId required type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------+
| Check data structure/definition of table CountyVMTMonthAllocation ... |
+-----------------------------------------------------------------------+
| Check data structure/definition of table CountyVMTMonthAllocation ... |
+-----------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 15 rows affected (0.02 sec)
Records: 15  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------------------+
| @TestLine := aline                                                       |
+--------------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`VType`,`RoadType`,`Month`) |
+--------------------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyVMTMonthAllocation.FIPSCountyId should be part of primary key.', 'CountyVMTMonthAllocation.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSCountyId type: checked OK.                                                                                                                                |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyVMTMonthAllocation.FIPSCountyId should be = SMALLINT.', 'CountyVMTMonthAllocation.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSCountyId type: checked OK.                                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyVMTMonthAllocation.FIPSCountyId should be NOT NULL.', 'CountyVMTMonthAllocation.FIPSCountyId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSCountyId required type definition: checked OK.                                                                                                                                         |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------------------+
| @TestLine := aline                                                       |
+--------------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`VType`,`RoadType`,`Month`) |
+--------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyVMTMonthAllocation.FIPSStateId should be part of primary key.', 'CountyVMTMonthAllocation.FIPSStateId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSStateId type: checked OK.                                                                                                                               |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyVMTMonthAllocation.FIPSStateId should be = TINYINT.', 'CountyVMTMonthAllocation.FIPSStateId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSStateId type: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyVMTMonthAllocation.FIPSStateId size should be 2.', 'CountyVMTMonthAllocation.FIPSStateId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSStateId data size type: checked OK.                                                                                                                             |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyVMTMonthAllocation.FIPSStateId should be NOT NULL.', 'CountyVMTMonthAllocation.FIPSStateId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.FIPSStateId required type definition: checked OK.                                                                                                                                        |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------------------+
| @TestLine := aline                                                       |
+--------------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`VType`,`RoadType`,`Month`) |
+--------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyVMTMonthAllocation.VType should be part of primary key.', 'CountyVMTMonthAllocation.VType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.VType type: checked OK.                                                                                                                         |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyVMTMonthAllocation.VType should be = TINYINT.', 'CountyVMTMonthAllocation.VType type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.VType type: checked OK.                                                                                                                          |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyVMTMonthAllocation.VType size should be 2.', 'CountyVMTMonthAllocation.VType data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.VType data size type: checked OK.                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyVMTMonthAllocation.VType should be NOT NULL.', 'CountyVMTMonthAllocation.VType required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.VType required type definition: checked OK.                                                                                                                                  |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------------------+
| @TestLine := aline                                                       |
+--------------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`VType`,`RoadType`,`Month`) |
+--------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyVMTMonthAllocation.RoadType should be part of primary key.', 'CountyVMTMonthAllocation.RoadType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.RoadType type: checked OK.                                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyVMTMonthAllocation.RoadType should be = TINYINT.', 'CountyVMTMonthAllocation.RoadType type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.RoadType type: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyVMTMonthAllocation.RoadType size should be 2.', 'CountyVMTMonthAllocation.RoadType data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.RoadType data size type: checked OK.                                                                                                                          |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyVMTMonthAllocation.RoadType should be NOT NULL.', 'CountyVMTMonthAllocation.RoadType required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.RoadType required type definition: checked OK.                                                                                                                                     |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------------------+
| @TestLine := aline                                                       |
+--------------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`VType`,`RoadType`,`Month`) |
+--------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyVMTMonthAllocation.Month should be part of primary key.', 'CountyVMTMonthAllocation.Month type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.Month type: checked OK.                                                                                                                         |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `Month` smallint(6) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyVMTMonthAllocation.Month should be = SMALLINT.', 'CountyVMTMonthAllocation.Month type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.Month type: checked OK.                                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `Month` smallint(6) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyVMTMonthAllocation.Month should be NOT NULL.', 'CountyVMTMonthAllocation.Month required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.Month required type definition: checked OK.                                                                                                                                  |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyVMTMonthAllocation.AllocFactor should not be part of primary key.', 'CountyVMTMonthAllocation.AllocFactor type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.AllocFactor type: checked OK.                                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `AllocFactor` float NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyVMTMonthAllocation.AllocFactor should be = FLOAT.', 'CountyVMTMonthAllocation.AllocFactor type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.AllocFactor type: checked OK.                                                                                                                              |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `AllocFactor` float NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyVMTMonthAllocation.AllocFactor should be NOT NULL.', 'CountyVMTMonthAllocation.AllocFactor required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyVMTMonthAllocation.AllocFactor required type definition: checked OK.                                                                                                                                        |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------+
| Check data structure/definition of table CountyYear ... |
+---------------------------------------------------------+
| Check data structure/definition of table CountyYear ... |
+---------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 32 rows affected (0.00 sec)
Records: 32  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`) |
+------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.FIPSCountyId should be part of primary key.', 'CountyYear.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSCountyId type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.FIPSCountyId should be = SMALLINT.', 'CountyYear.FIPSCountyId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSCountyId type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.FIPSCountyId should be NOT NULL.', 'CountyYear.FIPSCountyId required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSCountyId required type definition: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`) |
+------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.FIPSStateId should be part of primary key.', 'CountyYear.FIPSStateId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSStateId type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.FIPSStateId should be = TINYINT.', 'CountyYear.FIPSStateId type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSStateId type: checked OK.                                                                                                                  |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.FIPSStateId size should be 2.', 'CountyYear.FIPSStateId data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSStateId data size type: checked OK.                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.FIPSStateId should be NOT NULL.', 'CountyYear.FIPSStateId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.FIPSStateId required type definition: checked OK.                                                                                                                          |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`) |
+------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.Year should be part of primary key.', 'CountyYear.Year type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.Year type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------------+
| @TestLine := aline                                                  |
+---------------------------------------------------------------------+
|   `Year` smallint(6) NOT NULL default '0',                          |
|   `BaseYearVMTDataSource` smallint(6) NOT NULL default '0',         |
|   `CountyYearMonthHourDataSource` smallint(6) NOT NULL default '0', |
+---------------------------------------------------------------------+
3 rows in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.Year should be = SMALLINT.', 'CountyYear.Year type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.Year type: checked OK.                                                                                                            |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------------+
| @TestLine := aline                                                  |
+---------------------------------------------------------------------+
|   `Year` smallint(6) NOT NULL default '0',                          |
|   `BaseYearVMTDataSource` smallint(6) NOT NULL default '0',         |
|   `CountyYearMonthHourDataSource` smallint(6) NOT NULL default '0', |
+---------------------------------------------------------------------+
3 rows in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.Year should be NOT NULL.', 'CountyYear.Year required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.Year required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.ATPFileName should not be part of primary key.', 'CountyYear.ATPFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.ATPFileName type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `ATPFileName` char(12) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.ATPFileName should be = CHAR.', 'CountyYear.ATPFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.ATPFileName type: checked OK.                                                                                                               |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `ATPFileName` char(12) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.ATPFileName size should be 12.', 'CountyYear.ATPFileName data size type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.ATPFileName data size type: checked OK.                                                                                                                |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `ATPFileName` char(12) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.ATPFileName should be NOT NULL.', 'CountyYear.ATPFileName required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.ATPFileName required type definition: checked OK.                                                                                                                          |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.IMFileName should not be part of primary key.', 'CountyYear.IMFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.IMFileName type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `IMFileName` char(12) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.IMFileName should be = CHAR.', 'CountyYear.IMFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.IMFileName type: checked OK.                                                                                                              |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `IMFileName` char(12) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.IMFileName size should be 12.', 'CountyYear.IMFileName data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.IMFileName data size type: checked OK.                                                                                                               |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `IMFileName` char(12) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.IMFileName should be NOT NULL.', 'CountyYear.IMFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.IMFileName required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.RegDistFileName should not be part of primary key.', 'CountyYear.RegDistFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.RegDistFileName type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `RegDistFileName` char(8) NOT NULL default '', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.RegDistFileName should be = CHAR.', 'CountyYear.RegDistFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.RegDistFileName type: checked OK.                                                                                                                   |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `RegDistFileName` char(8) NOT NULL default '', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.RegDistFileName size should be 8.', 'CountyYear.RegDistFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.RegDistFileName data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `RegDistFileName` char(8) NOT NULL default '', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.RegDistFileName should be NOT NULL.', 'CountyYear.RegDistFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.RegDistFileName required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.VMTByHourFileName should not be part of primary key.', 'CountyYear.VMTByHourFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.VMTByHourFileName type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `VMTByHourFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.VMTByHourFileName should be = CHAR.', 'CountyYear.VMTByHourFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.VMTByHourFileName type: checked OK.                                                                                                                     |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `VMTByHourFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.VMTByHourFileName size should be 8.', 'CountyYear.VMTByHourFileName data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.VMTByHourFileName data size type: checked OK.                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `VMTByHourFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.VMTByHourFileName should be NOT NULL.', 'CountyYear.VMTByHourFileName required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.VMTByHourFileName required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.MileAccumFileName should not be part of primary key.', 'CountyYear.MileAccumFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.MileAccumFileName type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `MileAccumFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.MileAccumFileName should be = CHAR.', 'CountyYear.MileAccumFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.MileAccumFileName type: checked OK.                                                                                                                     |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `MileAccumFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.MileAccumFileName size should be 8.', 'CountyYear.MileAccumFileName data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.MileAccumFileName data size type: checked OK.                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `MileAccumFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.MileAccumFileName should be NOT NULL.', 'CountyYear.MileAccumFileName required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.MileAccumFileName required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.TripsPerDayFileName should not be part of primary key.', 'CountyYear.TripsPerDayFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripsPerDayFileName type: checked OK.                                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `TripsPerDayFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.TripsPerDayFileName should be = CHAR.', 'CountyYear.TripsPerDayFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripsPerDayFileName type: checked OK.                                                                                                                       |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `TripsPerDayFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.TripsPerDayFileName size should be 8.', 'CountyYear.TripsPerDayFileName data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripsPerDayFileName data size type: checked OK.                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `TripsPerDayFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.TripsPerDayFileName should be NOT NULL.', 'CountyYear.TripsPerDayFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripsPerDayFileName required type definition: checked OK.                                                                                                                                  |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.StartDistFileName should not be part of primary key.', 'CountyYear.StartDistFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.StartDistFileName type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `StartDistFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.StartDistFileName should be = CHAR.', 'CountyYear.StartDistFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.StartDistFileName type: checked OK.                                                                                                                     |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `StartDistFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.StartDistFileName size should be 8.', 'CountyYear.StartDistFileName data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.StartDistFileName data size type: checked OK.                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `StartDistFileName` char(8) NOT NULL default '', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.StartDistFileName should be NOT NULL.', 'CountyYear.StartDistFileName required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.StartDistFileName required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.SoakDistFileName should not be part of primary key.', 'CountyYear.SoakDistFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.SoakDistFileName type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `SoakDistFileName` char(8) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.SoakDistFileName should be = CHAR.', 'CountyYear.SoakDistFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.SoakDistFileName type: checked OK.                                                                                                                    |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `SoakDistFileName` char(8) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.SoakDistFileName size should be 8.', 'CountyYear.SoakDistFileName data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.SoakDistFileName data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `SoakDistFileName` char(8) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.SoakDistFileName should be NOT NULL.', 'CountyYear.SoakDistFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.SoakDistFileName required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.HotSoakFileName should not be part of primary key.', 'CountyYear.HotSoakFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HotSoakFileName type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `HotSoakFileName` char(8) NOT NULL default '', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.HotSoakFileName should be = CHAR.', 'CountyYear.HotSoakFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HotSoakFileName type: checked OK.                                                                                                                   |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `HotSoakFileName` char(8) NOT NULL default '', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.HotSoakFileName size should be 8.', 'CountyYear.HotSoakFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HotSoakFileName data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `HotSoakFileName` char(8) NOT NULL default '', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.HotSoakFileName should be NOT NULL.', 'CountyYear.HotSoakFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HotSoakFileName required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.DiurnSoakActivityFileName should not be part of primary key.', 'CountyYear.DiurnSoakActivityFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DiurnSoakActivityFileName type: checked OK.                                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `DiurnSoakActivityFileName` char(8) NOT NULL default '', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.DiurnSoakActivityFileName should be = CHAR.', 'CountyYear.DiurnSoakActivityFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DiurnSoakActivityFileName type: checked OK.                                                                                                                             |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `DiurnSoakActivityFileName` char(8) NOT NULL default '', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.DiurnSoakActivityFileName size should be 8.', 'CountyYear.DiurnSoakActivityFileName data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DiurnSoakActivityFileName data size type: checked OK.                                                                                                                             |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `DiurnSoakActivityFileName` char(8) NOT NULL default '', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.DiurnSoakActivityFileName should be NOT NULL.', 'CountyYear.DiurnSoakActivityFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DiurnSoakActivityFileName required type definition: checked OK.                                                                                                                                        |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.TripLengthFileName should not be part of primary key.', 'CountyYear.TripLengthFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripLengthFileName type: checked OK.                                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------+
| @TestLine := aline                                  |
+-----------------------------------------------------+
|   `TripLengthFileName` char(8) NOT NULL default '', |
+-----------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.TripLengthFileName should be = CHAR.', 'CountyYear.TripLengthFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripLengthFileName type: checked OK.                                                                                                                      |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------+
| @TestLine := aline                                  |
+-----------------------------------------------------+
|   `TripLengthFileName` char(8) NOT NULL default '', |
+-----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.TripLengthFileName size should be 8.', 'CountyYear.TripLengthFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripLengthFileName data size type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------+
| @TestLine := aline                                  |
+-----------------------------------------------------+
|   `TripLengthFileName` char(8) NOT NULL default '', |
+-----------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.TripLengthFileName should be NOT NULL.', 'CountyYear.TripLengthFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.TripLengthFileName required type definition: checked OK.                                                                                                                                 |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.DieselFractFileName should not be part of primary key.', 'CountyYear.DieselFractFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DieselFractFileName type: checked OK.                                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `DieselFractFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.DieselFractFileName should be = CHAR.', 'CountyYear.DieselFractFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DieselFractFileName type: checked OK.                                                                                                                       |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `DieselFractFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.DieselFractFileName size should be 8.', 'CountyYear.DieselFractFileName data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DieselFractFileName data size type: checked OK.                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `DieselFractFileName` char(8) NOT NULL default '', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.DieselFractFileName should be NOT NULL.', 'CountyYear.DieselFractFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DieselFractFileName required type definition: checked OK.                                                                                                                                  |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.AvgSpeedDistBaseFileName should not be part of primary key.', 'CountyYear.AvgSpeedDistBaseFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.AvgSpeedDistBaseFileName type: checked OK.                                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------+
| @TestLine := aline                                        |
+-----------------------------------------------------------+
|   `AvgSpeedDistBaseFileName` char(8) NOT NULL default '', |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.AvgSpeedDistBaseFileName should be = CHAR.', 'CountyYear.AvgSpeedDistBaseFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.AvgSpeedDistBaseFileName type: checked OK.                                                                                                                            |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------+
| @TestLine := aline                                        |
+-----------------------------------------------------------+
|   `AvgSpeedDistBaseFileName` char(8) NOT NULL default '', |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.AvgSpeedDistBaseFileName size should be 8.', 'CountyYear.AvgSpeedDistBaseFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.AvgSpeedDistBaseFileName data size type: checked OK.                                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------+
| @TestLine := aline                                        |
+-----------------------------------------------------------+
|   `AvgSpeedDistBaseFileName` char(8) NOT NULL default '', |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.AvgSpeedDistBaseFileName should be NOT NULL.', 'CountyYear.AvgSpeedDistBaseFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.AvgSpeedDistBaseFileName required type definition: checked OK.                                                                                                                                       |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.Stage2Pct should not be part of primary key.', 'CountyYear.Stage2Pct type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.Stage2Pct type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `Stage2Pct` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.Stage2Pct should be = FLOAT.', 'CountyYear.Stage2Pct type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.Stage2Pct type: checked OK.                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `Stage2Pct` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.Stage2Pct should be NULL.', 'CountyYear.Stage2Pct required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.Stage2Pct required type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.NRACTFileName should not be part of primary key.', 'CountyYear.NRACTFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.NRACTFileName type: checked OK.                                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NRACTFileName` char(8) NOT NULL default '', |
+------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.NRACTFileName should be = CHAR.', 'CountyYear.NRACTFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.NRACTFileName type: checked OK.                                                                                                                 |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NRACTFileName` char(8) NOT NULL default '', |
+------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.NRACTFileName size should be 8.', 'CountyYear.NRACTFileName data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.NRACTFileName data size type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NRACTFileName` char(8) NOT NULL default '', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.NRACTFileName should be NOT NULL.', 'CountyYear.NRACTFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.NRACTFileName required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.DataSourceId should not be part of primary key.', 'CountyYear.DataSourceId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DataSourceId type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.DataSourceId should be = SMALLINT.', 'CountyYear.DataSourceId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DataSourceId type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.DataSourceId should be NULL.', 'CountyYear.DataSourceId required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.DataSourceId required type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.HasNRStateInputs should not be part of primary key.', 'CountyYear.HasNRStateInputs type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasNRStateInputs type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HasNRStateInputs` char(1) NOT NULL default 'N', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.HasNRStateInputs should be = CHAR.', 'CountyYear.HasNRStateInputs type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasNRStateInputs type: checked OK.                                                                                                                    |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HasNRStateInputs` char(1) NOT NULL default 'N', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.HasNRStateInputs size should be 1.', 'CountyYear.HasNRStateInputs data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasNRStateInputs data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HasNRStateInputs` char(1) NOT NULL default 'N', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.HasNRStateInputs should be NOT NULL.', 'CountyYear.HasNRStateInputs required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasNRStateInputs required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.HasORStateInputs should not be part of primary key.', 'CountyYear.HasORStateInputs type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasORStateInputs type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HasORStateInputs` char(1) NOT NULL default 'N', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.HasORStateInputs should be = CHAR.', 'CountyYear.HasORStateInputs type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasORStateInputs type: checked OK.                                                                                                                    |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HasORStateInputs` char(1) NOT NULL default 'N', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYear.HasORStateInputs size should be 1.', 'CountyYear.HasORStateInputs data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasORStateInputs data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HasORStateInputs` char(1) NOT NULL default 'N', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.HasORStateInputs should be NOT NULL.', 'CountyYear.HasORStateInputs required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.HasORStateInputs required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.CountyYearMonthHourDataSource should not be part of primary key.', 'CountyYear.CountyYearMonthHourDataSource type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.CountyYearMonthHourDataSource type: checked OK.                                                                                                                                           |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------------+
| @TestLine := aline                                                  |
+---------------------------------------------------------------------+
|   `CountyYearMonthHourDataSource` smallint(6) NOT NULL default '0', |
+---------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.CountyYearMonthHourDataSource should be = SMALLINT.', 'CountyYear.CountyYearMonthHourDataSource type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.CountyYearMonthHourDataSource type: checked OK.                                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------------+
| @TestLine := aline                                                  |
+---------------------------------------------------------------------+
|   `CountyYearMonthHourDataSource` smallint(6) NOT NULL default '0', |
+---------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.CountyYearMonthHourDataSource should be NULL.', 'CountyYear.CountyYearMonthHourDataSource required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.CountyYearMonthHourDataSource required type: checked OK.                                                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYear.BaseYearVMTDataSource should not be part of primary key.', 'CountyYear.BaseYearVMTDataSource type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.BaseYearVMTDataSource type: checked OK.                                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------------+
| @TestLine := aline                                          |
+-------------------------------------------------------------+
|   `BaseYearVMTDataSource` smallint(6) NOT NULL default '0', |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYear.BaseYearVMTDataSource should be = SMALLINT.', 'CountyYear.BaseYearVMTDataSource type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.BaseYearVMTDataSource type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------------+
| @TestLine := aline                                          |
+-------------------------------------------------------------+
|   `BaseYearVMTDataSource` smallint(6) NOT NULL default '0', |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYear.BaseYearVMTDataSource should be NULL.', 'CountyYear.BaseYearVMTDataSource required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYear.BaseYearVMTDataSource required type: checked OK.                                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------+
| Check data structure/definition of table CountyYearMonth ... |
+--------------------------------------------------------------+
| Check data structure/definition of table CountyYearMonth ... |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 21 rows affected (0.00 sec)
Records: 21  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`) |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.FIPSCountyId should be part of primary key.', 'CountyYearMonth.FIPSCountyId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSCountyId type: checked OK.                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.FIPSCountyId should be = SMALLINT.', 'CountyYearMonth.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSCountyId type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.FIPSCountyId should be NOT NULL.', 'CountyYearMonth.FIPSCountyId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSCountyId required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`) |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.FIPSStateId should be part of primary key.', 'CountyYearMonth.FIPSStateId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSStateId type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.FIPSStateId should be = TINYINT.', 'CountyYearMonth.FIPSStateId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSStateId type: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYearMonth.FIPSStateId size should be 2.', 'CountyYearMonth.FIPSStateId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSStateId data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.FIPSStateId should be NOT NULL.', 'CountyYearMonth.FIPSStateId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.FIPSStateId required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`) |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.Year should be part of primary key.', 'CountyYearMonth.Year type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Year type: checked OK.                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Year` smallint(6) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.Year should be = SMALLINT.', 'CountyYearMonth.Year type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Year type: checked OK.                                                                                                                 |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Year` smallint(6) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.Year should be NOT NULL.', 'CountyYearMonth.Year required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Year required type definition: checked OK.                                                                                                                        |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`) |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.Month should be part of primary key.', 'CountyYearMonth.Month type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Month type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.Month should be = TINYINT.', 'CountyYearMonth.Month type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Month type: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYearMonth.Month size should be 2.', 'CountyYearMonth.Month data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Month data size type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.Month should be NOT NULL.', 'CountyYearMonth.Month required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.Month required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.NGId should not be part of primary key.', 'CountyYearMonth.NGId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NGId type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `NGId` tinyint(4) default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.NGId should be = TINYINT.', 'CountyYearMonth.NGId type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NGId type: checked OK.                                                                                                                |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `NGId` tinyint(4) default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYearMonth.NGId size should be 4.', 'CountyYearMonth.NGId data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NGId data size type: checked OK.                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `NGId` tinyint(4) default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.NGId should be NULL.', 'CountyYearMonth.NGId required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NGId required type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.HwyDieselId should not be part of primary key.', 'CountyYearMonth.HwyDieselId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyDieselId type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `HwyDieselId` smallint(6) default NULL, |
+-------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.HwyDieselId should be = SMALLINT.', 'CountyYearMonth.HwyDieselId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyDieselId type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.HwyDieselId should be NOT NULL.', 'CountyYearMonth.HwyDieselId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.HwyDieselId should be NOT NULL.                                                                                              |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.HwyGasolineId should not be part of primary key.', 'CountyYearMonth.HwyGasolineId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyGasolineId type: checked OK.                                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HwyGasolineId` smallint(6) default NULL, |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.HwyGasolineId should be = SMALLINT.', 'CountyYearMonth.HwyGasolineId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyGasolineId type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HwyGasolineId` smallint(6) default NULL, |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.HwyGasolineId should be NULL.', 'CountyYearMonth.HwyGasolineId required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyGasolineId required type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.NRGasolineId should not be part of primary key.', 'CountyYearMonth.NRGasolineId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRGasolineId type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `NRGasolineId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.NRGasolineId should be = SMALLINT.', 'CountyYearMonth.NRGasolineId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRGasolineId type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `NRGasolineId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.NRGasolineId should be NULL.', 'CountyYearMonth.NRGasolineId required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRGasolineId required type: checked OK.                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.NRDieselId should not be part of primary key.', 'CountyYearMonth.NRDieselId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRDieselId type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `NRDieselId` smallint(6) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.NRDieselId should be = SMALLINT.', 'CountyYearMonth.NRDieselId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRDieselId type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `NRDieselId` smallint(6) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.NRDieselId should be NULL.', 'CountyYearMonth.NRDieselId required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRDieselId required type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.HwyFuelDataSource should not be part of primary key.', 'CountyYearMonth.HwyFuelDataSource type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyFuelDataSource type: checked OK.                                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `HwyFuelDataSource` smallint(6) default NULL, |
+-------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.HwyFuelDataSource should be = SMALLINT.', 'CountyYearMonth.HwyFuelDataSource type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyFuelDataSource type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `HwyFuelDataSource` smallint(6) default NULL, |
+-------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.HwyFuelDataSource should be NULL.', 'CountyYearMonth.HwyFuelDataSource required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.HwyFuelDataSource required type: checked OK.                                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.NRFuelDataSource should not be part of primary key.', 'CountyYearMonth.NRFuelDataSource type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRFuelDataSource type: checked OK.                                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NRFuelDataSource` smallint(6) default NULL, |
+------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.NRFuelDataSource should be = SMALLINT.', 'CountyYearMonth.NRFuelDataSource type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRFuelDataSource type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NRFuelDataSource` smallint(6) default NULL, |
+------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.NRFuelDataSource should be NULL.', 'CountyYearMonth.NRFuelDataSource required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.NRFuelDataSource required type: checked OK.                                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonth.RMDieselId should not be part of primary key.', 'CountyYearMonth.RMDieselId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.RMDieselId type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `RMDieselId` smallint(6) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonth.RMDieselId should be = SMALLINT.', 'CountyYearMonth.RMDieselId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.RMDieselId type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `RMDieselId` smallint(6) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.RMDieselId should be NULL.', 'CountyYearMonth.RMDieselId required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonth.RMDieselId required type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------+
| Check data structure/definition of table CountyYearMonthHour ... |
+------------------------------------------------------------------+
| Check data structure/definition of table CountyYearMonthHour ... |
+------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 16 rows affected (0.00 sec)
Records: 16  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------------+
| @TestLine := aline                                                    |
+-----------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`,`HourID`) |
+-----------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.FIPSCountyId should be part of primary key.', 'CountyYearMonthHour.FIPSCountyId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSCountyId type: checked OK.                                                                                                                           |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.FIPSCountyId should be = SMALLINT.', 'CountyYearMonthHour.FIPSCountyId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSCountyId type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `FIPSCountyId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.FIPSCountyId should be NOT NULL.', 'CountyYearMonthHour.FIPSCountyId required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSCountyId required type definition: checked OK.                                                                                                                                    |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------------+
| @TestLine := aline                                                    |
+-----------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`,`HourID`) |
+-----------------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.FIPSStateId should be part of primary key.', 'CountyYearMonthHour.FIPSStateId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSStateId type: checked OK.                                                                                                                          |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.FIPSStateId should be = TINYINT.', 'CountyYearMonthHour.FIPSStateId type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSStateId type: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYearMonthHour.FIPSStateId size should be 2.', 'CountyYearMonthHour.FIPSStateId data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSStateId data size type: checked OK.                                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.FIPSStateId should be NOT NULL.', 'CountyYearMonthHour.FIPSStateId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.FIPSStateId required type definition: checked OK.                                                                                                                                   |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------------+
| @TestLine := aline                                                    |
+-----------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`,`HourID`) |
+-----------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.Year should be part of primary key.', 'CountyYearMonthHour.Year type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Year type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Year` smallint(6) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.Year should be = SMALLINT.', 'CountyYearMonthHour.Year type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Year type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Year` smallint(6) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.Year should be NOT NULL.', 'CountyYearMonthHour.Year required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Year required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------------+
| @TestLine := aline                                                    |
+-----------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`,`HourID`) |
+-----------------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.Month should be part of primary key.', 'CountyYearMonthHour.Month type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Month type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.Month should be = TINYINT.', 'CountyYearMonthHour.Month type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Month type: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYearMonthHour.Month size should be 2.', 'CountyYearMonthHour.Month data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Month data size type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `Month` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.Month should be NOT NULL.', 'CountyYearMonthHour.Month required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Month required type definition: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------------------------+
| @TestLine := aline                                                    |
+-----------------------------------------------------------------------+
|   PRIMARY KEY  (`FIPSCountyId`,`FIPSStateId`,`Year`,`Month`,`HourID`) |
+-----------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.HourID should be part of primary key.', 'CountyYearMonthHour.HourID type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.HourID type: checked OK.                                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.HourID should be = TINYINT.', 'CountyYearMonthHour.HourID type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.HourID type: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. CountyYearMonthHour.HourID size should be 2.', 'CountyYearMonthHour.HourID data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.HourID data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.HourID should be NOT NULL.', 'CountyYearMonthHour.HourID required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.HourID required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.Temperature should not be part of primary key.', 'CountyYearMonthHour.Temperature type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Temperature type: checked OK.                                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `Temperature` float default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.Temperature should be = FLOAT.', 'CountyYearMonthHour.Temperature type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Temperature type: checked OK.                                                                                                                         |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `Temperature` float default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.Temperature should be NULL.', 'CountyYearMonthHour.Temperature required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.Temperature required type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. CountyYearMonthHour.RelativeHumidity should not be part of primary key.', 'CountyYearMonthHour.RelativeHumidity type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.RelativeHumidity type: checked OK.                                                                                                                                       |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `RelativeHumidity` float default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. CountyYearMonthHour.RelativeHumidity should be = FLOAT.', 'CountyYearMonthHour.RelativeHumidity type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.RelativeHumidity type: checked OK.                                                                                                                              |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `RelativeHumidity` float default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonthHour.RelativeHumidity should be NULL.', 'CountyYearMonthHour.RelativeHumidity required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| CountyYearMonthHour.RelativeHumidity required type: checked OK.                                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------+
| Check data structure/definition of table DataSource ... |
+---------------------------------------------------------+
| Check data structure/definition of table DataSource ... |
+---------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 16 rows affected (0.00 sec)
Records: 16  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   PRIMARY KEY  (`DataSourceId`) |
+---------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.DataSourceId should be part of primary key.', 'DataSource.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DataSourceId type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `DataSourceId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.DataSourceId should be = SMALLINT.', 'DataSource.DataSourceId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DataSourceId type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `DataSourceId` smallint(6) NOT NULL default '0', |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.DataSourceId should be NOT NULL.', 'DataSource.DataSourceId required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DataSourceId required type definition: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.Author should not be part of primary key.', 'DataSource.Author type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Author type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `Author` varchar(25) default NULL, |
+--------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.Author should be = VARCHAR.', 'DataSource.Author type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Author type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `Author` varchar(25) default NULL, |
+--------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. DataSource.Author size should be 25.', 'DataSource.Author data size type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Author data size type: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `Author` varchar(25) default NULL, |
+--------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.Author should be NULL.', 'DataSource.Author required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Author required type: checked OK.                                                                                                                 |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.Date should not be part of primary key.', 'DataSource.Date type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Date type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------+
| @TestLine := aline          |
+-----------------------------+
|   `Date` date default NULL, |
+-----------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.Date should be = DATE.', 'DataSource.Date type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Date type: checked OK.                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------+
| @TestLine := aline          |
+-----------------------------+
|   `Date` date default NULL, |
+-----------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.Date should be NULL.', 'DataSource.Date required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Date required type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.Sponsor should not be part of primary key.', 'DataSource.Sponsor type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Sponsor type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------+
| @TestLine := aline                    |
+---------------------------------------+
|   `Sponsor` varchar(30) default NULL, |
+---------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.Sponsor should be = VARCHAR.', 'DataSource.Sponsor type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Sponsor type: checked OK.                                                                                                              |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------+
| @TestLine := aline                    |
+---------------------------------------+
|   `Sponsor` varchar(30) default NULL, |
+---------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. DataSource.Sponsor size should be 30.', 'DataSource.Sponsor data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Sponsor data size type: checked OK.                                                                                                            |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------+
| @TestLine := aline                    |
+---------------------------------------+
|   `Sponsor` varchar(30) default NULL, |
+---------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.Sponsor should be NULL.', 'DataSource.Sponsor required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Sponsor required type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.DocumentId should not be part of primary key.', 'DataSource.DocumentId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DocumentId type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `DocumentId` varchar(30) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.DocumentId should be = VARCHAR.', 'DataSource.DocumentId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DocumentId type: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `DocumentId` varchar(30) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. DataSource.DocumentId size should be 30.', 'DataSource.DocumentId data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DocumentId data size type: checked OK.                                                                                                               |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `DocumentId` varchar(30) default NULL, |
+------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.DocumentId should be NULL.', 'DataSource.DocumentId required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.DocumentId required type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.QualityLevel should not be part of primary key.', 'DataSource.QualityLevel type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.QualityLevel type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------+
| @TestLine := aline                     |
+----------------------------------------+
|   `QualityLevel` char(1) default NULL, |
+----------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.QualityLevel should be = CHAR.', 'DataSource.QualityLevel type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.QualityLevel type: checked OK.                                                                                                                |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------+
| @TestLine := aline                     |
+----------------------------------------+
|   `QualityLevel` char(1) default NULL, |
+----------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. DataSource.QualityLevel size should be 1.', 'DataSource.QualityLevel data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.QualityLevel data size type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------+
| @TestLine := aline                     |
+----------------------------------------+
|   `QualityLevel` char(1) default NULL, |
+----------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.QualityLevel should be NULL.', 'DataSource.QualityLevel required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.QualityLevel required type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. DataSource.Comments should not be part of primary key.', 'DataSource.Comments type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Comments type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------+
| @TestLine := aline                      |
+-----------------------------------------+
|   `comments` varchar(255) default NULL, |
+-----------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. DataSource.Comments should be = VARCHAR.', 'DataSource.Comments type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Comments type: checked OK.                                                                                                               |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------+
| @TestLine := aline                      |
+-----------------------------------------+
|   `comments` varchar(255) default NULL, |
+-----------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. DataSource.Comments size should be 255.', 'DataSource.Comments data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Comments data size type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------+
| @TestLine := aline                      |
+-----------------------------------------+
|   `comments` varchar(255) default NULL, |
+-----------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. DataSource.Comments should be NULL.', 'DataSource.Comments required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| DataSource.Comments required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------+
| Check data structure/definition of table Diesel ... |
+-----------------------------------------------------+
| Check data structure/definition of table Diesel ... |
+-----------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 11 rows affected (0.00 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 0

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------+
| @TestLine := aline          |
+-----------------------------+
|   PRIMARY KEY  (`DieselId`) |
+-----------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. Diesel.DieselId should be part of primary key.', 'Diesel.DieselId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| Diesel.DieselId type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `DieselId` smallint(6) NOT NULL default '0', |
+------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Diesel.DieselId should be = SMALLINT.', 'Diesel.DieselId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| Diesel.DieselId type: checked OK.                                                                                                            |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `DieselId` smallint(6) NOT NULL default '0', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Diesel.DieselId should be NOT NULL.', 'Diesel.DieselId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Diesel.DieselId required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Diesel.DieselSulfur should not be part of primary key.', 'Diesel.DieselSulfur type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Diesel.DieselSulfur type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `DieselSulfur` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Diesel.DieselSulfur should be = FLOAT.', 'Diesel.DieselSulfur type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| Diesel.DieselSulfur type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `DieselSulfur` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Diesel.DieselSulfur should be NOT NULL.', 'Diesel.DieselSulfur required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Diesel.DieselSulfur required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------+
| Check data structure/definition of table EmissionType ... |
+-----------------------------------------------------------+
| Check data structure/definition of table EmissionType ... |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 11 rows affected (0.00 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   PRIMARY KEY  (`EmissionTypeID`) |
+-----------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. EmissionType.EmissionTypeID should be part of primary key.', 'EmissionType.EmissionTypeID type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionTypeID type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   `EmissionTypeID` tinyint(2) unsigned NOT NULL default '0', |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. EmissionType.EmissionTypeID should be = TINYINT.', 'EmissionType.EmissionTypeID type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionTypeID type: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   `EmissionTypeID` tinyint(2) unsigned NOT NULL default '0', |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. EmissionType.EmissionTypeID size should be 2.', 'EmissionType.EmissionTypeID data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionTypeID data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   `EmissionTypeID` tinyint(2) unsigned NOT NULL default '0', |
+--------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. EmissionType.EmissionTypeID should be NOT NULL.', 'EmissionType.EmissionTypeID required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionTypeID required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. EmissionType.EmissionType should not be part of primary key.', 'EmissionType.EmissionType type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionType type: checked OK.                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `EmissionType` char(4) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. EmissionType.EmissionType should be = CHAR.', 'EmissionType.EmissionType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionType type: checked OK.                                                                                                                  |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `EmissionType` char(4) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. EmissionType.EmissionType size should be 4.', 'EmissionType.EmissionType data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionType data size type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------------+
| @TestLine := aline                                           |
+--------------------------------------------------------------+
|   `EmissionTypeID` tinyint(2) unsigned NOT NULL default '0', |
|   `EmissionType` char(4) NOT NULL default '',                |
+--------------------------------------------------------------+
2 rows in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. EmissionType.EmissionType should be NOT NULL.', 'EmissionType.EmissionType required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| EmissionType.EmissionType required type definition: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------+
| Check data structure/definition of table FileType ... |
+-------------------------------------------------------+
| Check data structure/definition of table FileType ... |
+-------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 11 rows affected (0.02 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 0

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------+
| @TestLine := aline            |
+-------------------------------+
|   PRIMARY KEY  (`FileTypeID`) |
+-------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. FileType.FileTypeID should be part of primary key.', 'FileType.FileTypeID type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeID type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `FileTypeID` char(3) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. FileType.FileTypeID should be = CHAR.', 'FileType.FileTypeID type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeID type: checked OK.                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `FileTypeID` char(3) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. FileType.FileTypeID size should be 3.', 'FileType.FileTypeID data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeID data size type: checked OK.                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `FileTypeID` char(3) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. FileType.FileTypeID should be NOT NULL.', 'FileType.FileTypeID required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeID required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. FileType.FileTypeDescription should not be part of primary key.', 'FileType.FileTypeDescription type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeDescription type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `FileTypeDescription` char(100) NOT NULL default '', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. FileType.FileTypeDescription should be = CHAR.', 'FileType.FileTypeDescription type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeDescription type: checked OK.                                                                                                                     |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `FileTypeDescription` char(100) NOT NULL default '', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. FileType.FileTypeDescription size should be 100.', 'FileType.FileTypeDescription data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeDescription data size type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `FileTypeDescription` char(100) NOT NULL default '', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. FileType.FileTypeDescription should be NOT NULL.', 'FileType.FileTypeDescription required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| FileType.FileTypeDescription required type definition: checked OK.                                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------+
| Check data structure/definition of table Gasoline ... |
+-------------------------------------------------------+
| Check data structure/definition of table Gasoline ... |
+-------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 44 rows affected (0.00 sec)
Records: 44  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   PRIMARY KEY  (`Gasolineid`), |
+--------------------------------+
1 row in set (0.02 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.GasolineId should be part of primary key.', 'Gasoline.GasolineId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasolineId type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------+
| @TestLine := aline                                  |
+-----------------------------------------------------+
|   `Gasolineid` smallint(6) NOT NULL auto_increment, |
+-----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.GasolineId should be = SMALLINT.', 'Gasoline.GasolineId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasolineId type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------------+
| @TestLine := aline                                  |
+-----------------------------------------------------+
|   `Gasolineid` smallint(6) NOT NULL auto_increment, |
+-----------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.GasolineId should be NOT NULL.', 'Gasoline.GasolineId required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasolineId required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.RVP should not be part of primary key.', 'Gasoline.RVP type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RVP type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `RVP` float NOT NULL default '0', |
+-------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.RVP should be = FLOAT.', 'Gasoline.RVP type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RVP type: checked OK.                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `RVP` float NOT NULL default '0',               |
|   `rvpoxywaiver` tinyint(4) NOT NULL default '1', |
+---------------------------------------------------+
2 rows in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.RVP should be NOT NULL.', 'Gasoline.RVP required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RVP required type definition: checked OK.                                                                                                                |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.GasSulfur should not be part of primary key.', 'Gasoline.GasSulfur type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasSulfur type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `GasSulfur` float NOT NULL default '0', |
+-------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.GasSulfur should be = FLOAT.', 'Gasoline.GasSulfur type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasSulfur type: checked OK.                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `GasSulfur` float NOT NULL default '0', |
+-------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.GasSulfur should be NOT NULL.', 'Gasoline.GasSulfur required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasSulfur required type definition: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.GasMaxSulfur should not be part of primary key.', 'Gasoline.GasMaxSulfur type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasMaxSulfur type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `GasMaxSulfur` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.GasMaxSulfur should be = FLOAT.', 'Gasoline.GasMaxSulfur type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasMaxSulfur type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `GasMaxSulfur` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.GasMaxSulfur should be NOT NULL.', 'Gasoline.GasMaxSulfur required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.GasMaxSulfur required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.RVPOxyWaiver should not be part of primary key.', 'Gasoline.RVPOxyWaiver type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RVPOxyWaiver type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `rvpoxywaiver` tinyint(4) NOT NULL default '1', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.RVPOxyWaiver should be = TINYINT.', 'Gasoline.RVPOxyWaiver type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RVPOxyWaiver type: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. Gasoline.RVPOxyWaiver size should be 1.', 'Gasoline.RVPOxyWaiver data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Error 9032: Data definition (size) error. Gasoline.RVPOxyWaiver size should be 1.                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `rvpoxywaiver` tinyint(4) NOT NULL default '1', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.RVPOxyWaiver should be NOT NULL.', 'Gasoline.RVPOxyWaiver required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RVPOxyWaiver required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.ETOHVolume should not be part of primary key.', 'Gasoline.ETOHVolume type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETOHVolume type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `ETOHVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.ETOHVolume should be = FLOAT.', 'Gasoline.ETOHVolume type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETOHVolume type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `ETOHVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.ETOHVolume should be NOT NULL.', 'Gasoline.ETOHVolume required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETOHVolume required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.ETOHMktShare should not be part of primary key.', 'Gasoline.ETOHMktShare type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETOHMktShare type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `ETOHMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.ETOHMktShare should be = FLOAT.', 'Gasoline.ETOHMktShare type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETOHMktShare type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `ETOHMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.ETOHMktShare should be NOT NULL.', 'Gasoline.ETOHMktShare required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETOHMktShare required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.MTBEVolume should not be part of primary key.', 'Gasoline.MTBEVolume type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.MTBEVolume type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `MTBEVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.MTBEVolume should be = FLOAT.', 'Gasoline.MTBEVolume type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.MTBEVolume type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `MTBEVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.MTBEVolume should be NOT NULL.', 'Gasoline.MTBEVolume required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.MTBEVolume required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.MTBEMktShare should not be part of primary key.', 'Gasoline.MTBEMktShare type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.MTBEMktShare type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `MTBEMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.MTBEMktShare should be = FLOAT.', 'Gasoline.MTBEMktShare type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.MTBEMktShare type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `MTBEMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.MTBEMktShare should be NOT NULL.', 'Gasoline.MTBEMktShare required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.MTBEMktShare required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.ETBEVolume should not be part of primary key.', 'Gasoline.ETBEVolume type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETBEVolume type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `ETBEVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.ETBEVolume should be = FLOAT.', 'Gasoline.ETBEVolume type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETBEVolume type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `ETBEVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.ETBEVolume should be NOT NULL.', 'Gasoline.ETBEVolume required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETBEVolume required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.ETBEMktShare should not be part of primary key.', 'Gasoline.ETBEMktShare type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETBEMktShare type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `ETBEMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.ETBEMktShare should be = FLOAT.', 'Gasoline.ETBEMktShare type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETBEMktShare type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `ETBEMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.ETBEMktShare should be NOT NULL.', 'Gasoline.ETBEMktShare required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.ETBEMktShare required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.TAMEVolume should not be part of primary key.', 'Gasoline.TAMEVolume type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.TAMEVolume type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `TAMEVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.TAMEVolume should be = FLOAT.', 'Gasoline.TAMEVolume type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.TAMEVolume type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `TAMEVolume` float NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.TAMEVolume should be NOT NULL.', 'Gasoline.TAMEVolume required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.TAMEVolume required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.01 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.TAMEMktShare should not be part of primary key.', 'Gasoline.TAMEMktShare type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.TAMEMktShare type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `TAMEMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.TAMEMktShare should be = FLOAT.', 'Gasoline.TAMEMktShare type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.TAMEMktShare type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `TAMEMktShare` float NOT NULL default '0', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.TAMEMktShare should be NOT NULL.', 'Gasoline.TAMEMktShare required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.TAMEMktShare required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.AromaticContent should not be part of primary key.', 'Gasoline.AromaticContent type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.AromaticContent type: checked OK.                                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `AromaticContent` float NOT NULL default '0', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.AromaticContent should be = FLOAT.', 'Gasoline.AromaticContent type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.AromaticContent type: checked OK.                                                                                                                  |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `AromaticContent` float NOT NULL default '0', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.AromaticContent should be NOT NULL.', 'Gasoline.AromaticContent required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.AromaticContent required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.OlefinContent should not be part of primary key.', 'Gasoline.OlefinContent type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.OlefinContent type: checked OK.                                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `OlefinContent` float NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.OlefinContent should be = FLOAT.', 'Gasoline.OlefinContent type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.OlefinContent type: checked OK.                                                                                                                |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `OlefinContent` float NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.OlefinContent should be NOT NULL.', 'Gasoline.OlefinContent required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.OlefinContent required type definition: checked OK.                                                                                                                          |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.BenzeneContent should not be part of primary key.', 'Gasoline.BenzeneContent type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.BenzeneContent type: checked OK.                                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `BenzeneContent` float NOT NULL default '0', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.BenzeneContent should be = FLOAT.', 'Gasoline.BenzeneContent type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.BenzeneContent type: checked OK.                                                                                                                 |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `BenzeneContent` float NOT NULL default '0', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.BenzeneContent should be NOT NULL.', 'Gasoline.BenzeneContent required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.BenzeneContent required type definition: checked OK.                                                                                                                           |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.E200 should not be part of primary key.', 'Gasoline.E200 type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.E200 type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `E200` float NOT NULL default '0', |
+--------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.E200 should be = FLOAT.', 'Gasoline.E200 type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.E200 type: checked OK.                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `E200` float NOT NULL default '0', |
+--------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.E200 should be NOT NULL.', 'Gasoline.E200 required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.E200 required type definition: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.E300 should not be part of primary key.', 'Gasoline.E300 type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.E300 type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `E300` float NOT NULL default '0', |
+--------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.E300 should be = FLOAT.', 'Gasoline.E300 type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.E300 type: checked OK.                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `E300` float NOT NULL default '0', |
+--------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.E300 should be NOT NULL.', 'Gasoline.E300 required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.E300 required type definition: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Gasoline.RFG should not be part of primary key.', 'Gasoline.RFG type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RFG type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `RFG` char(1) NOT NULL default '', |
+--------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Gasoline.RFG should be = CHAR.', 'Gasoline.RFG type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RFG type: checked OK.                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `RFG` char(1) NOT NULL default '', |
+--------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. Gasoline.RFG size should be 1.', 'Gasoline.RFG data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RFG data size type: checked OK.                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------+
| @TestLine := aline                   |
+--------------------------------------+
|   `RFG` char(1) NOT NULL default '', |
+--------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Gasoline.RFG should be NOT NULL.', 'Gasoline.RFG required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Gasoline.RFG required type definition: checked OK.                                                                                                                |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------+
| Check data structure/definition of table Hour ... |
+---------------------------------------------------+
| Check data structure/definition of table Hour ... |
+---------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 11 rows affected (0.00 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 0

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------+
| @TestLine := aline        |
+---------------------------+
|   PRIMARY KEY  (`HourID`) |
+---------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. Hour.HourID should be part of primary key.', 'Hour.HourID type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourID type: checked OK.                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Hour.HourID should be = TINYINT.', 'Hour.HourID type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourID type: checked OK.                                                                                                       |
+-------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. Hour.HourID size should be 2.', 'Hour.HourID data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourID data size type: checked OK.                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `HourID` tinyint(2) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Hour.HourID should be NOT NULL.', 'Hour.HourID required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourID required type definition: checked OK.                                                                                                               |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. Hour.HourName should not be part of primary key.', 'Hour.HourName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourName type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `HourName` char(50) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. Hour.HourName should be = CHAR.', 'Hour.HourName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourName type: checked OK.                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `HourName` char(50) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. Hour.HourName size should be 50.', 'Hour.HourName data size type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourName data size type: checked OK.                                                                                                       |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `HourName` char(50) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. Hour.HourName should be NOT NULL.', 'Hour.HourName required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Hour.HourName required type definition: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------+
| Check data structure/definition of table HPMSRoadType ... |
+-----------------------------------------------------------+
| Check data structure/definition of table HPMSRoadType ... |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 11 rows affected (0.00 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 0

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------+
| @TestLine := aline          |
+-----------------------------+
|   PRIMARY KEY  (`RoadType`) |
+-----------------------------+
1 row in set (0.02 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. HPMSRoadType.RoadType should be part of primary key.', 'HPMSRoadType.RoadType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadType type: checked OK.                                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. HPMSRoadType.RoadType should be = TINYINT.', 'HPMSRoadType.RoadType type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadType type: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. HPMSRoadType.RoadType size should be 2.', 'HPMSRoadType.RoadType data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadType data size type: checked OK.                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. HPMSRoadType.RoadType should be NOT NULL.', 'HPMSRoadType.RoadType required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadType required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. HPMSRoadType.RoadDesc should not be part of primary key.', 'HPMSRoadType.RoadDesc type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadDesc type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `RoadDesc` char(50) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. HPMSRoadType.RoadDesc should be = CHAR.', 'HPMSRoadType.RoadDesc type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadDesc type: checked OK.                                                                                                              |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `RoadDesc` char(50) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. HPMSRoadType.RoadDesc size should be 50.', 'HPMSRoadType.RoadDesc data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadDesc data size type: checked OK.                                                                                                               |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `RoadDesc` char(50) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. HPMSRoadType.RoadDesc should be NOT NULL.', 'HPMSRoadType.RoadDesc required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| HPMSRoadType.RoadDesc required type definition: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------+
| Check data structure/definition of table M6VClass ... |
+-------------------------------------------------------+
| Check data structure/definition of table M6VClass ... |
+-------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 14 rows affected (0.00 sec)
Records: 14  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------+
| @TestLine := aline        |
+---------------------------+
|   PRIMARY KEY  (`VClass`) |
+---------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. M6VClass.VClass should be part of primary key.', 'M6VClass.VClass type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClass type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `VClass` tinyint(2) NOT NULL default '0',   |
|   `P5VClass` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
2 rows in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VClass.VClass should be = TINYINT.', 'M6VClass.VClass type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClass type: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `VClass` tinyint(2) NOT NULL default '0',   |
|   `P5VClass` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
2 rows in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VClass.VClass size should be 2.', 'M6VClass.VClass data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClass data size type: checked OK.                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `VClass` tinyint(2) NOT NULL default '0',   |
|   `VClassAbbr` char(6) NOT NULL default '',   |
|   `VClassDesc` char(80) NOT NULL default '',  |
|   `P5VClass` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
4 rows in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VClass.VClass should be NOT NULL.', 'M6VClass.VClass required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClass required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. M6VClass.VClassAbbr should not be part of primary key.', 'M6VClass.VClassAbbr type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassAbbr type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VClassAbbr` char(6) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VClass.VClassAbbr should be = CHAR.', 'M6VClass.VClassAbbr type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassAbbr type: checked OK.                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VClassAbbr` char(6) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VClass.VClassAbbr size should be 6.', 'M6VClass.VClassAbbr data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassAbbr data size type: checked OK.                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VClassAbbr` char(6) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VClass.VClassAbbr should be NOT NULL.', 'M6VClass.VClassAbbr required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassAbbr required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. M6VClass.VClassDesc should not be part of primary key.', 'M6VClass.VClassDesc type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassDesc type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `VClassDesc` char(80) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VClass.VClassDesc should be = CHAR.', 'M6VClass.VClassDesc type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassDesc type: checked OK.                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `VClassDesc` char(80) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VClass.VClassDesc size should be 80.', 'M6VClass.VClassDesc data size type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassDesc data size type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------+
| @TestLine := aline                           |
+----------------------------------------------+
|   `VClassDesc` char(80) NOT NULL default '', |
+----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VClass.VClassDesc should be NOT NULL.', 'M6VClass.VClassDesc required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VClassDesc required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. M6VClass.VType should not be part of primary key.', 'M6VClass.VType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VType type: checked OK.                                                                                                                 |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VClass.VType should be = TINYINT.', 'M6VClass.VType type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VType type: checked OK.                                                                                                          |
+-------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VClass.VType size should be 2.', 'M6VClass.VType data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VType data size type: checked OK.                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.01 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VClass.VType should be NOT NULL.', 'M6VClass.VType required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.VType required type definition: checked OK.                                                                                                                  |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. M6VClass.P5VClass should not be part of primary key.', 'M6VClass.P5VClass type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.P5VClass type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `P5VClass` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VClass.P5VClass should be = TINYINT.', 'M6VClass.P5VClass type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.P5VClass type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `P5VClass` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VClass.P5VClass size should be 2.', 'M6VClass.P5VClass data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.P5VClass data size type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `P5VClass` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VClass.P5VClass should be NOT NULL.', 'M6VClass.P5VClass required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VClass.P5VClass required type definition: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------+
| Check data structure/definition of table M6VType ... |
+------------------------------------------------------+
| Check data structure/definition of table M6VType ... |
+------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 11 rows affected (0.02 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 0

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------+
| @TestLine := aline       |
+--------------------------+
|   PRIMARY KEY  (`VType`) |
+--------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. M6VType.VType should be part of primary key.', 'M6VType.VType type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VType type: checked OK.                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VType.VType should be = TINYINT.', 'M6VType.VType type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VType type: checked OK.                                                                                                         |
+-----------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VType.VType size should be 2.', 'M6VType.VType data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VType data size type: checked OK.                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0',  |
|   `VTypeDesc` char(80) NOT NULL default '', |
+---------------------------------------------+
2 rows in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VType.VType should be NOT NULL.', 'M6VType.VType required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VType required type definition: checked OK.                                                                                                                 |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. M6VType.VTypeDesc should not be part of primary key.', 'M6VType.VTypeDesc type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VTypeDesc type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VTypeDesc` char(80) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. M6VType.VTypeDesc should be = CHAR.', 'M6VType.VTypeDesc type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VTypeDesc type: checked OK.                                                                                                          |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VTypeDesc` char(80) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. M6VType.VTypeDesc size should be 80.', 'M6VType.VTypeDesc data size type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VTypeDesc data size type: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `VTypeDesc` char(80) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. M6VType.VTypeDesc should be NOT NULL.', 'M6VType.VTypeDesc required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| M6VType.VTypeDesc required type definition: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------+
| Check data structure/definition of table NaturalGas ... |
+---------------------------------------------------------+
| Check data structure/definition of table NaturalGas ... |
+---------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 11 rows affected (0.00 sec)
Records: 11  Deleted: 0  Skipped: 0  Warnings: 0

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------+
| @TestLine := aline      |
+-------------------------+
|   PRIMARY KEY  (`NGId`) |
+-------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. NaturalGas.NGId should be part of primary key.', 'NaturalGas.NGId type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGId type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `NGId` tinyint(4) NOT NULL default '0', |
+-------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. NaturalGas.NGId should be = TINYINT.', 'NaturalGas.NGId type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGId type: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `NGId` tinyint(4) NOT NULL default '0', |
+-------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. NaturalGas.NGId size should be 4.', 'NaturalGas.NGId data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGId data size type: checked OK.                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `NGId` tinyint(4) NOT NULL default '0', |
+-------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. NaturalGas.NGId should be NOT NULL.', 'NaturalGas.NGId required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGId required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. NaturalGas.NGSulfur should not be part of primary key.', 'NaturalGas.NGSulfur type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGSulfur type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `NGSulfur` float NOT NULL default '0', |
+------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. NaturalGas.NGSulfur should be = FLOAT.', 'NaturalGas.NGSulfur type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGSulfur type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------+
| @TestLine := aline                       |
+------------------------------------------+
|   `NGSulfur` float NOT NULL default '0', |
+------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. NaturalGas.NGSulfur should be NOT NULL.', 'NaturalGas.NGSulfur required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| NaturalGas.NGSulfur required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------+
| Check data structure/definition of table PollutantCode ... |
+------------------------------------------------------------+
| Check data structure/definition of table PollutantCode ... |
+------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 14 rows affected (0.00 sec)
Records: 14  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   PRIMARY KEY  (`PollutantCodeID`), |
+-------------------------------------+
1 row in set (0.02 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. PollutantCode.PollutantCodeID should be part of primary key.', 'PollutantCode.PollutantCodeID type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCodeID type: checked OK.                                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `PollutantCodeID` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. PollutantCode.PollutantCodeID should be = TINYINT.', 'PollutantCode.PollutantCodeID type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCodeID type: checked OK.                                                                                                                         |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `PollutantCodeID` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. PollutantCode.PollutantCodeID size should be 2.', 'PollutantCode.PollutantCodeID data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCodeID data size type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `PollutantCodeID` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. PollutantCode.PollutantCodeID should be NOT NULL.', 'PollutantCode.PollutantCodeID required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCodeID required type definition: checked OK.                                                                                                                                 |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. PollutantCode.PollutantCode should not be part of primary key.', 'PollutantCode.PollutantCode type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCode type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `PollutantCode` char(10) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. PollutantCode.PollutantCode should be = CHAR.', 'PollutantCode.PollutantCode type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCode type: checked OK.                                                                                                                    |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `PollutantCode` char(10) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. PollutantCode.PollutantCode size should be 10.', 'PollutantCode.PollutantCode data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCode data size type: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `PollutantCode` char(10) NOT NULL default '',      |
|   `PollutantCodeID` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------+
2 rows in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. PollutantCode.PollutantCode should be NOT NULL.', 'PollutantCode.PollutantCode required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantCode required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. PollutantCode.PollutantName should not be part of primary key.', 'PollutantCode.PollutantName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantName type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `PollutantName` char(50) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. PollutantCode.PollutantName should be = CHAR.', 'PollutantCode.PollutantName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantName type: checked OK.                                                                                                                    |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `PollutantName` char(50) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. PollutantCode.PollutantName size should be 50.', 'PollutantCode.PollutantName data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantName data size type: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `PollutantName` char(50) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. PollutantCode.PollutantName should be NOT NULL.', 'PollutantCode.PollutantName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.PollutantName required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. PollutantCode.RunSpecPollutantIndex should not be part of primary key.', 'PollutantCode.RunSpecPollutantIndex type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.RunSpecPollutantIndex type: checked OK.                                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `RunSpecPollutantIndex` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. PollutantCode.RunSpecPollutantIndex should be = TINYINT.', 'PollutantCode.RunSpecPollutantIndex type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.RunSpecPollutantIndex type: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `RunSpecPollutantIndex` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. PollutantCode.RunSpecPollutantIndex size should be 2.', 'PollutantCode.RunSpecPollutantIndex data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.RunSpecPollutantIndex data size type: checked OK.                                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------------+
| @TestLine := aline                                         |
+------------------------------------------------------------+
|   `RunSpecPollutantIndex` tinyint(2) NOT NULL default '0', |
+------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. PollutantCode.RunSpecPollutantIndex should be NOT NULL.', 'PollutantCode.RunSpecPollutantIndex required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| PollutantCode.RunSpecPollutantIndex required type definition: checked OK.                                                                                                                                       |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------+
| Check data structure/definition of table SCC ... |
+--------------------------------------------------+
| Check data structure/definition of table SCC ... |
+--------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 34 rows affected (0.02 sec)
Records: 34  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------+
| @TestLine := aline        |
+---------------------------+
|   PRIMARY KEY  (`SCCID`), |
+---------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. SCC.SCCID should be part of primary key.', 'SCC.SCCID type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCID type: checked OK.                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------+
| @TestLine := aline                                      |
+---------------------------------------------------------+
|   `SCCID` smallint(5) unsigned NOT NULL auto_increment, |
+---------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.SCCID should be = SMALLINT.', 'SCC.SCCID type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCID type: checked OK.                                                                                                      |
+----------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------+
| @TestLine := aline                                      |
+---------------------------------------------------------+
|   `SCCID` smallint(5) unsigned NOT NULL auto_increment, |
+---------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.SCCID should be NOT NULL.', 'SCC.SCCID required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCID required type definition: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.SCC should not be part of primary key.', 'SCC.SCC type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCC type: checked OK.                                                                                                          |
+------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `SCC` char(10) NOT NULL default '',      |
|   `SCCDesc` char(150) NOT NULL default '', |
+--------------------------------------------+
2 rows in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.SCC should be = CHAR.', 'SCC.SCC type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------+
| SCC.SCC type: checked OK.                                                                                                |
+--------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------+
| @TestLine := aline                    |
+---------------------------------------+
|   `SCC` char(10) NOT NULL default '', |
+---------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.SCC size should be 10.', 'SCC.SCC data size type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCC data size type: checked OK.                                                                                                 |
+-------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------+
| @TestLine := aline                                      |
+---------------------------------------------------------+
|   `SCC` char(10) NOT NULL default '',                   |
|   `SCCDesc` char(150) NOT NULL default '',              |
|   `SCCID` smallint(5) unsigned NOT NULL auto_increment, |
+---------------------------------------------------------+
3 rows in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.SCC should be NOT NULL.', 'SCC.SCC required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCC required type definition: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.Part5VClass should not be part of primary key.', 'SCC.Part5VClass type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClass type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `Part5VClass` tinyint(2) unsigned default NULL, |
+---------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.Part5VClass should be = TINYINT.', 'SCC.Part5VClass type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClass type: checked OK.                                                                                                           |
+---------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `Part5VClass` tinyint(2) unsigned default NULL, |
+---------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.Part5VClass size should be 2.', 'SCC.Part5VClass data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClass data size type: checked OK.                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `Part5VClass` tinyint(2) unsigned default NULL, |
|   `Part5VClassDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
2 rows in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.Part5VClass should be NULL.', 'SCC.Part5VClass required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClass required type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.HPMSRoadType should not be part of primary key.', 'SCC.HPMSRoadType type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.HPMSRoadType type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HPMSRoadType` tinyint(2) unsigned default NULL, |
+----------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.HPMSRoadType should be = TINYINT.', 'SCC.HPMSRoadType type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.HPMSRoadType type: checked OK.                                                                                                            |
+-----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HPMSRoadType` tinyint(2) unsigned default NULL, |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.HPMSRoadType size should be 2.', 'SCC.HPMSRoadType data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.HPMSRoadType data size type: checked OK.                                                                                                         |
+------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------------------+
| @TestLine := aline                                 |
+----------------------------------------------------+
|   `HPMSRoadType` tinyint(2) unsigned default NULL, |
+----------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.HPMSRoadType should be NULL.', 'SCC.HPMSRoadType required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.HPMSRoadType required type: checked OK.                                                                                                                |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.Segment should not be part of primary key.', 'SCC.Segment type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Segment type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Segment` tinyint(2) unsigned default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.Segment should be = TINYINT.', 'SCC.Segment type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Segment type: checked OK.                                                                                                       |
+-------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Segment` tinyint(2) unsigned default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.Segment size should be 2.', 'SCC.Segment data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Segment data size type: checked OK.                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Segment` tinyint(2) unsigned default NULL, |
|   `SegmentDesc` char(50) NOT NULL default '', |
+-----------------------------------------------+
2 rows in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.Segment should be NULL.', 'SCC.Segment required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Segment required type: checked OK.                                                                                                           |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.FuelType should not be part of primary key.', 'SCC.FuelType type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.FuelType type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `FuelType` char(4) NOT NULL default '', |
+-------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.FuelType should be = CHAR.', 'SCC.FuelType type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------+
| SCC.FuelType type: checked OK.                                                                                                     |
+------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `FuelType` char(4) NOT NULL default '', |
+-------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.FuelType size should be 4.', 'SCC.FuelType data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.FuelType data size type: checked OK.                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------+
| @TestLine := aline                        |
+-------------------------------------------+
|   `FuelType` char(4) NOT NULL default '', |
+-------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.FuelType should be NOT NULL.', 'SCC.FuelType required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.FuelType required type definition: checked OK.                                                                                                                |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.Strokes should not be part of primary key.', 'SCC.Strokes type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Strokes type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Strokes` tinyint(2) unsigned default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.Strokes should be = TINYINT.', 'SCC.Strokes type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Strokes type: checked OK.                                                                                                       |
+-------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Strokes` tinyint(2) unsigned default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.Strokes size should be 2.', 'SCC.Strokes data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Strokes data size type: checked OK.                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `Strokes` tinyint(2) unsigned default NULL, |
+-----------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.Strokes should be NULL.', 'SCC.Strokes required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Strokes required type: checked OK.                                                                                                           |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.Part5VClassDesc should not be part of primary key.', 'SCC.Part5VClassDesc type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClassDesc type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `Part5VClassDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.Part5VClassDesc should be = CHAR.', 'SCC.Part5VClassDesc type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClassDesc type: checked OK.                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `Part5VClassDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.Part5VClassDesc size should be 50.', 'SCC.Part5VClassDesc data size type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClassDesc data size type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `Part5VClassDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.Part5VClassDesc should be NOT NULL.', 'SCC.Part5VClassDesc required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.Part5VClassDesc required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.RoadwayTypeDesc should not be part of primary key.', 'SCC.RoadwayTypeDesc type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.RoadwayTypeDesc type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `RoadwayTypeDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.RoadwayTypeDesc should be = CHAR.', 'SCC.RoadwayTypeDesc type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.RoadwayTypeDesc type: checked OK.                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `RoadwayTypeDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.RoadwayTypeDesc size should be 50.', 'SCC.RoadwayTypeDesc data size type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.RoadwayTypeDesc data size type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------+
| @TestLine := aline                                |
+---------------------------------------------------+
|   `RoadwayTypeDesc` char(50) NOT NULL default '', |
+---------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.RoadwayTypeDesc should be NOT NULL.', 'SCC.RoadwayTypeDesc required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.RoadwayTypeDesc required type definition: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.SegmentDesc should not be part of primary key.', 'SCC.SegmentDesc type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SegmentDesc type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `SegmentDesc` char(50) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.SegmentDesc should be = CHAR.', 'SCC.SegmentDesc type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SegmentDesc type: checked OK.                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `SegmentDesc` char(50) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.SegmentDesc size should be 50.', 'SCC.SegmentDesc data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SegmentDesc data size type: checked OK.                                                                                                         |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `SegmentDesc` char(50) NOT NULL default '', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.SegmentDesc should be NOT NULL.', 'SCC.SegmentDesc required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SegmentDesc required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.SCCDesc should not be part of primary key.', 'SCC.SCCDesc type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCDesc type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `SCCDesc` char(150) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.SCCDesc should be = CHAR.', 'SCC.SCCDesc type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCDesc type: checked OK.                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `SCCDesc` char(150) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCC.SCCDesc size should be 150.', 'SCC.SCCDesc data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCDesc data size type: checked OK.                                                                                                      |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `SCCDesc` char(150) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.SCCDesc should be NOT NULL.', 'SCC.SCCDesc required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SCCDesc required type definition: checked OK.                                                                                                               |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.mgNH3perGallon should not be part of primary key.', 'SCC.mgNH3perGallon type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.mgNH3perGallon type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------+
| @TestLine := aline                     |
+----------------------------------------+
|   `mgNH3perGallon` float default NULL, |
+----------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.mgNH3perGallon should be = FLOAT.', 'SCC.mgNH3perGallon type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.mgNH3perGallon type: checked OK.                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+----------------------------------------+
| @TestLine := aline                     |
+----------------------------------------+
|   `mgNH3perGallon` float default NULL, |
+----------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.mgNH3perGallon should be NULL.', 'SCC.mgNH3perGallon required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.mgNH3perGallon required type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.TOGfac should not be part of primary key.', 'SCC.TOGfac type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.TOGfac type: checked OK.                                                                                                             |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   `TOGfac` float default NULL, |
+--------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.TOGfac should be = FLOAT.', 'SCC.TOGfac type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------+
| SCC.TOGfac type: checked OK.                                                                                                    |
+---------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   `TOGfac` float default NULL, |
+--------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.TOGfac should be NULL.', 'SCC.TOGfac required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.TOGfac required type: checked OK.                                                                                                          |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.NMOGfac should not be part of primary key.', 'SCC.NMOGfac type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.NMOGfac type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   `NMOGfac` float default NULL, |
+---------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.NMOGfac should be = FLOAT.', 'SCC.NMOGfac type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------+
| SCC.NMOGfac type: checked OK.                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   `NMOGfac` float default NULL, |
+---------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.NMOGfac should be NULL.', 'SCC.NMOGfac required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.NMOGfac required type: checked OK.                                                                                                           |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.NMHCfac should not be part of primary key.', 'SCC.NMHCfac type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.NMHCfac type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   `NMHCfac` float default NULL, |
+---------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.NMHCfac should be = FLOAT.', 'SCC.NMHCfac type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------+
| SCC.NMHCfac type: checked OK.                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   `NMHCfac` float default NULL, |
+---------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.NMHCfac should be NULL.', 'SCC.NMHCfac required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.NMHCfac required type: checked OK.                                                                                                           |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.VOCfac should not be part of primary key.', 'SCC.VOCfac type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.VOCfac type: checked OK.                                                                                                             |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   `VOCfac` float default NULL, |
+--------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.VOCfac should be = FLOAT.', 'SCC.VOCfac type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------+
| SCC.VOCfac type: checked OK.                                                                                                    |
+---------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   `VOCfac` float default NULL, |
+--------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.VOCfac should be NULL.', 'SCC.VOCfac required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.VOCfac required type: checked OK.                                                                                                          |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.PM25fac should not be part of primary key.', 'SCC.PM25fac type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.PM25fac type: checked OK.                                                                                                              |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   `PM25fac` float default NULL, |
+---------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.PM25fac should be = FLOAT.', 'SCC.PM25fac type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------+
| SCC.PM25fac type: checked OK.                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------+
| @TestLine := aline              |
+---------------------------------+
|   `PM25fac` float default NULL, |
+---------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.PM25fac should be NULL.', 'SCC.PM25fac required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.PM25fac required type: checked OK.                                                                                                           |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCC.SOAfac should not be part of primary key.', 'SCC.SOAfac type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SOAfac type: checked OK.                                                                                                             |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   `SOAfac` float default NULL, |
+--------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCC.SOAfac should be = FLOAT.', 'SCC.SOAfac type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------+
| SCC.SOAfac type: checked OK.                                                                                                    |
+---------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   `SOAfac` float default NULL, |
+--------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCC.SOAfac should be NULL.', 'SCC.SOAfac required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| SCC.SOAfac required type: checked OK.                                                                                                          |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------+
| Check data structure/definition of table SCCToxics ... |
+--------------------------------------------------------+
| Check data structure/definition of table SCCToxics ... |
+--------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 21 rows affected (0.00 sec)
Records: 21  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   PRIMARY KEY  (`SCCID`,`PollutantCodeID`) |
+--------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.SCCID should be part of primary key.', 'SCCToxics.SCCID type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.SCCID type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `SCCID` smallint(5) unsigned NOT NULL default '0', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.SCCID should be = SMALLINT.', 'SCCToxics.SCCID type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.SCCID type: checked OK.                                                                                                            |
+----------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------------+
| @TestLine := aline                                   |
+------------------------------------------------------+
|   `SCCID` smallint(5) unsigned NOT NULL default '0', |
+------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.SCCID should be NOT NULL.', 'SCCToxics.SCCID required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.SCCID required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   PRIMARY KEY  (`SCCID`,`PollutantCodeID`) |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.PollutantCodeID should be part of primary key.', 'SCCToxics.PollutantCodeID type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.PollutantCodeID type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------+
| @TestLine := aline                                            |
+---------------------------------------------------------------+
|   `PollutantCodeID` tinyint(2) unsigned NOT NULL default '0', |
+---------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.PollutantCodeID should be = TINYINT.', 'SCCToxics.PollutantCodeID type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.PollutantCodeID type: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------+
| @TestLine := aline                                            |
+---------------------------------------------------------------+
|   `PollutantCodeID` tinyint(2) unsigned NOT NULL default '0', |
+---------------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCCToxics.PollutantCodeID size should be 2.', 'SCCToxics.PollutantCodeID data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.PollutantCodeID data size type: checked OK.                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------------------------+
| @TestLine := aline                                            |
+---------------------------------------------------------------+
|   `PollutantCodeID` tinyint(2) unsigned NOT NULL default '0', |
+---------------------------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.PollutantCodeID should be NOT NULL.', 'SCCToxics.PollutantCodeID required type definition: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.PollutantCodeID required type definition: checked OK.                                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.exhBaseGas should not be part of primary key.', 'SCCToxics.exhBaseGas type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhBaseGas type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `exhBaseGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.exhBaseGas should be = FLOAT.', 'SCCToxics.exhBaseGas type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhBaseGas type: checked OK.                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `exhBaseGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.exhBaseGas should be NULL.', 'SCCToxics.exhBaseGas required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhBaseGas required type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.exhEthGas should not be part of primary key.', 'SCCToxics.exhEthGas type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhEthGas type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `exhEthGas` float default NULL, |
+-----------------------------------+
1 row in set (0.02 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.exhEthGas should be = FLOAT.', 'SCCToxics.exhEthGas type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhEthGas type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `exhEthGas` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.exhEthGas should be NULL.', 'SCCToxics.exhEthGas required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhEthGas required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.exhMTBEGas should not be part of primary key.', 'SCCToxics.exhMTBEGas type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhMTBEGas type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `exhMTBEGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.exhMTBEGas should be = FLOAT.', 'SCCToxics.exhMTBEGas type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhMTBEGas type: checked OK.                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `exhMTBEGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.exhMTBEGas should be NULL.', 'SCCToxics.exhMTBEGas required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhMTBEGas required type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.exhRFGGas should not be part of primary key.', 'SCCToxics.exhRFGGas type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhRFGGas type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `exhRFGGas` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.exhRFGGas should be = FLOAT.', 'SCCToxics.exhRFGGas type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhRFGGas type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `exhRFGGas` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.exhRFGGas should be NULL.', 'SCCToxics.exhRFGGas required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhRFGGas required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.exhDiesel should not be part of primary key.', 'SCCToxics.exhDiesel type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhDiesel type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `exhDiesel` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.exhDiesel should be = FLOAT.', 'SCCToxics.exhDiesel type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhDiesel type: checked OK.                                                                                                             |
+---------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| @TestLine := aline                |
+-----------------------------------+
|   `exhDiesel` float default NULL, |
+-----------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.exhDiesel should be NULL.', 'SCCToxics.exhDiesel required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.exhDiesel required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.evapBaseGas should not be part of primary key.', 'SCCToxics.evapBaseGas type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapBaseGas type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `evapBaseGas` float default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.evapBaseGas should be = FLOAT.', 'SCCToxics.evapBaseGas type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapBaseGas type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `evapBaseGas` float default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.evapBaseGas should be NULL.', 'SCCToxics.evapBaseGas required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapBaseGas required type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.evapEthGas should not be part of primary key.', 'SCCToxics.evapEthGas type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapEthGas type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `evapEthGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.evapEthGas should be = FLOAT.', 'SCCToxics.evapEthGas type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapEthGas type: checked OK.                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `evapEthGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.evapEthGas should be NULL.', 'SCCToxics.evapEthGas required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapEthGas required type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.evapMTBEGas should not be part of primary key.', 'SCCToxics.evapMTBEGas type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapMTBEGas type: checked OK.                                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `evapMTBEGas` float default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.evapMTBEGas should be = FLOAT.', 'SCCToxics.evapMTBEGas type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapMTBEGas type: checked OK.                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `evapMTBEGas` float default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.evapMTBEGas should be NULL.', 'SCCToxics.evapMTBEGas required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapMTBEGas required type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.evapRFGGas should not be part of primary key.', 'SCCToxics.evapRFGGas type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapRFGGas type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `evapRFGGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.evapRFGGas should be = FLOAT.', 'SCCToxics.evapRFGGas type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapRFGGas type: checked OK.                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------+
| @TestLine := aline                 |
+------------------------------------+
|   `evapRFGGas` float default NULL, |
+------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.evapRFGGas should be NULL.', 'SCCToxics.evapRFGGas required type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.evapRFGGas required type: checked OK.                                                                                                                    |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. SCCToxics.ratioType should not be part of primary key.', 'SCCToxics.ratioType type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.ratioType type: checked OK.                                                                                                                      |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `ratioType` char(5) default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. SCCToxics.ratioType should be = CHAR.', 'SCCToxics.ratioType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.ratioType type: checked OK.                                                                                                            |
+--------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `ratioType` char(5) default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. SCCToxics.ratioType size should be 5.', 'SCCToxics.ratioType data size type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.ratioType data size type: checked OK.                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------+
| @TestLine := aline                  |
+-------------------------------------+
|   `ratioType` char(5) default NULL, |
+-------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. SCCToxics.ratioType should be NULL.', 'SCCToxics.ratioType required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| SCCToxics.ratioType required type: checked OK.                                                                                                                   |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------+
| Check data structure/definition of table State ... |
+----------------------------------------------------+
| Check data structure/definition of table State ... |
+----------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 17 rows affected (0.00 sec)
Records: 17  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------+
| @TestLine := aline             |
+--------------------------------+
|   PRIMARY KEY  (`FIPSStateId`) |
+--------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. State.FIPSStateId should be part of primary key.', 'State.FIPSStateId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| State.FIPSStateId type: checked OK.                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.FIPSStateId should be = TINYINT.', 'State.FIPSStateId type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
| State.FIPSStateId type: checked OK.                                                                                                             |
+-------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.FIPSStateId size should be 2.', 'State.FIPSStateId data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.FIPSStateId data size type: checked OK.                                                                                                          |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------+
| @TestLine := aline                               |
+--------------------------------------------------+
|   `FIPSStateId` tinyint(2) NOT NULL default '0', |
+--------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.FIPSStateId should be NOT NULL.', 'State.FIPSStateId required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.FIPSStateId required type definition: checked OK.                                                                                                                     |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.StateName should not be part of primary key.', 'State.StateName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateName type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `StateName` char(25) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.StateName should be = CHAR.', 'State.StateName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateName type: checked OK.                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `StateName` char(25) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.StateName size should be 25.', 'State.StateName data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateName data size type: checked OK.                                                                                                         |
+-----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `StateName` char(25) NOT NULL default '', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.StateName should be NOT NULL.', 'State.StateName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateName required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.StateAbbr should not be part of primary key.', 'State.StateAbbr type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateAbbr type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `StateAbbr` char(2) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.StateAbbr should be = CHAR.', 'State.StateAbbr type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateAbbr type: checked OK.                                                                                                        |
+------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `StateAbbr` char(2) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.StateAbbr size should be 2.', 'State.StateAbbr data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateAbbr data size type: checked OK.                                                                                                        |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `StateAbbr` char(2) NOT NULL default '', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.StateAbbr should be NOT NULL.', 'State.StateAbbr required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.StateAbbr required type definition: checked OK.                                                                                                                   |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.NLEVFileName should not be part of primary key.', 'State.NLEVFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.NLEVFileName type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NLEVFileName` char(12) NOT NULL default '', |
+------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.NLEVFileName should be = CHAR.', 'State.NLEVFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------+
| State.NLEVFileName type: checked OK.                                                                                                           |
+------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NLEVFileName` char(12) NOT NULL default '', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.NLEVFileName size should be 12.', 'State.NLEVFileName data size type: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.NLEVFileName data size type: checked OK.                                                                                                            |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------------------------------+
| @TestLine := aline                             |
+------------------------------------------------+
|   `NLEVFileName` char(12) NOT NULL default '', |
+------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.NLEVFileName should be NOT NULL.', 'State.NLEVFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.NLEVFileName required type definition: checked OK.                                                                                                                      |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.T2ExhPhaseInFileName should not be part of primary key.', 'State.T2ExhPhaseInFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2ExhPhaseInFileName type: checked OK.                                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   `T2ExhPhaseInFileName` char(8) NOT NULL default '', |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.T2ExhPhaseInFileName should be = CHAR.', 'State.T2ExhPhaseInFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2ExhPhaseInFileName type: checked OK.                                                                                                                   |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   `T2ExhPhaseInFileName` char(8) NOT NULL default '', |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.T2ExhPhaseInFileName size should be 8.', 'State.T2ExhPhaseInFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2ExhPhaseInFileName data size type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------------+
| @TestLine := aline                                    |
+-------------------------------------------------------+
|   `T2ExhPhaseInFileName` char(8) NOT NULL default '', |
+-------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.T2ExhPhaseInFileName should be NOT NULL.', 'State.T2ExhPhaseInFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2ExhPhaseInFileName required type definition: checked OK.                                                                                                                              |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.T2EvapPhaseInFileName should not be part of primary key.', 'State.T2EvapPhaseInFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2EvapPhaseInFileName type: checked OK.                                                                                                                              |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `T2EvapPhaseInFileName` char(8) NOT NULL default '', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.T2EvapPhaseInFileName should be = CHAR.', 'State.T2EvapPhaseInFileName type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2EvapPhaseInFileName type: checked OK.                                                                                                                    |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `T2EvapPhaseInFileName` char(8) NOT NULL default '', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.T2EvapPhaseInFileName size should be 8.', 'State.T2EvapPhaseInFileName data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2EvapPhaseInFileName data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------------------+
| @TestLine := aline                                     |
+--------------------------------------------------------+
|   `T2EvapPhaseInFileName` char(8) NOT NULL default '', |
+--------------------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.T2EvapPhaseInFileName should be NOT NULL.', 'State.T2EvapPhaseInFileName required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2EvapPhaseInFileName required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.T2CertFileName should not be part of primary key.', 'State.T2CertFileName type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2CertFileName type: checked OK.                                                                                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `T2CertFileName` char(8) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.T2CertFileName should be = CHAR.', 'State.T2CertFileName type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2CertFileName type: checked OK.                                                                                                             |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `T2CertFileName` char(8) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. State.T2CertFileName size should be 8.', 'State.T2CertFileName data size type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2CertFileName data size type: checked OK.                                                                                                             |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------------------------------+
| @TestLine := aline                              |
+-------------------------------------------------+
|   `T2CertFileName` char(8) NOT NULL default '', |
+-------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.T2CertFileName should be NOT NULL.', 'State.T2CertFileName required type definition: checked OK.') |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.T2CertFileName required type definition: checked OK.                                                                                                                        |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. State.DataSourceId should not be part of primary key.', 'State.DataSourceId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.DataSourceId type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. State.DataSourceId should be = SMALLINT.', 'State.DataSourceId type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
| State.DataSourceId type: checked OK.                                                                                                               |
+----------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. State.DataSourceId should be NULL.', 'State.DataSourceId required type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| State.DataSourceId required type: checked OK.                                                                                                                  |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

+-----------------------------------------------------------------+
| Check data structure/definition of table VMTMonthAllocation ... |
+-----------------------------------------------------------------+
| Check data structure/definition of table VMTMonthAllocation ... |
+-----------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 14 rows affected (0.00 sec)
Records: 14  Deleted: 0  Skipped: 0  Warnings: 4

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   PRIMARY KEY  (`VType`,`RoadType`,`Month`) |
+---------------------------------------------+
1 row in set (0.01 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. VMTMonthAllocation.VType should be part of primary key.', 'VMTMonthAllocation.VType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.VType type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.01 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. VMTMonthAllocation.VType should be = TINYINT.', 'VMTMonthAllocation.VType type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.VType type: checked OK.                                                                                                                    |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. VMTMonthAllocation.VType size should be 2.', 'VMTMonthAllocation.VType data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.VType data size type: checked OK.                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `VType` tinyint(2) NOT NULL default '0', |
+--------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. VMTMonthAllocation.VType should be NOT NULL.', 'VMTMonthAllocation.VType required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.VType required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   PRIMARY KEY  (`VType`,`RoadType`,`Month`) |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. VMTMonthAllocation.RoadType should be part of primary key.', 'VMTMonthAllocation.RoadType type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.RoadType type: checked OK.                                                                                                                      |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. VMTMonthAllocation.RoadType should be = TINYINT.', 'VMTMonthAllocation.RoadType type: checked OK.') |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.RoadType type: checked OK.                                                                                                                       |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9032: Data definition (size) error. VMTMonthAllocation.RoadType size should be 2.', 'VMTMonthAllocation.RoadType data size type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.RoadType data size type: checked OK.                                                                                                                    |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------------------+
| @TestLine := aline                            |
+-----------------------------------------------+
|   `RoadType` tinyint(2) NOT NULL default '0', |
+-----------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. VMTMonthAllocation.RoadType should be NOT NULL.', 'VMTMonthAllocation.RoadType required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.RoadType required type definition: checked OK.                                                                                                                               |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   PRIMARY KEY  (`VType`,`RoadType`,`Month`) |
+---------------------------------------------+
1 row in set (0.00 sec)

+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9008: Primary key error. VMTMonthAllocation.Month should be part of primary key.', 'VMTMonthAllocation.Month type: checked OK.') |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.Month type: checked OK.                                                                                                                   |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `Month` smallint(6) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. VMTMonthAllocation.Month should be = SMALLINT.', 'VMTMonthAllocation.Month type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.Month type: checked OK.                                                                                                                     |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `Month` smallint(6) NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. VMTMonthAllocation.Month should be NOT NULL.', 'VMTMonthAllocation.Month required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.Month required type definition: checked OK.                                                                                                                            |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. VMTMonthAllocation.AllocFactor should not be part of primary key.', 'VMTMonthAllocation.AllocFactor type: checked OK.') |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.AllocFactor type: checked OK.                                                                                                                                 |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `allocfactor` float NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. VMTMonthAllocation.AllocFactor should be = FLOAT.', 'VMTMonthAllocation.AllocFactor type: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.AllocFactor type: checked OK.                                                                                                                        |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+---------------------------------------------+
| @TestLine := aline                          |
+---------------------------------------------+
|   `allocfactor` float NOT NULL default '0', |
+---------------------------------------------+
1 row in set (0.00 sec)

+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. VMTMonthAllocation.AllocFactor should be NOT NULL.', 'VMTMonthAllocation.AllocFactor required type definition: checked OK.') |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.AllocFactor required type definition: checked OK.                                                                                                                                  |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Empty set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(NOT ISNULL(@TestLine),'Error 9008: Primary key error. VMTMonthAllocation.DataSourceId should not be part of primary key.', 'VMTMonthAllocation.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.DataSourceId type: checked OK.                                                                                                                                  |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9028: Data definition (type) error. VMTMonthAllocation.DataSourceId should be = SMALLINT.', 'VMTMonthAllocation.DataSourceId type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.DataSourceId type: checked OK.                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+--------------------------------------------+
| @TestLine := aline                         |
+--------------------------------------------+
|   `DataSourceId` smallint(6) default NULL, |
+--------------------------------------------+
1 row in set (0.00 sec)

+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| IF(ISNULL(@TestLine),'Error 9030: Data definition (NULL/NOT NULL) error. VMTMonthAllocation.DataSourceId should be NULL.', 'VMTMonthAllocation.DataSourceId required type: checked OK.') |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| VMTMonthAllocation.DataSourceId required type: checked OK.                                                                                                                               |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT 'Checking relationship between HPMSRoadType and  BaseYearVMT' 
--------------

+-------------------------------------------------------------+
| Checking relationship between HPMSRoadType and  BaseYearVMT |
+-------------------------------------------------------------+
| Checking relationship between HPMSRoadType and  BaseYearVMT |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM BaseYearVMT 
--------------

+----------+
| COUNT(*) |
+----------+
|  9743328 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 12 rows affected (10.14 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.06 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.03 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.05 sec)
Records: 12  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between M6VClass and  BaseYearVMT' 
--------------

+---------------------------------------------------------+
| Checking relationship between M6VClass and  BaseYearVMT |
+---------------------------------------------------------+
| Checking relationship between M6VClass and  BaseYearVMT |
+---------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM BaseYearVMT 
--------------

+----------+
| COUNT(*) |
+----------+
|  9743328 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 28 rows affected (9.75 sec)
Records: 28  Duplicates: 0  Warnings: 0

Query OK, 28 rows affected (0.05 sec)
Records: 28  Duplicates: 0  Warnings: 0

Query OK, 28 rows affected (0.03 sec)
Records: 28  Duplicates: 0  Warnings: 0

Query OK, 28 rows affected (0.05 sec)
Records: 28  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between CountyMap and  CountyMap' 
--------------

+--------------------------------------------------------+
| Checking relationship between CountyMap and  CountyMap |
+--------------------------------------------------------+
| Checking relationship between CountyMap and  CountyMap |
+--------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyMap 
--------------

+----------+
| COUNT(*) |
+----------+
|     3223 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between CountyMap and  CountyMap' 
--------------

+--------------------------------------------------------+
| Checking relationship between CountyMap and  CountyMap |
+--------------------------------------------------------+
| Checking relationship between CountyMap and  CountyMap |
+--------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyMap 
--------------

+----------+
| COUNT(*) |
+----------+
|     3223 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.08 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.03 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.08 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between County and  CountyMap' 
--------------

+-----------------------------------------------------+
| Checking relationship between County and  CountyMap |
+-----------------------------------------------------+
| Checking relationship between County and  CountyMap |
+-----------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyMap 
--------------

+----------+
| COUNT(*) |
+----------+
|     3223 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 3223 rows affected (0.03 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.08 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between County and  CountyMonth' 
--------------

+-------------------------------------------------------+
| Checking relationship between County and  CountyMonth |
+-------------------------------------------------------+
| Checking relationship between County and  CountyMonth |
+-------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|    38676 |
+----------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 3223 rows affected (0.08 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.08 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between Hour and  CountyMonthHour' 
--------------

+---------------------------------------------------------+
| Checking relationship between Hour and  CountyMonthHour |
+---------------------------------------------------------+
| Checking relationship between Hour and  CountyMonthHour |
+---------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyMonthHour 
--------------

+----------+
| COUNT(*) |
+----------+
|   928224 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 24 rows affected (0.94 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.05 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.03 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.06 sec)
Records: 24  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between CountyMonth and  CountyMonthHour' 
--------------

+----------------------------------------------------------------+
| Checking relationship between CountyMonth and  CountyMonthHour |
+----------------------------------------------------------------+
| Checking relationship between CountyMonth and  CountyMonthHour |
+----------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyMonthHour 
--------------

+----------+
| COUNT(*) |
+----------+
|   928224 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 38676 rows affected (0.64 sec)
Records: 38676  Duplicates: 0  Warnings: 0

Query OK, 38676 rows affected (0.16 sec)
Records: 38676  Duplicates: 0  Warnings: 0

Query OK, 38676 rows affected (0.06 sec)
Records: 38676  Duplicates: 0  Warnings: 0

Query OK, 38676 rows affected (0.14 sec)
Records: 38676  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.14 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.13 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between FileType and  CountyNRFile' 
--------------

+----------------------------------------------------------+
| Checking relationship between FileType and  CountyNRFile |
+----------------------------------------------------------+
| Checking relationship between FileType and  CountyNRFile |
+----------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyNRFile 
--------------

+----------+
| COUNT(*) |
+----------+
|     2896 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 12 rows affected (0.01 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.06 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 22 rows affected (0.01 sec)
Records: 22  Duplicates: 0  Warnings: 0

Query OK, 22 rows affected (0.05 sec)
Records: 22  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

--------------
SELECT 'Checking relationship between County and  CountyNRFile' 
--------------

+--------------------------------------------------------+
| Checking relationship between County and  CountyNRFile |
+--------------------------------------------------------+
| Checking relationship between County and  CountyNRFile |
+--------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyNRFile 
--------------

+----------+
| COUNT(*) |
+----------+
|     2896 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 734 rows affected (0.03 sec)
Records: 734  Duplicates: 0  Warnings: 0

Query OK, 734 rows affected (0.05 sec)
Records: 734  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between VMTMonthAllocation and  CountyVMTMonthAllocation' 
--------------

+--------------------------------------------------------------------------------+
| Checking relationship between VMTMonthAllocation and  CountyVMTMonthAllocation |
+--------------------------------------------------------------------------------+
| Checking relationship between VMTMonthAllocation and  CountyVMTMonthAllocation |
+--------------------------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyVMTMonthAllocation 
--------------

+----------+
| COUNT(*) |
+----------+
|   361728 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 2304 rows affected (0.47 sec)
Records: 2304  Duplicates: 0  Warnings: 0

Query OK, 2304 rows affected (0.05 sec)
Records: 2304  Duplicates: 0  Warnings: 0

Query OK, 2304 rows affected (0.05 sec)
Records: 2304  Duplicates: 0  Warnings: 0

Query OK, 2304 rows affected (0.05 sec)
Records: 2304  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between County and  CountyVMTMonthAllocation' 
--------------

+--------------------------------------------------------------------+
| Checking relationship between County and  CountyVMTMonthAllocation |
+--------------------------------------------------------------------+
| Checking relationship between County and  CountyVMTMonthAllocation |
+--------------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyVMTMonthAllocation 
--------------

+----------+
| COUNT(*) |
+----------+
|   361728 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 157 rows affected (0.22 sec)
Records: 157  Duplicates: 0  Warnings: 0

Query OK, 157 rows affected (0.05 sec)
Records: 157  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between County and  CountyYear' 
--------------

+------------------------------------------------------+
| Checking relationship between County and  CountyYear |
+------------------------------------------------------+
| Checking relationship between County and  CountyYear |
+------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYear 
--------------

+----------+
| COUNT(*) |
+----------+
|   167594 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 3223 rows affected (0.13 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.05 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.03 sec)
Records: 3223  Duplicates: 0  Warnings: 0

Query OK, 3223 rows affected (0.06 sec)
Records: 3223  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between Diesel and  CountyYearMonth' 
--------------

+-----------------------------------------------------------+
| Checking relationship between Diesel and  CountyYearMonth |
+-----------------------------------------------------------+
| Checking relationship between Diesel and  CountyYearMonth |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 24 rows affected (1.22 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.05 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 114 rows affected (0.03 sec)
Records: 114  Duplicates: 0  Warnings: 0

Query OK, 114 rows affected (0.06 sec)
Records: 114  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

--------------
SELECT 'Checking relationship between Gasoline and  CountyYearMonth' 
--------------

+-------------------------------------------------------------+
| Checking relationship between Gasoline and  CountyYearMonth |
+-------------------------------------------------------------+
| Checking relationship between Gasoline and  CountyYearMonth |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 4280 rows affected (1.27 sec)
Records: 4280  Duplicates: 0  Warnings: 0

Query OK, 4280 rows affected (0.09 sec)
Records: 4280  Duplicates: 0  Warnings: 0

Query OK, 4280 rows affected (0.01 sec)
Records: 4280  Duplicates: 0  Warnings: 0

Query OK, 4280 rows affected (0.08 sec)
Records: 4280  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

--------------
SELECT 'Checking relationship between Gasoline and  CountyYearMonth' 
--------------

+-------------------------------------------------------------+
| Checking relationship between Gasoline and  CountyYearMonth |
+-------------------------------------------------------------+
| Checking relationship between Gasoline and  CountyYearMonth |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 4280 rows affected (1.25 sec)
Records: 4280  Duplicates: 0  Warnings: 0

Query OK, 4280 rows affected (0.08 sec)
Records: 4280  Duplicates: 0  Warnings: 0

Query OK, 4280 rows affected (0.03 sec)
Records: 4280  Duplicates: 0  Warnings: 0

Query OK, 4280 rows affected (0.06 sec)
Records: 4280  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between NaturalGas and  CountyYearMonth' 
--------------

+---------------------------------------------------------------+
| Checking relationship between NaturalGas and  CountyYearMonth |
+---------------------------------------------------------------+
| Checking relationship between NaturalGas and  CountyYearMonth |
+---------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 1 row affected (0.89 sec)
Records: 1  Duplicates: 0  Warnings: 0

Query OK, 1 row affected (0.05 sec)
Records: 1  Duplicates: 0  Warnings: 0

Query OK, 1 row affected (0.03 sec)
Records: 1  Duplicates: 0  Warnings: 0

Query OK, 1 row affected (0.06 sec)
Records: 1  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between Diesel and  CountyYearMonth' 
--------------

+-----------------------------------------------------------+
| Checking relationship between Diesel and  CountyYearMonth |
+-----------------------------------------------------------+
| Checking relationship between Diesel and  CountyYearMonth |
+-----------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 68 rows affected (1.11 sec)
Records: 68  Duplicates: 0  Warnings: 0

Query OK, 68 rows affected (0.05 sec)
Records: 68  Duplicates: 0  Warnings: 0

Query OK, 114 rows affected (0.03 sec)
Records: 114  Duplicates: 0  Warnings: 0

Query OK, 114 rows affected (0.05 sec)
Records: 114  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between CountyYear and  CountyYearMonth' 
--------------

+---------------------------------------------------------------+
| Checking relationship between CountyYear and  CountyYearMonth |
+---------------------------------------------------------------+
| Checking relationship between CountyYear and  CountyYearMonth |
+---------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 167594 rows affected (1.42 sec)
Records: 167594  Duplicates: 0  Warnings: 0

Query OK, 167594 rows affected (0.53 sec)
Records: 167594  Duplicates: 0  Warnings: 0

Query OK, 167594 rows affected (0.28 sec)
Records: 167594  Duplicates: 0  Warnings: 0

Query OK, 167594 rows affected (0.52 sec)
Records: 167594  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.58 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.55 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between CountyMonth and  CountyYearMonth' 
--------------

+----------------------------------------------------------------+
| Checking relationship between CountyMonth and  CountyYearMonth |
+----------------------------------------------------------------+
| Checking relationship between CountyMonth and  CountyYearMonth |
+----------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonth 
--------------

+----------+
| COUNT(*) |
+----------+
|  2011128 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 38676 rows affected (2.72 sec)
Records: 38676  Duplicates: 0  Warnings: 0

Query OK, 38676 rows affected (0.16 sec)
Records: 38676  Duplicates: 0  Warnings: 0

Query OK, 38676 rows affected (0.06 sec)
Records: 38676  Duplicates: 0  Warnings: 0

Query OK, 38676 rows affected (0.14 sec)
Records: 38676  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.14 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.13 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between Hour and  CountyYearMonthHour' 
--------------

+-------------------------------------------------------------+
| Checking relationship between Hour and  CountyYearMonthHour |
+-------------------------------------------------------------+
| Checking relationship between Hour and  CountyYearMonthHour |
+-------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonthHour 
--------------

+----------+
| COUNT(*) |
+----------+
|  6496704 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 24 rows affected (35.45 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.05 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.03 sec)
Records: 24  Duplicates: 0  Warnings: 0

Query OK, 24 rows affected (0.05 sec)
Records: 24  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between CountyYearMonth and  CountyYearMonthHour' 
--------------

+------------------------------------------------------------------------+
| Checking relationship between CountyYearMonth and  CountyYearMonthHour |
+------------------------------------------------------------------------+
| Checking relationship between CountyYearMonth and  CountyYearMonthHour |
+------------------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM CountyYearMonthHour 
--------------

+----------+
| COUNT(*) |
+----------+
|  6496704 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 270696 rows affected (5.06 sec)
Records: 270696  Duplicates: 0  Warnings: 0

Query OK, 270696 rows affected (1.02 sec)
Records: 270696  Duplicates: 0  Warnings: 0

Query OK, 2011128 rows affected (3.61 sec)
Records: 2011128  Duplicates: 0  Warnings: 0

Query OK, 2011128 rows affected (8.02 sec)
Records: 2011128  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (1.22 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

--------------
SELECT 'Checking relationship between M6VType and  M6VClass' 
--------------

+-----------------------------------------------------+
| Checking relationship between M6VType and  M6VClass |
+-----------------------------------------------------+
| Checking relationship between M6VType and  M6VClass |
+-----------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM M6VClass 
--------------

+----------+
| COUNT(*) |
+----------+
|       28 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 16 rows affected (0.03 sec)
Records: 16  Duplicates: 0  Warnings: 0

Query OK, 16 rows affected (0.05 sec)
Records: 16  Duplicates: 0  Warnings: 0

Query OK, 16 rows affected (0.05 sec)
Records: 16  Duplicates: 0  Warnings: 0

Query OK, 16 rows affected (0.05 sec)
Records: 16  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between SCC and  SCCToxics' 
--------------

+--------------------------------------------------+
| Checking relationship between SCC and  SCCToxics |
+--------------------------------------------------+
| Checking relationship between SCC and  SCCToxics |
+--------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM SCCToxics 
--------------

+----------+
| COUNT(*) |
+----------+
|    23821 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 590 rows affected (0.03 sec)
Records: 590  Duplicates: 0  Warnings: 0

Query OK, 590 rows affected (0.06 sec)
Records: 590  Duplicates: 0  Warnings: 0

Query OK, 590 rows affected (0.05 sec)
Records: 590  Duplicates: 0  Warnings: 0

Query OK, 590 rows affected (0.06 sec)
Records: 590  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between PollutantCode and  SCCToxics' 
--------------

+------------------------------------------------------------+
| Checking relationship between PollutantCode and  SCCToxics |
+------------------------------------------------------------+
| Checking relationship between PollutantCode and  SCCToxics |
+------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM SCCToxics 
--------------

+----------+
| COUNT(*) |
+----------+
|    23821 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 54 rows affected (0.06 sec)
Records: 54  Duplicates: 0  Warnings: 0

Query OK, 54 rows affected (0.06 sec)
Records: 54  Duplicates: 0  Warnings: 0

Query OK, 68 rows affected (0.05 sec)
Records: 68  Duplicates: 0  Warnings: 0

Query OK, 68 rows affected (0.06 sec)
Records: 68  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between HPMSRoadType and  VMTMonthAllocation' 
--------------

+--------------------------------------------------------------------+
| Checking relationship between HPMSRoadType and  VMTMonthAllocation |
+--------------------------------------------------------------------+
| Checking relationship between HPMSRoadType and  VMTMonthAllocation |
+--------------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM VMTMonthAllocation 
--------------

+----------+
| COUNT(*) |
+----------+
|     2304 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 12 rows affected (0.03 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.08 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.03 sec)
Records: 12  Duplicates: 0  Warnings: 0

Query OK, 12 rows affected (0.05 sec)
Records: 12  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

--------------
SELECT 'Checking relationship between M6VType and  VMTMonthAllocation' 
--------------

+---------------------------------------------------------------+
| Checking relationship between M6VType and  VMTMonthAllocation |
+---------------------------------------------------------------+
| Checking relationship between M6VType and  VMTMonthAllocation |
+---------------------------------------------------------------+
1 row in set (0.00 sec)

--------------
SELECT COUNT(*) FROM VMTMonthAllocation 
--------------

+----------+
| COUNT(*) |
+----------+
|     2304 |
+----------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 16 rows affected (0.03 sec)
Records: 16  Duplicates: 0  Warnings: 0

Query OK, 16 rows affected (0.05 sec)
Records: 16  Duplicates: 0  Warnings: 0

Query OK, 16 rows affected (0.05 sec)
Records: 16  Duplicates: 0  Warnings: 0

Query OK, 16 rows affected (0.05 sec)
Records: 16  Duplicates: 0  Warnings: 0

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.02 sec)

+----------+---------------+
| COUNT(*) | CheckResult   |
+----------+---------------+
|        0 | FK checked OK |
+----------+---------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-------------------------+----------+----------+----------+
| Table                   | Op       | Msg_type | Msg_text |
+-------------------------+----------+----------+----------+
| ncd20070727.baseyearvmt | optimize | status   | OK       |
+-------------------------+----------+----------+----------+
1 row in set (9.05 sec)

+--------------------+----------+----------+-----------------------------+
| Table              | Op       | Msg_type | Msg_text                    |
+--------------------+----------+----------+-----------------------------+
| ncd20070727.county | optimize | status   | Table is already up to date |
+--------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+-----------------------+----------+----------+----------+
| Table                 | Op       | Msg_type | Msg_text |
+-----------------------+----------+----------+----------+
| ncd20070727.countymap | optimize | status   | OK       |
+-----------------------+----------+----------+----------+
1 row in set (0.00 sec)

+-------------------------+----------+----------+-----------------------------+
| Table                   | Op       | Msg_type | Msg_text                    |
+-------------------------+----------+----------+-----------------------------+
| ncd20070727.countymonth | optimize | status   | Table is already up to date |
+-------------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+-----------------------------+----------+----------+----------+
| Table                       | Op       | Msg_type | Msg_text |
+-----------------------------+----------+----------+----------+
| ncd20070727.countymonthhour | optimize | status   | OK       |
+-----------------------------+----------+----------+----------+
1 row in set (0.36 sec)

+--------------------------+----------+----------+----------+
| Table                    | Op       | Msg_type | Msg_text |
+--------------------------+----------+----------+----------+
| ncd20070727.countynrfile | optimize | status   | OK       |
+--------------------------+----------+----------+----------+
1 row in set (0.05 sec)

+--------------------------------------+----------+----------+----------+
| Table                                | Op       | Msg_type | Msg_text |
+--------------------------------------+----------+----------+----------+
| ncd20070727.countyvmtmonthallocation | optimize | status   | OK       |
+--------------------------------------+----------+----------+----------+
1 row in set (0.19 sec)

+------------------------+----------+----------+-----------------------------+
| Table                  | Op       | Msg_type | Msg_text                    |
+------------------------+----------+----------+-----------------------------+
| ncd20070727.countyyear | optimize | status   | Table is already up to date |
+------------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+-----------------------------+----------+----------+-----------------------------+
| Table                       | Op       | Msg_type | Msg_text                    |
+-----------------------------+----------+----------+-----------------------------+
| ncd20070727.countyyearmonth | optimize | status   | Table is already up to date |
+-----------------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+---------------------------------+----------+----------+----------+
| Table                           | Op       | Msg_type | Msg_text |
+---------------------------------+----------+----------+----------+
| ncd20070727.countyyearmonthhour | optimize | status   | OK       |
+---------------------------------+----------+----------+----------+
1 row in set (6.33 sec)

+------------------------+----------+----------+----------+
| Table                  | Op       | Msg_type | Msg_text |
+------------------------+----------+----------+----------+
| ncd20070727.datasource | optimize | status   | OK       |
+------------------------+----------+----------+----------+
1 row in set (0.03 sec)

+--------------------+----------+----------+----------+
| Table              | Op       | Msg_type | Msg_text |
+--------------------+----------+----------+----------+
| ncd20070727.diesel | optimize | status   | OK       |
+--------------------+----------+----------+----------+
1 row in set (0.00 sec)

+--------------------------+----------+----------+-----------------------------+
| Table                    | Op       | Msg_type | Msg_text                    |
+--------------------------+----------+----------+-----------------------------+
| ncd20070727.emissiontype | optimize | status   | Table is already up to date |
+--------------------------+----------+----------+-----------------------------+
1 row in set (0.02 sec)

+----------------------+----------+----------+----------+
| Table                | Op       | Msg_type | Msg_text |
+----------------------+----------+----------+----------+
| ncd20070727.filetype | optimize | status   | OK       |
+----------------------+----------+----------+----------+
1 row in set (0.00 sec)

+----------------------+----------+----------+----------+
| Table                | Op       | Msg_type | Msg_text |
+----------------------+----------+----------+----------+
| ncd20070727.gasoline | optimize | status   | OK       |
+----------------------+----------+----------+----------+
1 row in set (0.02 sec)

+------------------+----------+----------+-----------------------------+
| Table            | Op       | Msg_type | Msg_text                    |
+------------------+----------+----------+-----------------------------+
| ncd20070727.hour | optimize | status   | Table is already up to date |
+------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+--------------------------+----------+----------+-----------------------------+
| Table                    | Op       | Msg_type | Msg_text                    |
+--------------------------+----------+----------+-----------------------------+
| ncd20070727.hpmsroadtype | optimize | status   | Table is already up to date |
+--------------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+----------------------+----------+----------+-----------------------------+
| Table                | Op       | Msg_type | Msg_text                    |
+----------------------+----------+----------+-----------------------------+
| ncd20070727.m6vclass | optimize | status   | Table is already up to date |
+----------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+---------------------+----------+----------+-----------------------------+
| Table               | Op       | Msg_type | Msg_text                    |
+---------------------+----------+----------+-----------------------------+
| ncd20070727.m6vtype | optimize | status   | Table is already up to date |
+---------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+------------------------+----------+----------+----------+
| Table                  | Op       | Msg_type | Msg_text |
+------------------------+----------+----------+----------+
| ncd20070727.naturalgas | optimize | status   | OK       |
+------------------------+----------+----------+----------+
1 row in set (0.01 sec)

+---------------------------+----------+----------+----------+
| Table                     | Op       | Msg_type | Msg_text |
+---------------------------+----------+----------+----------+
| ncd20070727.pollutantcode | optimize | status   | OK       |
+---------------------------+----------+----------+----------+
1 row in set (0.00 sec)

+-----------------+----------+----------+-----------------------------+
| Table           | Op       | Msg_type | Msg_text                    |
+-----------------+----------+----------+-----------------------------+
| ncd20070727.scc | optimize | status   | Table is already up to date |
+-----------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+-----------------------+----------+----------+-----------------------------+
| Table                 | Op       | Msg_type | Msg_text                    |
+-----------------------+----------+----------+-----------------------------+
| ncd20070727.scctoxics | optimize | status   | Table is already up to date |
+-----------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+-------------------+----------+----------+-----------------------------+
| Table             | Op       | Msg_type | Msg_text                    |
+-------------------+----------+----------+-----------------------------+
| ncd20070727.state | optimize | status   | Table is already up to date |
+-------------------+----------+----------+-----------------------------+
1 row in set (0.00 sec)

+--------------------------------+----------+----------+----------+
| Table                          | Op       | Msg_type | Msg_text |
+--------------------------------+----------+----------+----------+
| ncd20070727.vmtmonthallocation | optimize | status   | OK       |
+--------------------------------+----------+----------+----------+
1 row in set (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 12807 rows affected (0.03 sec)
Records: 12807  Deleted: 0  Skipped: 0  Warnings: 2613

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

Query OK, 637 rows affected (0.05 sec)

Query OK, 12 rows affected (0.00 sec)

Query OK, 139 rows affected (0.02 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 16 rows affected (0.02 sec)

Query OK, 2 rows affected (0.14 sec)
Records: 2  Duplicates: 0  Warnings: 0

Query OK, 1 row affected (0.00 sec)

Query OK, 1 row affected (0.00 sec)

Query OK, 1 row affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 1 row affected (0.00 sec)

Query OK, 1 row affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+------------------------+
| @TestLine := CURDATE() |
+------------------------+
| 2007-07-29             |
+------------------------+
1 row in set (0.00 sec)

Query OK, 1 row affected (0.00 sec)

Query OK, 8 rows affected (0.05 sec)
Records: 8  Duplicates: 0  Warnings: 0

Query OK, 8 rows affected (0.03 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.02 sec)

+-------------------------+
| Errors/Warnings Report: |
+-------------------------+
| Errors/Warnings Report: |
+-------------------------+
1 row in set (0.00 sec)

+-------+------------------------------------------------------------------------------------------------------+
| RowID | Message                                                                                              |
+-------+------------------------------------------------------------------------------------------------------+
|  5586 | | Error 9030: Data definition (NULL/NOT NULL) error. CountyYearMonth.HwyDieselId should be NOT NULL. |
|  7254 | | Error 9032: Data definition (size) error. Gasoline.RVPOxyWaiver size should be 1.                  |
|    -4 | ***********************************************************                                          |
|    -3 |                                                                                                      |
|    -2 |     -- Errors/Warnings Report From Database Check Result --                                          |
|    -6 | Program started at / ended at                                                                        |
|    -5 | 16:58:19 / 17:00:38                                                                                  |
|    -1 | 2007-07-29                                                                                           |
+-------+------------------------------------------------------------------------------------------------------+
8 rows in set (0.00 sec)

+-----------------------------------------------+
| See report file: C:\temp\NMIM.txt for details |
+-----------------------------------------------+
| See report file: C:\temp\NMIM.txt for details |
+-----------------------------------------------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

+-----------------------------------+
| *** End of the DBChecker program. |
+-----------------------------------+
| *** End of the DBChecker program. |
+-----------------------------------+
1 row in set (0.00 sec)

