我正在创建一个电子邮件队列来处理电子邮件发送。从该队列中,我获取 X 条记录并根据记录的类型字段发送电子邮件。
为此,我在存储过程中声明了一个表。当获取 X 条记录时,我将 EmailQ 表中的记录状态设置为正在处理。但是在发送X 条记录后,现在声明的表内必须被删除。
为此,我可以使用 Delete 但有这个TRUNCATE 可以删除表中的所有记录。但是声明的表还没有标识为表。
WHILE EXISTS ( SELECT * FROM emailQ WHERE Status != 3)
BEGIN
CREATE PROCEDURE [dbo].[SendMails]
DECLARE @Temp TABLE (......)
--Declare all the necessary variables
INSERT INTO @Temp SELECT TOP 10
WITH (UPDLOCK, HOLDLOCK)
--Update the email queue table status of selected set of records in to the @Temp
DECLARE dataSet CURSOR FORWARD_ONLY FOR (SELECT....... FROM @Temp)
OPEN dataSet
FETCH NEXT FROM dataSet INTO...
WHILE @@FETCH_STATUS = 0
BEGIN
--send mails acordingly
END
CLOSE dataSet
DEALLOCATE dataSet
--Update the email queue table status of completed set of records in to the @Temp
WAITFOR DELAY...
TRUNCATE @Temp// This is where this Temp table is not identified as a table(It says "Incorrect sintax... Expecting a table")
END
从这个声明的表中删除记录的最合适的方法是什么。我也很欣赏关于我处理邮件发送方式的评论。
谢谢。