I have a text file sitting on client machine and want to move it to the database server (MS SQL 2008) but I don’t have any access to the server except through the SQL Server client. Can I transfer this file to the server using SQL client connection?
Share
Yes you can do it but not through standard SQL. You will have to write an extended stored procedure that will alow you to connect through sql client connection and to access server file system. But you will have to address a lot of user privileges issues.