An error has occurred in the TNG software. What to do:
If you just installed an upgrade, you might have skipped part of the installation instructions. Go back to the upgrade readme page reread the instructions. Pay special attention to the database structure step.
If you just installed TNG for the first time, you might still need to create the database tables. Return to the readme.html page to find that step.
If you are the site owner, you may contact TNG support for further assistance with this problem. Please copy the query below and paste it into your message.
Query: (
SELECT
a.gedcom, a.familyID, husband, wife,
c.personID, c.firstname, c.lastname, c.sex,
IF(c.birthdatetr!='0000-00-00', YEAR(c.birthdatetr), YEAR(c.altbirthdatetr)) AS birth,
IF(c.deathdatetr!='0000-00-00', YEAR(c.deathdatetr), YEAR(c.burialdatetr)) AS death,
a.marrdate,
c.birthdate, c.birthdatetr, c.altbirthdate, c.altbirthdatetr,
c.deathdate, c.deathdatetr, c.living, c.private, c.branch, c.gedcom,
c.nameorder, c.lnprefix, c.title, c.prefix, c.suffix,
0 AS ordernum, -- husband is first
a.living AS fliving,
a.private AS fprivate,
a.branch AS fbranch
FROM tng_families a
JOIN tng_people c
ON c.personID = a.husband AND c.gedcom = a.gedcom
WHERE a.familyID = 'F228' AND a.gedcom = 'FamilyTree1'
)
UNION ALL
(
SELECT
a.gedcom, a.familyID, husband, wife,
c.personID, c.firstname, c.lastname, c.sex,
IF(c.birthdatetr!='0000-00-00', YEAR(c.birthdatetr), YEAR(c.altbirthdatetr)) AS birth,
IF(c.deathdatetr!='0000-00-00', YEAR(c.deathdatetr), YEAR(c.burialdatetr)) AS death,
a.marrdate,
c.birthdate, c.birthdatetr, c.altbirthdate, c.altbirthdatetr,
c.deathdate, c.deathdatetr, c.living, c.private, c.branch, c.gedcom,
c.nameorder, c.lnprefix, c.title, c.prefix, c.suffix,
1 AS ordernum, -- wife is second
a.living AS fliving,
a.private AS fprivate,
a.branch AS fbranch
FROM tng_families a
JOIN tng_people c
ON c.personID = a.wife AND c.gedcom = a.gedcom
WHERE a.familyID = 'F228' AND a.gedcom = 'FamilyTree1'
)
UNION ALL
(
SELECT
a.gedcom, a.familyID, husband, wife,
c.personID, c.firstname, c.lastname, c.sex,
IF(c.birthdatetr!='0000-00-00', YEAR(c.birthdatetr), YEAR(c.altbirthdatetr)) AS birth,
IF(c.deathdatetr!='0000-00-00', YEAR(c.deathdatetr), YEAR(c.burialdatetr)) AS death,
a.marrdate,
c.birthdate, c.birthdatetr, c.altbirthdate, c.altbirthdatetr,
c.deathdate, c.deathdatetr, c.living, c.private, c.branch, c.gedcom,
c.nameorder, c.lnprefix, c.title, c.prefix, c.suffix,
b.ordernum,
a.living AS fliving,
a.private AS fprivate,
a.branch AS fbranch
FROM tng_families a
JOIN tng_children b
ON b.familyID = a.familyID AND b.gedcom = a.gedcom
JOIN tng_people c
ON c.personID = b.personID AND c.gedcom = a.gedcom
WHERE a.familyID = 'F228' AND a.gedcom = 'FamilyTree1'
)
ORDER BY ordernum
Disk got full writing '.(temporary)' (Errcode: 28 "No space left on device")