A family of Microsoft relational database management systems designed for ease of use.
The table that you are trying to import your data into has established integrity rules and possibly relationships to other tables that your data seems to violate. You will need to determine what fields have unique indexes established, required data established, etc., and look over the incoming data to see what may be in violation.
What you can do is import your data into a new table first. Then you can create queries to review your data for issues including duplicate values, duplicate records, null values, and/or mixed data types or incorrect data types.
As you correct your issues, you can try to append the data from your new table to the target table. If you continue to get errors, go back and continue breaking down and correcting the issues one at a time.