Hi OGINTZ Marina,
Thank you for posting query in Microsoft Q&A Platform.
yes, we are right, Auto create table option, automatically creates table but few internal properties will be default as you observed.
You can consider either of below two approaches to handle it.
- After you copy activity completes, try to alter table columns, to replicate exactly same as source table columns.
- Before copy activity, try to create table by your own using
script activity
and then copy activity to copy data into that table.
Please note, you can run script on source table first to get the DDL of table and then run same script in sink before copy activity.
Hope this helps. Please let me know how it goes or if any further queries. Thank you.