Does Anyone Know When 11g Will Be Released?

Doug's Oracle Blog

  • Home
  • Papers
  • Books
  • C.V.
  • Fun
  • Oracle Blog
  • Personal Blog

Aug 11: Does Anyone Know When 11g Will Be Released?

Sorry, I shouldn't be so sarcastic, but try to show some sympathy for my schedule.

Thursday 9th August
22:30 BST - Go to bed, unusually early.

Friday 10th
06:00 BST - Wake up, check Netvibes and noticed several 11g release blogs, including Eddie's initial notification and Howard's installation!

07:30 BST - Leave for my current client site. There's no blogging there. It is work after all ;-)

08:00 BST - However, in the interests of everyone there, I sent a notification to the rest of the DBAs and started to investigate the documentation and any license implications in particular. However, as an AIX site, and considering the professional support levels that are required, it will be a long time before it's used in earnest. The first two things I noticed that were relevant to my previous comments were that Total Recall will be an additional cost option and that there's a supported way of turning off ASH!

Talking about Total Recall first, I'm not surprised. It highlights that this might not be the minor Flashback enhancement that it might appear, but a show-stopping feature that might (for all I know) require some patent license payments, although I'm really not an expert on that!

As for a supported way of disabling ASH ... I sent a note to myself to blog about that when I got home. By the time I got there, it had cropped up on the Oak Table list and it looks like the CONTROL_MANAGEMENT_PACK_ACCESS parameter does disable the features completely.

Saturday 11th

06:00 BST - Wake up and check Netvibes. Wow, there really are a lot of 11g release blogs, aren't there? Then I checked the Oracle-L digest and noticed that both issues I planned to blog about had been covered there already.

Fancy a punchline? As the proud possesor of Solaris 10 and Vista Oracle installations, I'll need to either get Linux sorted out over the weekend (unlikely) or plead with other bloggers to try the control_management_pack_access parameter and let me know if the MMON and MMNL processes disappear.

I do doubt my geek credentials, though, because I can live without an 11g banner this weekend.

Posted by Doug Burns Comments: (4) Trackback: (1)

Trackbacks
Trackback specific URI for this entry

Log Buffer #57: A Carnival of the Vanities for DBAs
Dave Edwards once again has given me the privilege of writing this week's Log Buffer, and oooooh it's a jam-packed one. I think there's something for everyone in this week's issue. Buzz in the MySQL Blogosphere... The MySQL blogosphere was alight
Weblog: Jay Pipes
Tracked: Aug 17, 21:03

Comments
Display comments as (Linear | Threaded)

#1 - Andy Campbell said:
2007-08-11 16:19 - (Reply)

Nope - the processes don't go away even after a database bounce ...

sys@ORA11GR1> @param
Enter value for param_name: control_management_pack_access

NAME VALUE DEF DESCRIPTION
------------------------------ -------------------- --------- --------------------------------------------------
control_management_pack_access DIAGNOSTIC+TUNING TRUE declares which manageability packs are enabled

sys@ORA11GR1> !ps -ef | egrep -i "mmon|mmnl"
oracle 9249 1 0 16:08 ? 00:00:00 ora_mmon_ORA11gR1
oracle 9251 1 0 16:08 ? 00:00:00 ora_mmnl_ORA11gR1
oracle 9372 9335 0 16:10 pts/2 00:00:00 /bin/bash -c ps -ef | egrep -i "mmon|mmnl"
oracle 9374 9372 0 16:10 pts/2 00:00:00 egrep -i mmon|mmnl

sys@ORA11GR1> alter system set control_management_pack_access = NONE scope=memory
2 /

System altered.

sys@ORA11GR1> !ps -ef | egrep -i "mmon|mmnl"
oracle 9249 1 0 16:08 ? 00:00:00 ora_mmon_ORA11gR1
oracle 9251 1 0 16:08 ? 00:00:00 ora_mmnl_ORA11gR1
oracle 9472 9335 0 16:12 pts/2 00:00:00 /bin/bash -c ps -ef | egrep -i "mmon|mmnl"
oracle 9474 9472 0 16:12 pts/2 00:00:00 egrep -i mmon|mmnl

sys@ORA11GR1> alter system set control_management_pack_access = NONE scope=both
2 /

System altered.

sys@ORA11GR1> !ps -ef | egrep -i "mmon|mmnl"
oracle 9249 1 0 16:08 ? 00:00:00 ora_mmon_ORA11gR1
oracle 9251 1 0 16:08 ? 00:00:00 ora_mmnl_ORA11gR1
oracle 9505 9335 0 16:12 pts/2 00:00:00 /bin/bash -c ps -ef | egrep -i "mmon|mmnl"
oracle 9507 9505 0 16:12 pts/2 00:00:00 egrep -i mmon|mmnl

