描述..
TABLE标识符
keyid securityid id identifier
48712205 5033048 158976 001546AL4
TABLE UPDATENAV
Date SecurityId SecurityType EntryPrice Mark CompanyName
2011-08-31 00:00:00.000 5033048 Bond 1.057500 NULL AK Steel Corporation
2011-08-31 00:00:00.000 5049118 Bond 1.091250 NULL Aspect Software, Inc.
现在我已经内部加入获取标识符
ALTER VIEW TempView AS
select UpdateNAV.SecurityId ,identifier , Mark
FROM [mydata].[dbo].[UpdateNAV] inner join dbo.Identifier
on UpdateNAV.SecurityId = Identifier.SecurityId
现在我使用模糊查找来匹配这个..但问题是
在模糊查找列中
右侧是flatfile中的列,左侧是MY TEMP VIEW中只有两列......
现在我匹配flatfile和temp view中的公司ID ...在查找但价格怎么样我可以插入 它如何映射?它不存在于右侧,因为它不存在于MY View
中我应该使用什么
在此之后,我将OLEDB目标用于下面的进一步映射...... 是否有任何需要写更新的查询?或映射会起作用吗?