
Announcements
I've got a table in SQL Server that has an Identity column and is set to NOT NULL. I'm trying to use Insert Row (V2) and when I pick the table it's showing the identity column and it's required. How do I tell the Insert Row action to ignore that column?
Nevermind. The create table code I was looking at that had the column as an identity column was NOT used to create the table. When I looked at the table the column was NOT an identity column. Changed that, added the Insert Row (V2) again and now the identity column isn't there, as expected. Everything is working fine.