November 13, 2019 at 1:16 pm
I need to find when the availabilty is created in always on
is any query is there to find out this ?
November 13, 2019 at 1:48 pm
i poked around the metadata with this query, and looked at views that seemed interesting:
SELECT * FROM sys.all_objects WHERE type='V' AND name LIKE '%avail%' OR name LIKE '%hadr%'
this seems to have a create_date and a modify_date that might be what you are after:
SELECT create_date,modify_date ,* FROM sys.availability_replicas
Lowell
November 13, 2019 at 2:10 pm
Thanks
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply