Skip to content

Commit 286007e

Browse files
committed
Forward merge 3.0.4 updates
1 parent 45e211b commit 286007e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/refman/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ You can simply type ```rwlman``` to get started.
8888
### Utilities and include files
8989

9090
* [awreport - Create an awr report](awreport.html)
91+
* [awreport - Create a dump of awr repository](awrdump.html)
9192
* [ashplot - Create a plot of ash data](ashplot.html)
9293
* [ociping - Run "ping" showing round-trip times to a database](ociping.html)
9394
* [connping - Run "ping" showing connection and round-trip times to a database](connping.html)

docs/refman/awreport.html

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

man/man2rwl/awreport.2rwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,4 @@ Copyright \(co 2022 Oracle Corporation
177177
Licensed under the Universal Permissive License v 1.0
178178
as shown at https://oss.oracle.com/licenses/upl
179179
.SH "SEE ALSO"
180-
rwloadsim(1rwl), ashplot(2rwl), utilities(2rwl)
180+
rwloadsim(1rwl), ashplot(2rwl), utilities(2rwl), awrdump(2rwl)

public/awrdump.rwl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@
1010

1111
# Dump awr data to a directory and potentially cloud bucket
1212

13-
# options to this script
14-
$longoption:file-count=1
15-
1613
# If we didn't connect, don't do anything
17-
if oraerror is not null and oraerror then
14+
$if not defined(default database) $then
15+
writeline stderr, "Missing or incorrect -l option; use -h to get help";
1816
exit 1;
19-
end if;
17+
$endif
2018

2119
integer dbid;
2220

public/awreport.rwl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
# Generate awr reports or list awr snapshots available
1414

1515
# If we didn't connect, don't do anything
16-
if oraerror is not null and oraerror then
16+
$if not defined(default database) $then
17+
writeline stderr, "Missing or incorrect -l option; use -h to get help";
1718
exit 1;
18-
end if;
19+
$endif
1920

2021
integer dbid;
2122
integer instance;

0 commit comments

Comments
 (0)