You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
during an update or insert i want to get the record id of each new row so i can then update the source data rows, essentially creating a relationship to the new records.
Describe the solution you'd like
INSERT INTO target_table (name, address)
OUTPUT inserted.row_guid, source_table.source_guid
Describe alternatives you've considered
i used creation date to see the records id created and then used that data to manually align (it was late :))
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
its good idea but i thought this is only for 1 record as it returns only the last insert.
wouldnt work for multiple inserts i believe. happy to be wrong though :)
i think my better option would be to create a temp table in dataverse to handle it
Is your feature request related to a problem? Please describe.
during an update or insert i want to get the record id of each new row so i can then update the source data rows, essentially creating a relationship to the new records.
Describe the solution you'd like
INSERT INTO target_table (name, address)
OUTPUT inserted.row_guid, source_table.source_guid
Describe alternatives you've considered
i used creation date to see the records id created and then used that data to manually align (it was late :))
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: