Вопрос

My program will read the data from the CSV file and insert each and every record into the data base. But the problem is, if there are 200 records, while retrieving it, it is showing 212 records containing some of the duplicate records. How to solve this?

Это было полезно?

Решение

Add a primary key to you table to ensure no duplicate records can be inserted. Else you can also go for Merge statement to avoid duplicates.

Example for Merge:

http://www.oracle-base.com/articles/9i/merge-statement.php

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top