Multiple choice technology

While creating state records which of the following record types are valid?

  1. SQL Table & SQL View

  2. SQL Table & Derived/Work record

  3. SQL View & Temporary table

  4. Derived/Work record & Temporary table

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

State records in Application Engine programs must be either SQL Tables or Derived/Work records. SQL Views cannot be used because state records require read-write capability for storing process state, and views are typically read-only. Temporary tables are not appropriate for maintaining persistent state across executions.