Teradata MERGE with DELETE and INSERT - syntax?
up vote
0
down vote
favorite
I have been trying to find the correct syntax for the following case (if it is possible?):
MERGE INTO TAB_A tgt
USING TAB_B src ON (src.F1 = tgt.F1 AND src.F2 = tgt.F2
WHEN MATCHED THEN DELETE
ELSE INSERT (tgt.*) VALUES (src.*)
Background: the temp table contains a fix for the target table, as in incorrect rows are to be removed and replaced by one correct row, from the temp table.
the current error I am getting is:
"Syntax error: expected something between the 'DELETE' keyword and the 'ELSE' keyword"
Any help appreciated, thanks!
merge teradata
add a comment |
up vote
0
down vote
favorite
I have been trying to find the correct syntax for the following case (if it is possible?):
MERGE INTO TAB_A tgt
USING TAB_B src ON (src.F1 = tgt.F1 AND src.F2 = tgt.F2
WHEN MATCHED THEN DELETE
ELSE INSERT (tgt.*) VALUES (src.*)
Background: the temp table contains a fix for the target table, as in incorrect rows are to be removed and replaced by one correct row, from the temp table.
the current error I am getting is:
"Syntax error: expected something between the 'DELETE' keyword and the 'ELSE' keyword"
Any help appreciated, thanks!
merge teradata
2
Read the manual.WHEN MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT VALUES (scr.*)
– MatBailie
11 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have been trying to find the correct syntax for the following case (if it is possible?):
MERGE INTO TAB_A tgt
USING TAB_B src ON (src.F1 = tgt.F1 AND src.F2 = tgt.F2
WHEN MATCHED THEN DELETE
ELSE INSERT (tgt.*) VALUES (src.*)
Background: the temp table contains a fix for the target table, as in incorrect rows are to be removed and replaced by one correct row, from the temp table.
the current error I am getting is:
"Syntax error: expected something between the 'DELETE' keyword and the 'ELSE' keyword"
Any help appreciated, thanks!
merge teradata
I have been trying to find the correct syntax for the following case (if it is possible?):
MERGE INTO TAB_A tgt
USING TAB_B src ON (src.F1 = tgt.F1 AND src.F2 = tgt.F2
WHEN MATCHED THEN DELETE
ELSE INSERT (tgt.*) VALUES (src.*)
Background: the temp table contains a fix for the target table, as in incorrect rows are to be removed and replaced by one correct row, from the temp table.
the current error I am getting is:
"Syntax error: expected something between the 'DELETE' keyword and the 'ELSE' keyword"
Any help appreciated, thanks!
merge teradata
merge teradata
asked 11 hours ago
Rusty75
11512
11512
2
Read the manual.WHEN MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT VALUES (scr.*)
– MatBailie
11 hours ago
add a comment |
2
Read the manual.WHEN MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT VALUES (scr.*)
– MatBailie
11 hours ago
2
2
Read the manual.
WHEN MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT VALUES (scr.*)
– MatBailie
11 hours ago
Read the manual.
WHEN MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT VALUES (scr.*)
– MatBailie
11 hours ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53349358%2fteradata-merge-with-delete-and-insert-syntax%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Read the manual.
WHEN MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT VALUES (scr.*)
– MatBailie
11 hours ago