sql server - To Get Trigger script source from VB6? -


i want trigger script source vb6. database using sql server2000. have trigger in table. want trigger script @ run time vb6. possible? if yes please can me. advance in thanks

you can triggers on table (or view) this

select name sysobjects parent_obj = object_id('mytablename') , xtype = 'tr' 

than can source t-sql of trigger (or stored procedure) using this

exec sp_helptext 'mytriggername' 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -