Thanks but I was able to sort out the error. I was getting the error below:
Cannot truncate table because it is published for replication or enabled for Change Data Capture.
I then executed:
EXECUTE sys.sp_cdc_disable_table
@source_schema = N'dbo',
@source_name = N'myTableName',
@capture_instance = N'dbo_myTableName';
Thanks again