SQL 更改函数后服务器刷新依赖项

SQL Server Refresh Dependencies after Alter Function

根据 ALTER FUNCTION reference:

Alters an existing Transact-SQL or CLR function that was previously created by executing the CREATE FUNCTION statement, without changing permissions and without affecting any dependent functions, stored procedures, or triggers.

我正在尝试重命名列,因此我找到了它的依赖项 (UDF) 并将 UDF 更改为不再依赖于该列。

SQL但是Server 2008没有刷新依赖所以我还是不能重命名列。

有什么想法吗? TIA!

显然问题是因为这是一个计算列,当我 运行 它作为查询(而不是通过 GUI)时,我得到以下信息:

Cannot alter column because it is 'COMPUTED'.

我放弃了它并用相同的公式和不同的名称创建了一个新的。