Hello @Pavankumar-3526 :
I think I have a repro and this only happens when you have AutoCreate table option is set in the copy activity.
Error
ErrorCode=SqlOperationFailed,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=A database operation failed with the following error: 'User does not have permission to perform this action. Changed database context to 'synapse'.',Source=,''Type=System.Data.SqlClient.SqlException,Message=User does not have permission to perform this action. Changed database context to 'DBAName'.,Source=.Net SqlClient Data Provider,SqlErrorNumber=6004,Class=14,ErrorCode=-2146232060,State=9,Errors=[{Class=14,Number=6004,State=9,Message=User does not have permission to perform this action. Changed database context to 'synapse'.,},],'
Solution is to provide the User (in your case test) the required permission.
GRANT CREATE TABLE TO test
Let me know how its goes
Thanks
Himanshu
Please accept the answer if you think it helped you .