Actually I have designed the package to overwrite the excel destination with OLEDB data source. I have 5000 records in my SQL server DB table. First time when the SISS package executed same numbers of records are copied to excel destination. 2nd execution on wards the same 5000 data are copied as new records in the same excel table. For example after 1st time execution the destination has 5000 records, 2nd time 10000, 3rd time 15000 and so on. But my aim is, the excel data should remain 5000 no matter how many times I would execute, until unless I modify the source data count. I use SQL Task to overwrite of the excel data. I used drop statement followed by create statement. Then also I am getting the data repeated in excel after successful execution of package.
Below is the code I have written for dropping and recreating the excel table in SQL task.
DROP TABLE EXLDestination
GO
CREATE TABLE EXLDestination (
`DatabaseLogID` DOUBLE PRECISION,
`PostTime` DATETIME,
`DatabaseUser` NVARCHAR(255)
)