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 whose Formula that references the Function, remove the reference, save the Table, alter the Function, add everything back, and save again. Even small changes are nightmares.

Can you tell SQL Server that you don't care that the Function is being referenced by Formulas and to just go ahead and change the underlying Function?

Additional Details: The computed column is not persisted or referenced by a FK constraint because it is non-deterministic. The function takes into consideration the current time. It's dealing with the question of whether a record is expired or not.

link|improve this question

77% accept rate
I agree this is a BIG pain! Feeling it right now! – Craig Shearer Nov 26 '09 at 21:29
feedback

5 Answers

up vote 3 down vote accepted

No, as far as I know, you cannot do this - you'll have to first remove all computed columns referencing a function, alter the function, and then recreate the computed columns.

Maybe MS will give us a "CREATE OR ALTER FUNCTION" command in SQL Server 2010/2011? :-)

Marc

link|improve this answer
Well, I suppose you just can't do this. And that's what you said and you said it first. – colithium Feb 17 '09 at 21:23
feedback

The consequences of the ALTER could be huge.

Have you indexed the columns? Used it in a view with schemabinding? Persisted it? Foreign key relationship to it?

What if the ALTER changes the datatype, NULLability or determinism?

It's easier to stop ALTER FUNCTION with dependencies than deal with so many scenarios.

link|improve this answer
The function is time dependent and can't be persisted. For that same reason it can't have a FK constraint (even though the column ALWAYS happens to be a valid value referencing another table's PK). – colithium Feb 16 '09 at 3:57
This is your function, not the general case. What's better: consistently disallow ALTER FUNCTION with dependencies or allow it pretty much randomly? – gbn Feb 16 '09 at 5:46
My function is not anything special, it's behavior comes from it being non-deterministic. I clarified that in my question with an edit. There should be no ill-effects caused by changing out non-deterministic functions. But is it possible? – colithium Feb 16 '09 at 6:49
Unfortunately, no. – gbn Feb 16 '09 at 7:49
feedback

You could try with some good schema compare tool, that create the script for you :)

link|improve this answer
I have SQL Compare 8 and damn if I can find a menu command to do this... – jcollum Dec 31 '09 at 2:34
feedback

You could change the column to be not-computed, and update it by TRIGGER.

Or you could rename the table to something else, drop the computed column, and create a VIEW in place of the original table (i.e. with the original table name) and including the "computed" column you need.

EDIT: note that this may mess with your INSERTs into the original table name (now a VIEW). Obviously you could keep the old table, drop the computed column, and create a separate VIEW that contained the computed column.

We've had to work around Computed Columns enough times to have decided they are more trouble than they gain. Fail-saf inserts(1), trying to insert into VIEWs onto tables with computed columns, things that require messing with SET ARITHABORT and so on.

(1) We have fail-safe inserts like:

INSERT INTO MyTable SELECT * FROM MyOtherTable WHERE ...

which are designed to fail if a new column is added one table and not the other. With Computed Column we have to explicitly name all columns, which loses us that safety net.

link|improve this answer
That's the thing, the value of the computed column is non-deterministic. Meaning if you ask it what it is it could say one thing and then one second later with absolutely no data changes, it could say something different. Triggers won't work here. – colithium Feb 16 '09 at 7:45
I did read that said is was non-deterministic, my mind then wandered off! Sorry about that. – Kristen Feb 16 '09 at 9:56
feedback

Assume table T1 with columns C1, C2, C3, C4, C5 where C4 is a computed column

Also assume the the C4 references function OldFunc which you want to be replaced by NewFunc

First, Move non-computed columns from all rows to a temp table

Select C1, C2, C3, C5 into TmpT1 from T1
Go

Next, Delete all rows from T1

Delete From T1
go

Now You can Modify column C4

Alter table T1 alter column C4 as dbo.NewFunc()
Go

Now put the saved data back into the original table

Insert Into T1 (C1,C2,C3,C5) select C1,C2,C3,C5 from TmpT1

Now Delete The Temp Table

Drop Table TmpT1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.