By tag: Insert
0
kicks
Client Side Validating Bulk Insert With jQuery Validation Plugin
I have been working on a proof of concept for a way to insert a bunch of contact data for a record. One of the requirements that has been pretty challenging is the client side validation since a lot of info isn't known until run time.
0
kicks
SQL Server 2008: Locking with MERGE statement compared to Update/Inser
How SQL Server 2008 MERGE statement locking compares to the locks held when doing "update if exists, insert if not" problem in SQL Server 2005.
0
kicks
SQL Server: Best way to Update row if exists, Insert if not
This question pops up a lot everywhere and it's a common business requirement and until SQL Server 2008 doesn't come out with it's MERGE statement that will do that in one go we're stuck with 2 ways of achieving this. The biggest problem with every update/insert (upsert for those who haven't heard t...