- 浏览: 3411 次
- 性别:
- 来自: 杭州
最新评论
文章列表
全局索引分区与局部索引分区演示
- 博客分类:
- 数据库
Oracle 12c
-- 创建普通表
create table test.t_test1 (
c1 number not null,
c2 number not null,
c3 number not null
);
-- 局部索引,报错:ORA-14016: 必须对 LOCAL 分区索引的基础表进行分区
drop index test.t_test1_idx1;
create index test.t_tes ...
shell 交互输入
- 博客分类:
- 操作系统
#!/bin/bash
echo -e "MySQL Server has already installed"
echo -e "Enter Y skip mysqld installed"
echo -e "Enter N will exit installing"
read -p "Do you want to skip? Y/N: " skip
if [ $skip == 'Y' ];then
echo -e "skip"
elif [ $skip == 'N' ...
为什么标题称Memcached为伪分布式内存缓存呢?
1. Memcached服务端没有集群化方案,存在单点故障的风险。
2. Memcached服务端没有持久化机制,数据存放在内存中,进程退出数据丢失。
1. Memcached安装与使用
官方网站:http://me ...
2012年开博客,至今未发过文章。IT圈日渐流行发文,一方面可能是为了知识的总结与沉淀,另一方面可能是为了分享与广告。自我形象的塑造与宣传在自媒体时代的重要性有目共睹,后续我将逐渐更新博客文章加入博客队伍,分享我平时的研究成果,敬请期待!
/**
* @author Eric.Sun
* @date 2017-02-11
* @description this is my first blog
*/
public class HelloWorld{
public static void main(String[] args){
Syste ...