user_indexes
:用户索引视图,存放是索引的名称以及该索引是否是唯一索引等信息
实践Oracle导出(exp)和导入(imp)
Oracle提供了命令行工具导出(exp)和导入(imp),可以仅导出或导入数据结构(包含表、视图、sequence、索引等数据库对象)或数据结构和数据一起,可以按用户导入导入,也可以仅导出导入特定表。命令的详细参数可以通过exp help=y或imp help=y查看。
实践spring-boot-maven-plugin
介绍
实践Maven插件开发
maven 3.5.0
实践Oracle表空间
block size | maxsize | remark |
---|---|---|
2048 | 8191M | |
4096 | 16383M | |
8192 | 32767M | 32G比32767M大1M |
16384 | 65535M |
实践Oracle用户管理
user for DDL
1 |
|
user for DML
1 |
|
实践Oracle启动和停止
##启动oracle数据库
实践kafka
Kafka is a distributed streaming platform.
实践zookeeper
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.