TAW_11 Chapter 5, Database updates with ABAP open sql Flashcards

1
Q

Open SQL is comprised of both DML and DDL commands

A

False, OPENSQL is only the DML commands The DDL commands are part of the data dictionary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What clause has replaced CLIENT SPECIFIED

A

USING CLIENT ###

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DB INSERT uses what for the values

A

Using VALUES or FROM or FROM TABLE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If ACCEPTING DUPLICATE KEYS is added does it mean that the database will contain duplicates?

A

No, it just means that the insert wont fail if a duplicate is found, The duplicate will not be inserted and the process will continue. A sy-subrc of 4 will be returned but you can check sy-dbcnt to make sure the records have been inserted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the variants of the DB UPDATE

A
SET fld1 = val1
where...
or
UPDATE tab1 from 
UPDATE tab1 from
How well did you know this?
1
Not at all
2
3
4
5
Perfectly