Viewing 5 posts - 121 through 125 (of 125 total)
What kind of network library enabled on your SQL server?.
Thanks,
Sreeni.
October 13, 2003 at 3:07 pm
Try This .............
Conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strWebFilePath & ";Extended Properties="""";Excel 8.0;HDR=Yes;"
Conn.Mode = adModeReadWrite
Conn.Open
October 13, 2003 at 11:00 am
Try this..
CREATE TABLE #file (line varchar(255) null)
INSERT #file EXEC master..xp_cmdshell 'Type D:\temp.html'
SELECT * FROM #file
DROP TABLE #file
October 13, 2003 at 10:33 am
Jonathan,
Thanks, it worked for me. But is it compatable for all versions?.
October 10, 2003 at 7:56 am
Viewing 5 posts - 121 through 125 (of 125 total)