Use the following SQL statements to create a source table and to populate this table with sample data:
create table FVInputs(
Rate float,
nPeriods int,
Payment float,
PresentValue float,
PaymentType int
)
insert into FVInputs values (.005,10,-200.00,-500.00,1)
insert into FVInputs values (.01,12,-1000.00,0.00,0)
insert into FVInputs values (.11/12,35,-2000.00,0.00,1)
insert into FVInputs values (.005,12,-100.00,-1000.00,1)
Use the following SQL statement to create a target table:
create table FVOutputs(
FVin_ext_proc float,
)
Use the Source Analyzer and the Target Designer to import FVInputs and FVOutputs into the same folder as the one in which you created the COM_BSFV transformation.