- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Microsoft
- >
- Re: How to install or enable Advanced Queue (AQ) i...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2006 08:24 AM
тАО08-31-2006 08:24 AM
How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2
How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2. My OS is Windows XP.
Kindly give the detail steps.
..Minh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 01:05 AM
тАО09-01-2006 01:05 AM
Re: How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2
Advanced Queuing should already be available with your installation.
verify that the dbms_aqadm package is available.
if you want, we can provide you with a simple example
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 02:38 AM
тАО09-01-2006 02:38 AM
Re: How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 05:05 AM
тАО09-01-2006 05:05 AM
Re: How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2
This is the history of the database that I inherited:
-- Oracle 9.2
-- an upgrade was executed to bring it to Oracle 10g Release 2.
I would like to re-install Advanced Queuing. Is this possible?
Please send me the simple example.
..Minh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2006 05:31 PM
тАО09-01-2006 05:31 PM
Re: How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2
to start with, try to install the two packages (DBMS_ADM and DBMS_AQ) from the $ORACLE_HOME/rdbms/admin directory.
then as a test, you can create the following user:
CREATE USER aq IDENTIFIED BY aq;
GRANT CONNECT, RESOURCE, aq_administrator_role TO aq;
GRANT EXECUTE ON dbms_aq TO aq;
GRANT EXECUTE ON dbms_aqadm TO aq;
begin
dbms_aqadm.grant_system_privilege('ENQUEUE_ANY','AQ',FALSE);
dbms_aqadm.grant_system_privilege('DEQUEUE_ANY','AQ',FALSE);
end;
/
After you are able to create this user, you will be able to proceed with any test that you may wish
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2006 09:40 AM
тАО09-05-2006 09:40 AM
Re: How to install or enable Advanced Queue (AQ) in the oracle database 10g Release 2
Thank you for the help. I follow your suggestion to re-install the Advanced Queue package.
..Minh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-05-2006 09:43 AM
тАО09-05-2006 09:43 AM