Skip to content

Commit b71908b

Browse files
committed
Rename awreport->awrreport, prepare 3.0.5
1 parent 19188c0 commit b71908b

21 files changed

+570
-432
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# RWP\*Load Simulator Release Notes
22

3+
## 3.0.5
4+
5+
* Bug fixes
6+
* Rename awreport to awrreport
7+
* Improve awrdump messages
8+
39
## 3.0.4
410

511
* Bug fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You should normally _not_ clone or checkout the master branch unless you are dev
3434
rwloadsim code or always want the latest.
3535
If you use the master branch, you _must_ do compilation yourself; no binaries are released.
3636

37-
At present, branch 3.0.3 is the release branch.
37+
At present, branch 3.0.5 is the release branch.
3838

3939
Please see [CHANGELOG.md](CHANGELOG.md) for details.
4040

bin/awreport

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
# RWP*Load Simulator
44
#
5-
# Copyright (c) 2021 Oracle Corporation
5+
# Copyright (c) 2023 Oracle Corporation
66
# Licensed under the Universal Permissive License v 1.0
77
# as shown at https://oss.oracle.com/licenses/upl/
88
#
9-
# call rwloadsim -u awreport.rwl
109

11-
# bengsig 23-nov-2022 - Creation
10+
# bengsig 02-jan-2023
1211

13-
rwloadsim --pretend-gen-banner='RWP*AWR Report' -u awreport.rwl "$@"
12+
echo This utility has been renamed to awrreport 1>&2
13+
exit 1

bin/awrreport

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
3+
# RWP*Load Simulator
4+
#
5+
# Copyright (c) 2021 Oracle Corporation
6+
# Licensed under the Universal Permissive License v 1.0
7+
# as shown at https://oss.oracle.com/licenses/upl/
8+
#
9+
# call rwloadsim -u awreport.rwl
10+
11+
# bengsig 23-nov-2022 - Creation
12+
13+
rwloadsim --pretend-gen-banner='RWP*AWR Report' -u awreport.rwl "$@"

docs/INSTALL.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
## Installation and creation of repository
22

3-
There are two types of binary distributions available at github releases:
3+
There are three types of binary distributions available at github releases:
44

5-
* Complete binaries are in files that have -bin- in the name.
5+
* Complete binaries are in files that have -bin- in the name; this is the preferred distribution for most users.
66
* Little more than executables are in files that have -binonly- in the name.
7+
* Generated stand-alone binaries for utilies like ociping and awrreport; the file name starts with generated.
78

8-
Complete binaries distributed in a file such rwloadsim-linux-x86_64-bin-3.0.4.tgz
9+
### Using complete binaries
10+
11+
Complete binaries distributed in a file such rwloadsim-linux-x86_64-bin-3.0.5.tgz
912
can be used as is, i.e. without getting a clone or pull from github.
1013
It should be used if you simply want a full run time environment
1114
and it contains the following directories:
@@ -24,7 +27,7 @@ and it contains the following directories:
2427
If you prefer to have access to source code, but avoid building the executables,
2528
you can clone or pull from github (which would allow you to potentially compile
2629
rwloadsim yourself), and then
27-
use a file like rwloadsim-linux-x86_64-binonly-3.0.4.tgz.
30+
use a file like rwloadsim-linux-x86_64-binonly-3.0.5.tgz.
2831
This file contains little more than the compiled binaries of the rwloadsim program,
2932
and you can simply un-tar this file
3033
directly into your cloned or pulled directory; the result will be as if you had
@@ -43,7 +46,7 @@ On the system where you are going to run rwloadsim,
4346
create a (possibly shared) directory where you simply
4447
use a command like
4548
```
46-
tar -zxvf rwloadsim-linux-x86_64-bin-3.0.4.tgz
49+
tar -zxvf rwloadsim-linux-x86_64-bin-3.0.5.tgz
4750
```
4851
One install can be shared between several users as long as all have access to the directory.
4952
If appropriate, you can put the directory on an NFS (or some other) share and make it available to multiple systems.
@@ -62,7 +65,7 @@ You can use Oracle Instant Client or a full client (or even server) install.
6265
Start by doing a pull or clone of the sources from github
6366
as if you would do your own compile, and then use a command like
6467
```
65-
tar -zxvf rwloadsim-linux-x86_64-binonly-3.0.4.tgz
68+
tar -zxvf rwloadsim-linux-x86_64-binonly-3.0.5.tgz
6669
```
6770
to extract little more than the compiled rwloadsim binaries into your already existing pull or clone.
6871

@@ -189,6 +192,16 @@ The rwl234.sql file is found in the admin directory of your distribution.
189192
If you a using a secondary schema, you must also repeat the step above
190193
involving the rwlgrants.sql file.
191194

