April 16, 2008 at 1:59 am
I have a database been mirrored from another server. I am creating a database snapshot from this mirrored db. Trustworthy property is 0 in my mirrored DB. But when I am creating a snapshot of the mirrored DB,
Trustworthy property is having a value of 1.
I need to have the trustworthy property of snapshot db to be same as mirror db (which should be 0).
Please suggest some ways.
Thanks,
Kishore.
April 16, 2008 at 8:45 am
BOL shows you the syntax for SQL2005, SQL2008
http://msdn2.microsoft.com/en-us/library/ms174269.aspx
http://msdn2.microsoft.com/en-us/library/bb522682(SQL.100).aspx
so you should try command like
ALTER mydbcopy TRUSTWORTHY OFF
new db gets cloned from model so you should change model to have appropriate parameters
- and get rid of the irritating autogrow data=+1MB unlimited, tlog=+10% 2TB max !
HTH
Dick
April 16, 2008 at 9:51 am
SQL does not allow to use "Alter database" on a snapshot db.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply