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.
| 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 serverusing vb.netpriyank |
|
|
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. |
 |
|
|
|
|
|