Cannot create an instance of OLE DB provider Microsoft.Jet.OLEDB.4.0 for linked server null

前端 未结 4 1186
有刺的猬
有刺的猬 2020-11-29 01:44

I am trying to export from my Table data into Excel through T-SQL query. After little research I came up with this

IN         


        
4条回答
  •  抹茶落季
    2020-11-29 02:02

    Please Execute the below queries to fix this problem:

    EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.Jet.OLEDB.4.0', N'AllowInProcess', 1
    GO 
    EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.Jet.OLEDB.4.0', N'DynamicParameters', 1
    GO 
    

提交回复
热议问题