superbun1
superbun1

Reputation: 129

Cannot find the sysmail_mailitems table in SQL Server 2008

Could not find the table sysmail_mailitems in SQL Server 2008 R2.

Can you help me find that table?

Upvotes: 1

Views: 3690

Answers (1)

Aaron Bertrand
Aaron Bertrand

Reputation: 280252

This table is in the msdb database.

SELECT * FROM msdb.dbo.sysmail_mailitems;

Upvotes: 3

Related Questions