using the following text to open copies of .dbf files located on the server:
select distinct * from openrowset('Microsoft.Jet.OLEDB.4.0','DBASE III;database=" & serverdb3directory & "','select fld1, fld2 from db3table') "
however, now when i want to use the "live" versions of the .dbf files on the server the above statement bombs. i assume it is due to the statement wanting to open the dbase files exclusively.
anybody know the parameter to put in the openrowset to allow the statement to succeed, i.e. open dbase file as read only?
thanks for your time. (server is winnt4)
select distinct * from openrowset('Microsoft.Jet.OLEDB.4.0','DBASE III;database=" & serverdb3directory & "','select fld1, fld2 from db3table') "
however, now when i want to use the "live" versions of the .dbf files on the server the above statement bombs. i assume it is due to the statement wanting to open the dbase files exclusively.
anybody know the parameter to put in the openrowset to allow the statement to succeed, i.e. open dbase file as read only?
thanks for your time. (server is winnt4)