Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

So, with that in mind, we can define global space for objectives that keeps track of global objectives that are defined in the system and keep that as a reference table for a data table. There should probably be a manifest table

GlobalObjective.java

Code Block

create table SAK_IMSSS_GLOBAL_OBJ (
   ID varchar(255) not null,
   SCOPE varchar(255) not null,
   LEARNERID varchar(255) not null,
   TIMESTAMP datetime not null,
   SATISFIED bit,
   GLOBAL_TO_SYS bit,
   MEASURE varchar(18),
   primary key (ID, SCOPE, LEARNERID)
);

Some things that need to be done at runtime:

  • select all global objectives that are global to system and that either have student data recorded to it or not
  • more