OpenEdge Flashcards

0
Q

What does set do?

A

It requests input, then put the data into the screen buffer frame and into the specified fields and variables.

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

What does Update do?

A

Displays the specified fields, prompts for input, puts the input data into the screen buffer and the specified fields and variables as well.

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

What does assign do?

A

It moves data from the screen buffer to the record buffer.

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

What does Commit do?

A

During a transaction, progress writes data to one or more databases as prog control passes through DB update statements. Progress uses a two stage commit to commit changes to DB. First it checks to see if all databases are reachable. Then it does its validation checks. If any one thing fails to check out in either check, progress backs out the transaction and returns the DB to its pre transaction state using the before-image files. If everything checks out, progress commits the changes to the databases.

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

What is a before image file?

A

During a transaction, information on all database activity occurring during that transaction is written to a before image file. Progress maintains one for each database. The information written is carefully coordinated with the timing of the data written to the actual database table. That way if an error occurs during the transaction, progress uses this before image file to restore the DB to the condition it was in before the transaction started.

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