Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 exporting ssytem Exteneded stored procedures

Author  Topic 

stevenandler
Starting Member

42 Posts

Posted - 2012-12-26 : 14:17:19
I am using SQL 2005 on one system and would like to export the System Extended Stored Procedure located in the Master Database and Import them into an SQL 2008 system. Can some please provide a method which will allows me to export the System Extended Stored Procedures?

Thank you very much.

sunitabeck
Master Smack Fu Yak Hacker

5155 Posts

Posted - 2012-12-26 : 15:00:49
List the extended stored procedures using this:
EXEC sp_helpextendedproc
Then find the dll's (that are yours) and install them using the procedure described here: http://msdn.microsoft.com/en-us/library/ms164653.aspx

I have never done this, so please test before you apply this to a server where it can cause damage. Also, Microsoft is planning to remove the feature in a future version, so for new development, use CLR.
Go to Top of Page
   

- Advertisement -