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
 SQL Server 2005 Forums
 Transact-SQL (2005)
 Database compare

Author  Topic 

priyanka.pattanaik
Starting Member

1 Post

Posted - 2009-02-27 : 09:34:34
How to compare two stored procedures or two triggers in sql server
using vb.net

priyank

sunitabeck
Master Smack Fu Yak Hacker

5155 Posts

Posted - 2009-03-01 : 07:09:44
You can get the code for a stored procedure or trigger using the sp_helptext system stored procedure and then do the comparisons within your VB code. Example:
exec sp_helptext YourStoredProc1
This will return you the code for the stored procedure named YourStoredProc1.
Go to Top of Page
   

- Advertisement -