Temat: problem z funkcja, przekazanie ścieżki do pliku jako argument
dlaczego jak próbuję stworzyć taką funkcję:
create or replace function funkcja() returns void as
$$
create temporary table tymczasowa (
trader_id character(8),
full_date character(17),
order_nbr integer,
symbol character(4),
order_action character(1),
share_price numeric(8,4),
fill_amount smallint,
gateway character(4),
order_price numeric(10,6),
currency_code character(3),
per_share_pl numeric(4,4),
liquidity_flag character(1),
billable_flag character(1),
gross_pl numeric(7,4),
exe_fee numeric(4,4),
clr_fee numeric(4,4),
gateway_charge numeric(11,8),
act_fee numeric(4,4),
sec_fee numeric(6,4),
net_pl numeric(8,4),
event_date character(8),
time time without time zone );
delete from baza;
copy tymczasowa from 'd:/baza testowa.csv' csv quote '"';
insert into baza
select trader_id, to_timestamp(full_date, 'YYYYMMDDHH24MISSMS'),
order_nbr, symbol, order_action, share_price, fill_amount,
gateway, order_price, currency_code, per_share_pl, liquidity_flag,
billable_flag, gross_pl, exe_fee, clr_fee, gateway_charge, act_fee,
sec_fee, net_pl, to_date(event_date, 'MMDDYYYY'), time
from tymczasowa;
$$
language 'sql';
pojawia się komunikat:
ERROR: relation "tymczasowa" does not exist
LINE 37: from tymczasowa;
oraz jak przekazywać ścieżkę do pliku jako argument funkcji?