Upsert (update or insert) in Sybase ASE?

前端 未结 6 2875
栀梦
栀梦 2021-02-20 17:40

I\'m writing an application to move data from Oracle to Sybase and need to perform update / insert operations. In Oracle, I\'d use MERGE INTO, but it doesn\'t seem to be availab

相关标签:
6条回答
  • 2021-02-20 17:59

    ASE 15.7 has this feature.

    Find the docs here: http://infocenter.sybase.com/help/topic/com.sybase.infocenter.dc36272.1570/html/commands/commands84.htm

    0 讨论(0)
  • 2021-02-20 18:03

    Sybase and DB2 are very IEC/ISO/ANSI SQL Standrd-compliant. MS a little less so.

    Oracle is not very Standard-compliant at all (despite what the glossies say). More important, due to it limitations, the method they use to overcome them is to introduce Extensions to SQL (which are not required for the others DBMS, which do not have the limitations). Nice way of making sure that customers do not migrate away.

    So the best advice for you is to learn the SQL Standard way of doing whatever you were doing on the Oracle side. And second (not first) learn about Sybases or DB2s (or whatever) Extensions.

    "MERGE" and "UPSERT" do not exist in SQL, they exist in Oracle only. The bottom line is, you have to UPDATE and INSERT in two separate operations.

    In SQL, UPDATE and INSERT apply to a single table; you may have quite complex FROM clauses.

    For "MERGE", that is simply an:

    INSERT target ( column_list ) -- we do have defaults
    SELECT ( column_list )
        FROM source
        WHERE primary_key NOT IN ( SELECT primary_key FROM target )
    

    Update is simply the complement:

    UPDATE target SET ( target_column = source_column, ... )
        FROM source
        WHERE primary_key IN ( SELECT primary_key FROM target )
    

    In the UPDATE it is easy to merge the WHERE conditions and eliminate the Subquery (I am showing it to you for explanation).

    As I understand it, Oracle is abyssmal at executing Subqueries (Standard SQL). Which is why they have all these non-Standard "MERGE", etc., the purpose of which is to avoid the Standard Subquery syntax, which every other DBMS performs with ease.

    0 讨论(0)
  • 2021-02-20 18:06

    Maybe it could work. Tested in ASA9.

    insert into my_table (columns) on existing update values (values);
    
    0 讨论(0)
  • 2021-02-20 18:10

    Merge exists in SAP ASE 15.7 upwards, as mentioned here and here

    Replace / Upsert exists in SAP ASE 16.0 and up.

    You'll need to update to access them.

    0 讨论(0)
  • 2021-02-20 18:13

    May be you could try to fake it with INSERT INTO and/or UPDATE FROM with some sub-queries but it will not be as convenient as Oracle does.

    You wanna do this into code or data warehouse ? because you could also encapsulate all the SQL into a stored procedure if you want to hide the complexity of the queries.

    0 讨论(0)
  • 2021-02-20 18:14

    unfortunately, it is impossible to insert and update a table in one statement without using MERGE. which btw does exist in SQL as of SQL:2008, according to this article anyway, and supported by almost all major databases, except Sybase ASE and PostgreSQL.

    0 讨论(0)
提交回复
热议问题