SSIS 数据验证和数据加载
我需要从下面列出的选项中获得有关最佳方法的建议。我需要验证Excel文件数据并将其加载到SQL Server
验证包括
- 非重复列
- 强制字段存在
- 数据库中不存在的字段
如果发生错误我会在数据库中的错误日志表中写入
以下是我的方法
- 将数据加载到临时表中数据库
- 运行验证
- 记录错误
- 成功将其加载到主表
如果您对此场景有任何其他更好的想法请告诉我
I need suggestion on best approach from below listed options. I need to validate excel file data and load it to SQL Server
Validations include
- Non Duplicate columns
- Mandatoty fields present
- Fields not present in Database
In case of error I would write in errorlog table in database
Below is my approach
- Load the Data into a Temp Table in Database
- Run the Validations
- Log the Error
- On success load it to main tables
Please let me know if you have any other better ideas for this scenario
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
直接进入主表。
(如果excel很大的话可以使用批量插入任务而不是处理RBAR)
2. Using TSQL
directly into main table.
(use can use bulk insert task if the excel is really large instead of dealing RBAR)
2. Using TSQL