sp_addlinkedserver procedure not linking Excel source
        Posted  
        
            by brohjoe
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by brohjoe
        
        
        
        Published on 2010-04-07T10:29:17Z
        Indexed on 
            2010/04/07
            10:33 UTC
        
        
        Read the original article
        Hit count: 407
        
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?
© Stack Overflow or respective owner