sys@ORA11GR1> shutdown
startup
Database closed.
Database dismounted.
ORACLE instance shut down.
sys@ORA11GR1> ORACLE instance started.

Total System Global Area 849530880 bytes
Fixed Size 1303216 bytes
Variable Size 390073680 bytes
Database Buffers 452984832 bytes
Redo Buffers 5169152 bytes
Database mounted.
Database opened.
sys@ORA11GR1> !ps -ef | egrep -i "mmon|mmnl"
oracle 9552 1 1 16:13 ? 00:00:00 ora_mmon_ORA11gR1
oracle 9554 1 0 16:13 ? 00:00:00 ora_mmnl_ORA11gR1
oracle 9609 9335 0 16:13 pts/2 00:00:00 /bin/bash -c ps -ef | egrep -i "mmon|mmnl"
oracle 9611 9609 0 16:13 pts/2 00:00:00 egrep -i mmon|mmnl

sys@ORA11GR1> @param
Enter value for param_name: control_management_pack_access

NAME VALUE DEF DESCRIPTION
------------------------------ ------- --------- --------------------------------------------------
control_management_pack_access NONE FALSE declares which manageability packs are enabled

sys@ORA11GR1>


Did you spot the parameter parallel_io_cap_enabled ? Looks like you've got some more Parallel Execution research to do ;-)

Andy

#1.1 - Doug Burns said:
2007-08-13 17:08 - (Reply)

Thanks, Andy. I suppose there are other tests of whether they're actually doing anything. I'd not really thought it through much ;-)

Looks like you've got some more Parallel Execution research to do ;-)

Tell me about it! ;-)

#2 - Mathew Butler 2007-08-14 14:26 - (Reply)

control_management_pack_access and mmon also covered by Howard here:

http://www.dizwell.com/prod/node/936

M.

#3 - Kerry Osborne said:
2008-11-04 15:21 - (Reply)

Surprisingly, it looks like at least some of the collection activities are disabled by setting the parameter to NONE.
I did a post that discussed the control_managment_pack_access parameter here http://kerryosborne.oracle-guy.com/2008/10/oracle-management-packs/ but I only looked at the AWR data collection and when the parameter is set to NONE the snapshots continue to fire but do not appear to collect any data.


Add Comment

Standard emoticons like :-) and ;-) are converted to images.
E-Mail addresses will not be displayed and will only be used for E-Mail notifications.
BBCode format allowed
 
 

Statistics on Partitioned Tables

Contents

Part 1 - Default options - GLOBAL AND PARTITION
Part 2 - Estimated Global Stats
Part 3 - Stats Aggregation Problems I
Part 4 - Stats Aggregation Problems II
Part 5 - Minimal Stats Aggregation
Part 6a - COPY_TABLE_STATS - Intro
Part 6b - COPY_TABLE_STATS - Mistakes
Part 6c - COPY_TABLE_STATS - Bugs and Patches
Part 6d - COPY_TABLE_STATS - A Light-bulb Moment
Part 6e - COPY_TABLE_STATS - Bug 10268597

Comments

Doug Burns about 10053 Trace Files - Different Plan in Different Environments
Tue, 02.04.2013 08:57
You're welcome. Now I just nee d to pull my finger out and ac tually come up [...]
Howard Rogers about 10053 Trace Files - Different Plan in Different Environments
Mon, 01.04.2013 23:08
Makes a big difference, so tha nks for that! With two brow ser windows, o [...]
stelioscharalambides.com about 10053 Trace Files
Sat, 30.03.2013 16:28

Upcoming Presentations

Bookmark

Open All | Close All

Syndicate This Blog

  • XML RSS 2.0 feed
  • ATOM/XML ATOM 1.0 feed
  • XML RSS 2.0 Comments
  • Feedburner Feed

Powered by

Serendipity PHP Weblog

Show tagged entries

xml 11g
xml ACE
xml adaptive thresholds
xml ASH
xml Audit Vault
xml AWR
xml Blogging
xml conferences
xml Cuddly Toys
xml Database Refresh
xml DBMS_STATS
xml Direct Path Reads
xml Fun
xml grid control
xml hotsos 2010
xml listener
xml Locking
xml oow
xml oow2009
xml optimiser
xml OTN
xml Parallel
xml Partitions
xml Patching
xml swingbench
xml The Reality Gap
xml time matters
xml ukoug
xml ukoug2009
xml Unix/Shell
xml Useful Links

Disclaimer

For the avoidance of any doubt, all views expressed here are my own and not those of past or current employers, clients, friends, Oracle Corporation, my Mum or, indeed, Flatcat. If you want to sue someone, I suggest you pick on Tigger, but I hope you have a good lawyer. Frankly, I doubt any of the former agree with my views or would want to be associated with them in any way.

Design by Andreas Viklund | Conversion to s9y by Carl