How to import CSV file into SQL Server table with identity column using DataGrip.
More precisely, how to exclude the identity column during the import or force importing the identity column?
Assume, you've got a table
create table test_identity_insert(
x bigint primary key identity(1,1),
y int
);
go
You need to change data mappings

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With