Go on on on and on...


  • Home

  • Categories

  • Tags

  • Archives

  • Message

  • About

  • Search

实践Oracle索引

Posted on 2017-12-05 | In 数据库 | Visitors

user_indexes:用户索引视图,存放是索引的名称以及该索引是否是唯一索引等信息

Read more »

实践Oracle导出(exp)和导入(imp)

Posted on 2017-12-04 | In 数据库 | Visitors

Oracle提供了命令行工具导出(exp)和导入(imp),可以仅导出或导入数据结构(包含表、视图、sequence、索引等数据库对象)或数据结构和数据一起,可以按用户导入导入,也可以仅导出导入特定表。命令的详细参数可以通过exp help=y或imp help=y查看。

Read more »

实践spring-boot-maven-plugin

Posted on 2017-11-30 | In Java | Visitors

介绍

Read more »

实践Maven插件开发

Posted on 2017-11-29 | In 工具 | Visitors

maven 3.5.0

Read more »

实践Oracle表空间

Posted on 2017-11-29 | In 数据库 | Visitors
block size maxsize remark
2048 8191M  
4096 16383M  
8192 32767M 32G比32767M大1M
16384 65535M  
Read more »

实践Oracle用户管理

Posted on 2017-11-29 | In 数据库 | Visitors

user for DDL

1
2
3
4
5
6
7
8
9
10
11
12
13
-- Create the user
create user UMDB_DEV identified by "UMDB_DEV_2014"
  default tablespace DATSPACE
  temporary tablespace TEMP;
-- Grant/Revoke role privileges
grant connect to UMDB_DEV;
grant resource to UMDB_DEV;
-- Grant/Revoke system privileges
grant create any sequence to UMDB_DEV;
grant create any table to UMDB_DEV;
grant create any view to UMDB_DEV;
-- Grant/Revoke tablespace privileges
grant unlimited tablespace to UMDB_DEV;

user for DML

1
2
3
4
5
6
7
8
9
10
-- Create the user
create user umdb_dev_dml identified by "umdb_dev_dml_2014"
  default tablespace DATSPACE
  temporary tablespace TEMP;
-- Grant/Revoke role privileges
grant connect to umdb_dev_dml;
-- Grant/Revoke system privileges
grant create any synonym to umdb_dev_dml;
-- Grant/Revoke tablespace privileges
grant unlimited tablespace to umdb_dev_dml;
Read more »

实践Oracle启动和停止

Posted on 2017-11-29 | In 数据库 | Visitors

##启动oracle数据库

Read more »

实践kafka

Posted on 2017-11-15 | In 云计算 | Visitors

Kafka is a distributed streaming platform.

Read more »

实践zookeeper

Posted on 2017-11-15 | In Design | Visitors

Zookeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services. All of these kinds of services are used in some form or another by distributed applications. Each time they are implemented there is a lot of work that goes into fixing the bugs and race conditions that are inevitable. Because of the difficulty of implementing these kinds of services, applications initially usually skimp on them, which make them brittle in the presence of change and difficult to manage. Even when done correctly, different implementations of these services lead to management complexity when the applications are deployed.

Read more »

实践数据库中间件之Vitess

Posted on 2017-11-14 | In 数据库 | Visitors

Vitess

Read more »
1 … 98 99 100 … 114
Ray Wang

Ray Wang

My Blog

1139 posts
31 categories
RSS
© 2025 Ray Wang
Powered by Jekyll
Theme - NexT.Muse