我敲诈勒索的数据作为csv文件的形式,然后我试图将此csv文件导入filemaker。但是我只想导入那些在filemaker数据库中不可用的记录。
发布于 2013-10-11 23:34:32
不存在仅直接导入新记录的方法。不过,这里有一个可能的变通方法。我假设目标是导入到当前表final destination table中
temporary import表。temporary import表和final destination table之间的关系。通常,您需要基于csv文件中的唯一键以及final destination table.temporary import表的布局,该表具有来自final destination table:final destination table::unique key的相关索引。(如果您正在编写脚本以自动执行此过程,则无需将csv文件done.)temporary import表。temporary import表的布局上输入Find Mode,在final destination table::unique key字段中输入*,将记录设置为省略,然后执行查找。temporary import表中导入。这应该就行了。这里提供了一些额外的讨论:http://www.filemakertoday.com/com/showthread.php/29550-Importing-only-new-records
https://stackoverflow.com/questions/19289858
复制相似问题