October 25, 2012 at 8:19 am
Ok, so I am a little late ...
Migrating a db server from MS SQL Server 2000 to 2005.
In SQL 2000 editing a storedproc was easy. Properties ... edit away and save it.
How the **** does one edit an SP under 2005? Am I blind?
Robert
October 25, 2012 at 8:32 am
britinusa (10/25/2012)
Ok, so I am a little late ...Migrating a db server from MS SQL Server 2000 to 2005.
In SQL 2000 editing a storedproc was easy. Properties ... edit away and save it.
How the **** does one edit an SP under 2005? Am I blind?
Robert
In the GUI: -
Right click then "Modify".
Or
Right click, then script stored procedure as, then alter, then to new query window.
October 25, 2012 at 8:35 am
Did Google this first and it seems some SQL 2005 do not have the Design option.
So one literally has to run an ALTER rather than in 2000 where it was implicit.
October 25, 2012 at 8:56 am
britinusa (10/25/2012)
Did Google this first and it seems some SQL 2005 do not have the Design option.So one literally has to run an ALTER rather than in 2000 where it was implicit.
yeah that's an important change from 2000; you may remember, it was possible to change the body or a proc/function/view, but then not apply the change by running it...so the saved script was not the same as the compiled version.
forcing you to ALTER or DROP/CREATE prevents that from happening anymore.
Lowell
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply