给synlte用户下的表test_new表字段object_name建立普通索引,索引名称ind_obj_name,索引存放在jfzl表空间
create index ind_obj_name on test_new (object_name) tablespace jfzl;
给test_new表字段object_type建立位图索引,索引名称ind_obj_type,索引存放在jfzl表空间
create bitmap index ind_obj_type on test_new (object_type) tablespace jfzl;