hi,
i get this error when i inserting the data in a table this is my error
The INSERT statement conflicted with the FOREIGN KEY constraint "FK_playlistvideos_videos". The conflict occurred in database "tpvnew", table "dbo.videos", column 'videoid'.
hi,
i get this error when i inserting the data in a table this is my error
The INSERT statement conflicted with the FOREIGN KEY constraint "FK_playlistvideos_videos". The conflict occurred in database "tpvnew", table "dbo.videos", column 'videoid'.
Just check if the videoid in the new record you insert into playlistvideos actually exists in videos table.
The INSERT into the target table referenced a key that doesn't exist in the foreign table.