I need to update a DTS package. One of the processes that it uses is deleting all of the data from a table. I have copied this from the production server onto a test server.
I can not get the process of deleting the data to work. The DTS uses the following statement:
truncate table [dbo].[tblCaseInfoAll]
If I run this on the test server I get a message that the user does not have permission to perform this action...or something like that. However, I can execute the following:
delete tblCaseInfoAll
and this works. I have checked the permissions of the user and they look good to me.
What am I missing?
Thanks,
enak
I can not get the process of deleting the data to work. The DTS uses the following statement:
truncate table [dbo].[tblCaseInfoAll]
If I run this on the test server I get a message that the user does not have permission to perform this action...or something like that. However, I can execute the following:
delete tblCaseInfoAll
and this works. I have checked the permissions of the user and they look good to me.
What am I missing?
Thanks,
enak