Hi,
Something like this should do it:
INSERT INTO [dbo].[mp_LetterSubscribe]
(
[SiteGuid],
[LetterInfoGuid],
[UserGuid],
[Email],
[IsVerified],
[VerifyGuid],
[BeginUtc],
[UseHtml],
IpAddress
)
SELECT DISTINCT
li.SiteGuid,
li.LetterInfoGuid,
u.UserGuid,
u.Email,
1,
'00000000-0000-0000-0000-000000000000',
GetUtcDate(),
1,
''
FROM
mp_LetterInfo li
CROSS JOIN
mp_Users u
WHERE
u.UserGuid NOT IN (SELECT ls.UserGuid FROM mp_LetterSubscribe ls WHERE ls.LetterInfoGuid = li.LetterInfoGuid)
ORDER BY u.Email
Also, if it would help I can put up an interim build on our Novell Forge download page that includes the fix for this. Just let me know.
Best,
Joe