Hi All - I'm currently using SSMS 2008 and logged into another server; using the OPENROWSET command to pull data.It works fine when the file saved to the server's local hard drive:SELECT * FROM OPENROWSET ('MSDASQL','Driver={Microsoft Text Driver (*.txt; *.csv)};', 'SELECT * from G:\temp\AUDIT.CSV') However, when I try and have it pull the exact same file from a shared folder on my workstation, it can't pull it.SELECT * FROM OPENROWSET ('MSDASQL','Driver={Microsoft Text Driver (*.txt; *.csv)};', 'SELECT * from \\DESKTOP1549\AUDIT.CSV') I'm assuming this has to do with server permissions, and might be more of a complex issue. I figure I'll try here, and see if any bright minds can help me, Thanks!