App User Notification Details-Table
App User Notification Details-Table
----------------------------------------------------------------------------------
--Create Table in Notification Database
----------------------------------------------------------------------------------
insert into
Temp_app_user_notification_details(jobId,AppUserNotifyId,NotificationDate)
SELECT 83,AppUserNotifyId,NotificationDate FROM app_user_notification_details where
select count(1)
from app_user_notification_details
where AppUserNotifyId in (select AppUserNotifyId from
Temp_app_user_notification_details
where jobId = 83)
----------------------------------------------------------------------------------
--Rebuild Record in Notification Database
----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
----------------