21 lines
391 B
SQL
21 lines
391 B
SQL
-- Customer specific once-script ARAI.
|
|
--
|
|
-- (c) 2011 SG|facilitor bv
|
|
-- $Revision$
|
|
-- $Id$
|
|
--
|
|
-- Support: +31 53 4800700
|
|
|
|
SET ECHO ON
|
|
SPOOL VGLD25696.lst
|
|
SET DEFINE OFF
|
|
|
|
update fac_import_app
|
|
set fac_import_app_folder = 'd:\Apps\Facilitor\ftp_sites\LocalUser\VGLDFtp\PRS' ,
|
|
fac_import_app_files = 'ADexport*.csv'
|
|
where fac_import_app_key = 41;
|
|
|
|
commit;
|
|
|
|
SPOOL OFF
|