Adaptive Server 15.7 SP100 introduces a new option in the sp_depends system procedure to display information about precomputed result sets.
sp_depends precomputed_result_set_name[, column_name]
sp_depends tab1 Things inside the current database that reference the object. Object type -------- ---------------------- dbo.prs1 precomputed result set The specified column (or all columns, if none was specified) in tab1 has no dependencies on other objects, and no other object depends on any columns from it.
sp_depends prs1,c1 Things the object references in the current database. object type updated selected ------------ -------------- ---------- --------- dbo.tab1 user table no no Things inside the current database that reference the object. object type ------------------ -------- dbo.view1 view Dependent objects that reference column c1. Columns referenced in stored procedures, views or triggers are not included in this report. Type Property Object Names or Column Names Also see/Use command ----- ---------- ---------------------------- -------------------- index constraint prs1_10240036482 (c1) sp_helpindex, drop index, sp_helpconstraint, alter table drop constraint