Hello @all,
I have tried to import data via mydbr with the following code:
CREATE PROCEDURE sp_DBR_IMPORT_xxx_Stores
()
BEGIN
select 'dbr.import', 'sp_DBR_IMPORT_xxx_STORES_DO';
END
CREATE PROCEDURE sp_DBR_IMPORT_xxx_STORES_DO
(inName varchar(30),incode varchar(30))
begin
insert into xxx_prod.import_divisions (name, devisioncode) values (inName, incode)
end
When I use the sp_DBR_IMPORT_xxx_STORES_DO
import function with some values, it works. I can run the sp_DBR_IMPORT_xxx_Stores
report, I can seletc a file (which is a tab seperated file) but then I see only a progress bar which runs (and no data are imported). The php import script gives a code 200 back.
Is there anybody who has an idea what is wrong?
Thanks in advance
Peter