Trustwave and Cybereason Merge to Form Global MDR Powerhouse for Unparalleled Cybersecurity Value. Learn More

Trustwave and Cybereason Merge to Form Global MDR Powerhouse for Unparalleled Cybersecurity Value. Learn More

Services
Managed Detection & Response

Eliminate active threats with 24/7 threat detection, investigation, and response.

Co-Managed SOC (SIEM)

Maximize your SIEM investment, stop alert fatigue, and enhance your team with hybrid security operations support.

Advisory & Diagnostics

Advance your cybersecurity program and get expert guidance where you need it most.

Penetration Testing

Test your physical locations and IT infrastructure to shore up weaknesses before exploitation.

Database Security

Prevent unauthorized access and exceed compliance requirements.

Email Security

Stop email threats others miss and secure your organization against the #1 ransomware attack vector.

Digital Forensics & Incident Response

Prepare for the inevitable with 24/7 global breach response in-region and available on-site.

Firewall & Technology Management

Mitigate risk of a cyberattack with 24/7 incident and health monitoring and the latest threat intelligence.

Solutions
BY TOPIC
Microsoft Security
Unlock the full power of Microsoft Security
Offensive Security
Solutions to maximize your security ROI
Rapidly Secure New Environments
Security for rapid response situations
Securing the Cloud
Safely navigate and stay protected
Securing the IoT Landscape
Test, monitor and secure network objects
Why Trustwave
About Us
Awards and Accolades
Trustwave SpiderLabs Team
Trustwave Fusion Security Operations Platform
Trustwave Security Colony
Partners
Technology Alliance Partners
Key alliances who align and support our ecosystem of security offerings
Trustwave PartnerOne Program
Join forces with Trustwave to protect against the most advance cybersecurity threats
Loading...
Loading...

PRB: Mail Digests not sent after SQL Server names have been changed

Expand / Collapse


This article applies to:

  • Trustwave MailMarshal (SEG)
  • Trustwave ECM/MailMarshal Exchange 7.X

Symptoms:

  • Mail digests not sent
  • Errors in MailMarshal Array Manager logs:
    • DigestThread: database error: Delete record error: 0x80004005 - Transaction context in use by another session
    • Could not find server '<MM_SQLServerName>' in sys.servers.
    • DigestThread: database error: Unable to locate record on database
    • DigestThread: database error: Record being deleted does not exist on the database

Causes:

This issue can happen if the name of the SQL Server computer hosting the MailMarshal database has been changed after product installation, but the SQL Server installation name has not been updated.

This can be verified by running the following SQL script:

use master;
go
exec sp_helpserver

This displays a list of the server names stored in the master SQL tables. You will find a entry in this table with the old name of the host server.

Resolution:

To resolve this issue, complete the following steps:

  1. On the SQL Server (or Instance) hosting the MailMarshal database, run sp_addserver to add the correct name:
    use master;
    go
    exec sp_addserver @server='<MM_SQLServerName>',@local='LOCAL'
    go
  2. Remove the old server:
    use master;
    go 
    exec sp_dropserver '<Old_MM_SQLServerName>'
    go
  3. Verify that the server information is correct by running the following command:
    sp_helpserver
    go
  4. On the MailMarshal database, remove all the old digest entries from the tables: (note, this will not delete your digests - MailMarshal will recreate the entries in this table)
    delete from [digest];
    go
    delete from [digestmember]
    go
  5. Restart the SQL Server Service and MailMarshal Array Manager Services

Repeat these steps for each MailMarshal database and SQL server.


To contact Trustwave about this article or to request support:


Rate this Article:
     
Tags:

Add Your Comments


Comment submission is disabled for anonymous users.
Please send feedback to Trustwave Technical Support or the Webmaster
.