Added database/sql

This commit is contained in:
Anonymous
2014-01-17 07:03:16 -07:00
parent 84d3709fdc
commit cf2e16dba2
570 changed files with 84897 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
create table commands
(
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
command_type int,
sequence_no int,
command varchar2(500),
constraint pk_commands primary key (object_id, command_type, sequence_no) using index tablespace indexes
) storage (initial 4k next 4k);
update version_number set version_number = 3;