195+
### Stand-alone generated binaries
196+
197+
If your only interest is to use utilities such as ociping or awrreport, you can
198+
get these completely stand-alone.
199+
This does _not_ include the complete rwloadsim, and does _not_ allow you
200+
to create any rwl programs yourself.
201+
The file such as generated-linux-x86_64-bin-3.0.5.tgz _only_ contains binaries
202+
that you simply put into any directory, typically one in your PATH.
203+
The only other requirement is an Oracle client environment as explained above.
204+
192205
### Navigation
193206
* [index.md](index.md#rwpload-simulator-users-guide) Table of contents
194207
* [INTRODUCTION.md](INTRODUCTION.md) Previous topic: A brief introduction the RWP*Load Simulator

docs/NEWS30.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Changed behavior in version 3.0.5 of the RWP\*Load Simulator
2+
3+
The utility to create awr reports has been renamed to awrreport.
4+
Otherwise, 3.0.5 only has bug fixes and very minor changes.
5+
16
## Changed behavior in version 3.0.4 of the RWP\*Load Simulator
27

38
### Stack evaluation with mixed data types

docs/ORACLENET.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ or ```rwlman nettest```.
5050

5151
### Stand alone executables
5252

53-
The three utilities are distributed together with other as completely stand alone
54-
executables in the file generated-linux-x86_64-bin-3.0.4.tgz.
55-
It only contains the three files, and they can be used without a complete installation
53+
In addition to being part of the full rwloadsim distribution,
54+
the three utilities are distributed together with other as completely stand-alone
55+
executables in the file generated-linux-x86_64-bin-3.0.5.tgz.
56+
It only contains the executable files, and they can be used without a complete installation
5657
of rwloadsim, as long as there is an Oracle client environment that can be an ordinary
5758
installation or an Instant Client installation.
5859
The version must be 19 or later, and you must have LD_LIBRARY_PATH include
@@ -62,7 +63,7 @@ with Instant Client it is the top directory of the installation.
6263

6364
After download, simply execute
6465
```
65-
tar -zxvf generated-linux-x86_64-bin-3.0.4.tgz
66+
tar -zxvf generated-linux-x86_64-bin-3.0.5.tgz
6667
```
6768
and possibly move the executables to one of the directories in your PATH.
6869
To get help for either, call it with the -h option.

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ An introduction and the users guide to the RWP\*Load Simulator is available at
44
[index.md](index.md) for your actual branch or
55
[https://oracle.github.io/rwloadsim/](https://oracle.github.io/rwloadsim/)
66
for the current
7-
[binary release 3.0.3](https://github.com/oracle/rwloadsim/releases).
7+
[binary release 3.0.5](https://github.com/oracle/rwloadsim/releases).
88

99
## RWP\*Load Simulator reference manual
1010

1111
The reference manual is available after installation by typing
1212
```
1313
rwlman
1414
```
15-
or online (for release 3.0.3) in [refman/README.md](refman/README.md)
15+
or online (for release 3.0.5) in [refman/README.md](refman/README.md)

docs/refman/Makefile.refman

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@
1616

1717
ALL1=atclause.html bengsig.html compoundstatement.html conditional.html controlloop.html database.html databasedeclaration.html databasestatement.html declaration.html directive.html double.html expression.html filestatement.html histogram.html identifier.html include.html integer.html lob.html lobdeclaration.html multiprocess.html oerstats.html percentiles.html persec.html proceduredeclaration.html randomproceduredeclaration.html randomstringdeclaration.html regex.html runres.html rwlcpu.html rwlman.html rwloadsim.html rwlprogram.html rwlrun.html simpledeclaration.html sqldeclaration.html sqlexecution.html sqlstatement.html statement.html statistics.html string.html sysres.html threadexecution.html useroption.html rwlerror.html random.html procedure.html printfstatement.html
1818

19-
ALL2=ashplot.html awreport.html awrdump.html connping.html nettest.html oltp.html oltpcheckkey.html oltpcore.html oltpcreate.html oltpday.html oltpdrop.html oltpfilloe.html oltpforever.html oltpparams.html oltpplot.html oltprun.html oltpscale.html oltpscalereport.html oltpverify.html ovid2.html sqlid2file.html sqlmonitor.html sqlmonitorawr.html ociping.html oltpsetup.html oltpawcols.html oltpplus.html utilities.html sqlreport.html netthroughput.html oltpxcset.html oltpxcrun.html oltpxc.html
19+
ALL2=ashplot.html awrreport.html awreport.html awrdump.html connping.html nettest.html oltp.html oltpcheckkey.html oltpcore.html oltpcreate.html oltpday.html oltpdrop.html oltpfilloe.html oltpforever.html oltpparams.html oltpplot.html oltprun.html oltpscale.html oltpscalereport.html oltpverify.html ovid2.html sqlid2file.html sqlmonitor.html sqlmonitorawr.html ociping.html oltpsetup.html oltpawcols.html oltpplus.html utilities.html sqlreport.html netthroughput.html oltpxcset.html oltpxcrun.html oltpxc.html
2020

2121
all: $(ALL1) $(ALL2)
2222

2323
ashplot.html: ../../man/man2rwl/ashplot.2rwl
2424
awrdump.html: ../../man/man2rwl/awrdump.2rwl
25+
awrreport.html: ../../man/man2rwl/awrreport.2rwl
2526
awreport.html: ../../man/man2rwl/awreport.2rwl
2627
atclause.html: ../../man/man1rwl/atclause.1rwl
2728
bengsig.html: ../../man/man1rwl/bengsig.1rwl

docs/refman/ashplot.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)