Go on on on and on...


  • Home

  • Categories

  • Tags

  • Archives

  • Message

  • About

  • Search

实践MyBatis-Spring-Boot-Starter

Posted on 2018-01-04 | In Java | Visitors

MyBatis-Spring-Boot-Starter,有助于快速构建基于MyBatis的Spring Boot应用。

Read more »

实践MySQL

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

安装

Read more »

实践Oracle表

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

Oracle作为关系型数据库,表(table)是用来保持数据(记录、行)的对象,一行代表一条记录。

Read more »

实践Oracle序列

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

Oracle作为关系型数据库,表(table)是用来保持数据(记录、行)的对象,一行代表一条记录。

Read more »

实践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 »
1 … 96 97 98 … 113
Ray Wang

Ray Wang

My Blog

1123 posts
29 categories
RSS
© 2025 Ray Wang
Powered by Jekyll
Theme - NexT.Muse