Top "Sql-merge" questions

`SQL MERGE` statement allows us to insert new rows into table and update existing rows depending on given condition.

SQL MERGE to remote (linked) server table

Is it possible to utilize the SQL MERGE function on a linked server's database table? The end goal is to …

sql sql-server-2008 sql-merge
MERGE table, do nothing when matched

I have a table DOMAINS in 2 different schemas with columns ID, NAME,CODE,DESCRIPTION. For any NAME exist in new …

sql oracle merge match sql-merge
Update and Insert When Condition is Matched in TSQL-Merge

I have been trying to Write a Stored Procedure where i can perform UpSert using Merge with the Following Condition …

sql-server stored-procedures sql-server-2014 sql-merge
SQL Server MERGE + Joining other tables

I am using the MERGE statement within a database project to populate reference data from a static value set, such …

sql-server tsql merge common-table-expression sql-merge
Merge two tables to one and remove duplicates

I have 2 tables in the same database. I want to merge them based on the common id column. Because the …

mysql sql sql-merge
MERGE in Entity Framework

Is there a way to call T-Sql's MERGE command from .NET Entity framework 4?

c# linq entity-framework linq-to-entities sql-merge
Is Merge and Merge join same in SQL Server?

What is the difference between Merge and a Merge Join in SQL Server?

sql sql-server-2008 sql-merge
Oracle MERGE statement in H2 database

We started to use the H2 in memory database for automated testing. We use Oracle for our production & dev …

sql h2 sql-merge
MERGE using a rowtype variable in PL/SQL on Oracle?

With a variable bar of the type foo%ROWTYPE I can do both INSERT and UPDATE in PL/SQL: INSERT …

oracle plsql sql-merge