sp_addlinkedserver procedure not linking Excel source
- by brohjoe
I am attempting to link an Excel source to a SQL Server DB on the Go Daddy website.  When I execute the sp in SQL Server, it shows it executed successfully, but no data is linked.
This is the main part of my procedure:
     EXEC sp_addlinkedserver
     @server = 'XLHybrid',
     @provider = 'Microsoft.ACE.OLEDB.12.0',
     @srvproduct = 'Excel',
     @provstr = 'Excel 12.0 Macro',
     @datasrc = 'C:\Database\XLHybrid.xlsm'  
What's the problem here?