Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:11

0001 /* Stores the schema name and top-level-table of an object that undergoes O2O */
0002 
0003 CREATE TABLE o2o_setup (
0004   object_name VARCHAR2(32),
0005   schema VARCHAR(32),
0006   top_level_table VARCHAR2(32),
0007   PRIMARY KEY (object_name)
0008 );
0009