/
How to retrieve announcements list from database into Bitbucket
How to retrieve announcements list from database into Bitbucket
This article explains how to retrieve the list of announcements created using the Announcer for Bitbucket Server app from the database and display it in your Bitbucket instance.
Instructions
- Log into the database.
- Use the schema that you are using for the Bitbucket instance. All announcements are stored in the AO_CE9B14_NOTIFICATION table.
Write a SELECT query to fetch the list of announcements that are created through Announcer for Bitbucket Server app from the database table.
select * from AO_CE9B14_NOTIFICATION;
The above query diaplys the list of announcements in your Bitbucket instance.
- Ensure to not run CREATE/UPDATE/DELETE operations directly from the database as these may impact the data at an application level.
- MySQL is the database used in this example.
, multiple selections available,
Related content
Retrieve user acceptance details of announcements from database into Bitbucket
Retrieve user acceptance details of announcements from database into Bitbucket
More like this
How to retrieve announcements list from database into Jira
How to retrieve announcements list from database into Jira
More like this
How to create a new Announcement in Announcer for Bitbucket server
How to create a new Announcement in Announcer for Bitbucket server
More like this
How to configure an announcement for specific project(s) in the Bitbucket Server
How to configure an announcement for specific project(s) in the Bitbucket Server
More like this
How to retrieve announcements list from database into Confluence
How to retrieve announcements list from database into Confluence
More like this
How to configure an announcement for a specific duration in Bitbucket
How to configure an announcement for a specific duration in Bitbucket
More like this