Get OLE Providers info I have found this useful in tracking down application driver/connection issues. I only had to use it 2 times. But it did help
2001-08-22
729 reads
Get OLE Providers info I have found this useful in tracking down application driver/connection issues. I only had to use it 2 times. But it did help
DROP PROCEDURE hx_OLEDBproviders go /* Robert Vallee 01/15/2001 rvallee@hybridx.com input:None output:Table format Desc:Get OLE Providers info I have found this useful in tracking down application driver/connection issues. I only had to use it 2 times. But it did help. Warnings: None. */ CREATE PROCEDURE hx_OLEDBproviders AS set nocount on exec master..xp_enum_oledb_providers GO