Q1 How to fetch all discussions of the repository via Database
Description
A customer requested to fetch all the discussions of the repository in Prolaborate.
Note
The feature to view all discussions by Admin will be available in the upcoming Prolaborate version. As of now, until version 5.2, this feature is not available. Therefore, we can fetch all the discussions of the repository via the Database.
Step by Step instructions
Fetching Repository ID from the Database
a. Open MySQL or MsSql Database.
b. Locate the Prolaborate Database, for example, Prolab v4.4.2.15.
c. Navigate to the dbo.repositories table and Right-click on the table and choose "Select top 1000 Rows."
d. In the result page Identify the repository ID of the repository you want to fetch discussions from.
Fetching Discussions
a. Once you have the Repository ID copied, right-click on the Prolaborate Database and click "New query."
b. In the new query window, execute the following query:
select * from collaborations where Repository_Id = 'RepoID'
Note:
Ensure to replace 'RepoID' with the actual Repository ID you obtained.
Executing this query will fetch all discussions associated with the specified repository.
Tags
View All Discussion via Db, Repository ID, RepoID, MySql MsSql, Discussions, Repository Discussions.