Computed column attributes are available at sys.computed_columns.
select * from sys.computed_columns where is_persisted = 1
is_persisted = 1 for the saved column, 0 otherwise.
You can link this back to sys.tables via object_id, for example.
select t.name, c.name from sys.tables t inner join sys.computed_columns c on c.object_id = t.object_id where c.is_persisted = 1
And change the where clause to include the table / field name according to your scenario.
source share