Example of a transfer RPC event

The following example shows a stored procedure that initiates a bulk copy transfer statement. The access service executes the transfer statement against Informix, which receives it as an RPC.

create procedure replauth as
 begin
 execute servername. . .transfer
 “to ‘servername2 userid password’;”,
 “with replace into authors;”,
 “select * from authors;”
 end

where: