+2  A: 

In SSMS:

Right click over the database, Properties, Options last record under Miscellaneous

In T-SQL:

select is_trustworthy_on from sys.databases  where name = 'dbname'
Vinko Vrsalovic
Perfect: Thank-you
A: 

I'm sorry my question was imprecise. It should have been: Can anyone supply a T-SQL query I can make to tell whether a database has the TRUSTWORTHY property set on or off?