同义词 索引 表分区

.同义词

grant create synonym to SCOTT
GRANT CREATE PUBLIC SYNONYM TO scott;


create synonym ee for SCOTT.emp
create  public synonym tt for SCOTT.emp


  grant select on emp to 具体的用户或者是模式
grant select on emp to public

可以访问了


5.索引
  索引作用:快速访问数据的途径,提高数据库的性能。
  SQL Server 索引:唯一索引(1)  复合索引  聚集索引(3) 非聚集索引 全文 索引  主键索引(2)。
 
  B数索引
 
 
  算法
  Bound mismatch: The generic method sort(List<T>) of type Collections is not applicable(合适) for the arguments (List<Student>). The inferred(推断) type Student is not a valid substitute(代用品) for the bounded parameter <T extends Comparable<? super T>>
  http://blog.csdn.net/xjyzxx/article/details/18465661
  http://www.cnblogs.com/pipi-style/p/4738072.html
  http://hexo.trity.cc/2015/08/24/Arrays.sort%E5%92%8CCollections.sort%E5%8C%BA%E5%88%AB/
  http://lib.csdn.net/article/datastructure/9282
 
 
6.表分区  


  create table orders
  (
    order_id number,
    order_date date,
    order_total number
  )
partition by range(order_date)
(
   partition p1 values less than (to_date('2005-01-01','yyyy-mm-dd')),
   partition p2 values less than (maxvalue)
   
)

--添加数据
insert into orders values(1,sysdate,100)


select * from orders  partition(p2)

SELECT table_name,partition_name
         FROM user_tab_partitions
     WHERE table_name=UPPER('orders');
 

create table intervalOrders
          partition by range(order_date)
        interval(numtoyminterval(1,'YEAR'))
        (partition P1 values less than (to_date('2015-01-01','yyyy/mm/dd')))
        as select  * from  orders;   
   
   insert into intervalOrders values(2,to_date('2010-01-01','yyyy/mm/dd'),200)
   
   select * from intervalOrders partition(SYS_P42)
   
   
   insert into intervalOrders values(3,sysdate,300)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值