Tagged Questions
4
votes
5answers
3k views
Alter SQL Function Referenced by Computed Column
If you set up a table's column to be a computed column whose Formula calls a Function, it becomes a pain to change that underlying Function. With every change, you have to find every single column ...
2
votes
2answers
202 views
Get SQL Computed Column Inserted Value
My Table Structure as follow,
CREATE TABLE tbl_Info
(
[SSEID] BIGINT NOT NULL IDENTITY(1,1),
[ShortenKey] AS ConvertToBase([SSEID]),
[Title] ...