Change Ancestry source publish location from Provo to Lehi
Quote from thejerrybryan on 2026-02-13, 12:29 pmI assume you just changed Comments to ActualText in the script and that it worked ok??
I assume you just changed Comments to ActualText in the script and that it worked ok??
Quote from Jaime Teas on 2026-02-13, 12:58 pmI tried that (see below) but it did not work. I got an error saying "no such column: Text"
UPDATE SourceTable
SET Text = ''WHERE SourceTable.SourceID IN
(
SELECT S.SourceID
FROM SourceTable AS S
JOIN SourceTemplateTable AS ST ON ST.TemplateID = S.TemplateID
WHERE ST.Name GLOB 'Ancestry Record'
AND S.Text != ''
)
I tried that (see below) but it did not work. I got an error saying "no such column: Text"
UPDATE SourceTable
SET Text = ''
WHERE SourceTable.SourceID IN
(
SELECT S.SourceID
FROM SourceTable AS S
JOIN SourceTemplateTable AS ST ON ST.TemplateID = S.TemplateID
WHERE ST.Name GLOB 'Ancestry Record'
AND S.Text != ''
)
Quote from Jaime Teas on 2026-02-13, 1:04 pmAhhhhh .... I'm getting smarter ........... I looked at the Source Table and figured this out. It worked!
UPDATE SourceTable
SET ActualText = ''WHERE SourceTable.SourceID IN
(
SELECT S.SourceID
FROM SourceTable AS S
JOIN SourceTemplateTable AS ST ON ST.TemplateID = S.TemplateID
WHERE ST.Name GLOB 'Ancestry Record (cleaned)'
AND S.ActualText != ''
)
Ahhhhh .... I'm getting smarter ........... I looked at the Source Table and figured this out. It worked!
UPDATE SourceTable
SET ActualText = ''
WHERE SourceTable.SourceID IN
(
SELECT S.SourceID
FROM SourceTable AS S
JOIN SourceTemplateTable AS ST ON ST.TemplateID = S.TemplateID
WHERE ST.Name GLOB 'Ancestry Record (cleaned)'
AND S.ActualText != ''
)