It's not only possible; it's likely. This is not to say you can't set these things up in the data import, but you have to take extra steps to do so. When you import data all you get by default is the data, anything else you need like constraints, primary keys, indexes etc, you would have to set up in the import or beforehand in the SQL table you are importing to. The reason for this is that often the data being imported will not use the same constraints as the original data. Sometimes this is because the data is intended to be read-only - there will be no data entry except from the imports, so no need for the constraints. Also the data is often used differntly in a different system, so the existing constraints may or may not be what you want. So it is up to whoever designs the DTS package to specify what is needed in the import.