when I use sql command like
SELECT * INTO [WBO_ACF] FROM OPENQUERY(WBO_EUR_LS, 'SELECT *,recno() as sowid FROM [EUR2006_ACF]')it generate tmp file in e:\mytest\eur2006\
with sql express no
Could we redirect the temporary files to another temp directory ?
if I use a connection with other server like
EXEC master.dbo.sp_addlinkedserver @server = N'WBO_EUR_LS', @srvproduct=N'TESTFromFoxPro', @provider=N'VFPOLEDB', @datasrc=N'\\192.168.8.169\mytest\eur2006\'
take a lot of time for synchronisation theu the network
the link server has been created with
GO
/****** Object: LinkedServer [WBO_EUR_LS] Script Date: 09-04-20 09:11:21 ******/
EXEC master.dbo.sp_addlinkedserver @server = N'WBO_EUR_LS', @srvproduct=N'TESTFromFoxPro', @provider=N'VFPOLEDB', @datasrc=N'e:\mytest\eur2006\'
/* For security reasons the linked server remote logins password is changed with ######## */
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'WBO_EUR_LS',@useself=N'True',@locallogin=NULL,@rmtuser=NULL,@rmtpassword=NULL
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'collation compatible', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'data access', @optvalue=N'true'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'dist', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'pub', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'rpc', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'rpc out', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'sub', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'connect timeout', @optvalue=N'0'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'collation name', @optvalue=null
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'lazy schema validation', @optvalue=N'false'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'query timeout', @optvalue=N'0'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'use remote collation', @optvalue=N'true'
GO
EXEC master.dbo.sp_serveroption @server=N'WBO_EUR_LS', @optname=N'remote proc transaction promotion', @optvalue=N'true'
GO