Good day to ALL,
I have already setup a db to my client.
My sp's are all created using CLR.
If my sp's are changed, how do I deploy them back to my client?
I usually send them a backup of the DB during the first few implementation.
But currently, their DB now contains live data, so I can't just let them restore the backup.
Is there another way?
Thanks and more power!
Arthur
If you just changed the code without adding any param on any other object you just need to issue an ALTER ASSEMBLYIf you added some object then you need to
- ALTER ASSEMBLY
- CREATE PROCEDURE or FUNCTION
If your changes are very hard, say you have modified SP params you need to drop all your objects, drop the assembly and recreate all from scartch.
No comments:
Post a Comment