views:

114

answers:

1

Is there a way to write to MSMQ from T-SQL and/or Stored procedure? I am using SQL Server 2000.

+3  A: 

Using the OLE Automation procedures: sp_OACreate and sp_OAMethod.
See Posting Message to MSMQ from SQL Server.

Remus Rusanu