8000 Merge pull request #1065 from utPLSQL/feature/add_explicit_requirements · utPLSQL/utPLSQL@41328a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 41328a5

Browse files
authored
Merge pull request #1065 from utPLSQL/feature/add_explicit_requirements
Added explicit requirements
2 parents 72a6809 + c5d53fb commit 41328a5

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-7
lines changed

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Add any other context or screenshots about the feature request here.
2323
> Please do not create issues for generic SQL or PL/SQL questions. There are other forums and communities to help you with those. See [ASKTom](https://asktom.oracle.com) for example.
2424
2525
**Want to discuss**
26-
If you want to discuss your issue, join [our SLACK chat](http://utplsql-slack-invite.herokuapp.com/).
26+
If you want to discuss your issue, join [our SLACK chat](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA).

docs/about/project-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![chat](http://img.shields.io/badge/GitHub_Project-Active-blue.svg)](https://github.com/utPLSQL/utPLSQL)
66
[![license](http://img.shields.io/badge/license-apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
7-
[![chat](http://img.shields.io/badge/chat-slack-blue.svg)](http://utplsql-slack-invite.herokuapp.com/)
7+
[![chat](http://img.shields.io/badge/chat-slack-blue.svg)](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA)
88
[![twitter](https://img.shields.io/twitter/follow/utPLSQL.svg?style=social&label=Follow)](https://twitter.com/utPLSQL)
99

1010

docs/about/support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# How to get support
44

55
- Feel free to post questions, bugs or issues in the [issues area of GitHub](https://github.com/utPLSQL/utPLSQL/issues)
6-
- Join developers at the [utPLSQL team](http://utplsql-slack-invite.herokuapp.com) on [Slack](https://slack.com/)
6+
- [Join](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA) developers team on utPLSQL [Slack](https://utplsql.slack.com/)

docs/userguide/install.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,33 @@ utPLSQL is continuously tested against following versions of Oracle databases
1111

1212
We do our best to assure full compatibility with supported versions of Oracle databases [See](http://www.oracle.com/us/support/library/lifetime-support-technology-069183.pdf#page=6)
1313

14+
# Requirements
15+
16+
utPLSQL will run on any Oracle Database version 11g relase 2 or above.
17+
18+
## Licensed features required
19+
20+
utPLSQL doesn't require any extra licensed features of Oracle database. It can be installed on any Standard Edition Oracle Database.
21+
22+
In fact, it even supports Oracle 11g XE which is a free Oracle Database version with minimal features and storage limits.
23+
24+
## Storage requirements
25+
26+
utPLSQL will use tablespace for the following:
27+
- storage of annotation cache
28+
- storage of suite cache
29+
- storage of profiler results
30+
- storage for staging utPLSQL reports outputs
31+
32+
33+
utPLSQL purges the staging storage for reports while fetching reports to screen / saving reports to files.
34+
35+
Suite and annotation cache storage requirements are minimal and unless you have hundreds of thousands of tests, you'll probably not even notice the space used.
36+
37+
Profiler results may require regular purging to assure low space consumption.
38+
utPLSQl does not purge profiler tables as those tables can can be shared with other tools.
39+
40+
1441
# Downloading utPLSQL
1542

1643
## Manual download
@@ -143,7 +170,7 @@ sqlplus sys/sys_pass@db as sysdba @install_headless_with_trigger.sql utp3 my_ver
143170

144171
# Recommended Schema
145172
It is highly recommended to install utPLSQL in it's own schema. You are free to choose any name for this schema.
146-
Installing uPLSQL into shared schema is really not recommended as you loose isolation of framework.
173+
Installing uPLSQL into a shared schema is really not recommended as you loose isolation of framework.
147174

148175
If the installing user and utPLSQL owner is one and the same, the user must have the following Oracle system permissions before you can proceed with the installation.
149176

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![license](https://img.shields.io/github/license/utPLSQL/utPLSQL.svg)](https://www.apache.org/licenses/LICENSE-2.0)
66
[![latest-release](https://img.shields.io/github/release/utPLSQL/utPLSQL.svg)](https://github.com/utPLSQL/utPLSQL/releases)
77
[![Download statistics](https://img.shields.io/github/downloads/utPLSQL/utPLSQL/total.svg)](http://gra.caldis.me/?url=https://github.com/utPLSQL/utPLSQL)
8-
[![chat](http://img.shields.io/badge/slack-team--chat-blue.svg)](http://utplsql-slack-invite.herokuapp.com/)
8+
[![chat](http://img.shields.io/badge/slack-team--chat-blue.svg)](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA)
99
[![twitter](https://img.shields.io/twitter/follow/utPLSQL.svg?style=social&label=Follow)](https://twitter.com/utPLSQL)
1010

1111
[![build](https://img.shields.io/travis/utPLSQL/utPLSQL/master.svg?label=master%20branch)](https://travis-ci.org/utPLSQL/utPLSQL)
@@ -163,7 +163,7 @@ We welcome new developers to join our community and contribute to the utPLSQL pr
163163
If you are interested in helping please read our [guide to contributing](CONTRIBUTING.md)
164164
The best place to start is to read the documentation and get familiar with the existing code base.
165165
A [slack chat](https://utplsql.slack.com/) is the place to go if you want to talk with team members.
166-
To sign up to the chat use [this link](http://utplsql-slack-invite.herokuapp.com/)
166+
To sign up to the chat use [this link](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA).
167167

168168

169169
----------
@@ -183,7 +183,7 @@ __Project Directories__
183183

184184
----------
185185

186-
If you have a great feature in mind, that you would like to see in utPLSQL v3 please create an [issue on GitHub](https://github.com/utPLSQL/utPLSQL/issues) or discuss it with us in the [Slack chat rooms](http://utplsql-slack-invite.herokuapp.com/).
186+
If you have a great feature in mind, that you would like to see in utPLSQL v3 please create an [issue on GitHub](https://github.com/utPLSQL/utPLSQL/issues) or discuss it with us in the [slack chat rooms](https://utplsql.slack.com/). Use [invite link](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA) to join the chat.
187187

188188

189189
# Version 2 to Version 3 Comparison

0 commit comments

Comments
 (0)
0