Layton ServiceDesk - Troubleshooting - Incoming Email Overload

From Layton Support
(Difference between revisions)
Jump to: navigation, search
m (Minor text changes)
Line 3: Line 3:
 
If you have an overload of incoming emails (e.g. a mail server suddenly sends out a torrent of mail), you can quickly eliminate all email with this SQL query:
 
If you have an overload of incoming emails (e.g. a mail server suddenly sends out a torrent of mail), you can quickly eliminate all email with this SQL query:
  
     TRUNCATE TABLE [LaytonServiceDesk].[dbo].[mailin]
+
     TRUNCATE TABLE [LaytonServiceDesk].[dbo].[mailin]
  
 
You can more selectively remove emails if there is a common element you can use, in this case, a string in the subject line:
 
You can more selectively remove emails if there is a common element you can use, in this case, a string in the subject line:
  
     DELETE FROM [LaytonServiceDesk].[dbo].[mailin]
+
     DELETE FROM [LaytonServiceDesk].[dbo].[mailin]
 
      
 
      
     WHERE sys_mail_subject LIKE '%Alert%'
+
     WHERE       sys_mail_subject LIKE '%Alert%'
  
 
<p align="right">[[File:btn_back_up.png|link=User Guide for Layton ServiceDesk]] [[User Guide for Layton ServiceDesk|<u>Back to Contents</u>]]</p>
 
<p align="right">[[File:btn_back_up.png|link=User Guide for Layton ServiceDesk]] [[User Guide for Layton ServiceDesk|<u>Back to Contents</u>]]</p>

Revision as of 23:40, 31 January 2017

Btn back up.png Back to Contents

Bulk Delete

If you have an overload of incoming emails (e.g. a mail server suddenly sends out a torrent of mail), you can quickly eliminate all email with this SQL query:

   TRUNCATE TABLE  [LaytonServiceDesk].[dbo].[mailin]

You can more selectively remove emails if there is a common element you can use, in this case, a string in the subject line:

   DELETE FROM  [LaytonServiceDesk].[dbo].[mailin]
   
   WHERE        sys_mail_subject LIKE '%Alert%'

Btn back up.png Back to Contents

Personal tools
Namespaces

Variants
Actions
Main Page
Online User Guides
General Support
Release Notes
Toolbox