How To Extract Filter Data from Discovery Accelerator
book
Article ID: 100065906
calendar_today
Updated On:
Description
Description
This guide will explain how to extract filter data from Discovery Accelerator (DA) in order to obtain specific information, such as the Author field, for a particular case. Extracting this data is useful when you need to analyze or manipulate it outside of DA, such as in an Excel file. This guide provides two methods to extract the filter data: using the DA Reports - Item Detail report and running a SQL query against the Customer database (DB).
Method 1: Using the DA Reports - Item Detail report
- Open the DA Client
- Click on the Reports tab.
- Once the status shows as Connected to report server, click the New button.
- In the Report Details panel:
- Click the drop down arrow for the Type field.
- Select the Item Detail report from the list of available reports.
- In the Name field, enter a name for the report being generated.
- In the Description field, enter a description for the report if needed. This is an optional field.
- In the Report Parameters panel:
- Click the Add button in the Parameter Values field.
- In the Select a case pop-up window:
- Use the Find feature or scroll through the list of DA Cases as needed.
- Select the DA Case on which the report is to focus. Note that only 1 DA Case can be selected per report run.
- Click the OK button.
- Click the Apply button to run the report.
- When the report status shows as ready, click the Preview tab to see the report.
- Click the Save icon to see a list of file format options to use when saving the report contents. Those options are:
- Word
- Excel
- PowerPoint
- PDF
- TIFF file
- MHTML (web archive)
- CVS (comma delimited)
- XML file with report data
- Data Feed
- Select the file format option desired to see a new pop-up with the options to either Open or Save.
- The Save option includes 3 options:
- Save
- Save as
- Save and open
- Once the report is saved, it can be opened in the application associated with the file format selected and sorted as needed to list the data as needed.
Method 2: Running a SQL query against the Customer DB
-
Use Microsoft SQL Server Management Studio to access the DA Customer DB.
-
Open a New Query window against the DA Customer DB.
-
Run the following SQL query in that New Query window after replacing the [SearchID] and [CaseID] placeholders with the actual values for the specific case and search containing the desired data:
SELECT Author FROM tblIntDiscoveredItems WHERE SearchID = [SearchID] AND CaseID = [CaseID]
Note: this query is specifically for the author's information for each message captured by the specified search. Other column names are available to be used if other data is needed instead of the authors.
-
Execute the query and retrieve the results, which will include only the Author field data for each message captured by the specified search.
-
Export the query results to an Excel file or any other desired format for further analysis or manipulation.
Note: If any further customization or complex queries, it is recommended to work with the SQL Team, as assisting with custom SQL queries falls outside of Support's area of expertise.
Issue/Introduction
How To Extract Filter Data from Discovery Accelerator
Was this article helpful?
thumb_up
Yes
thumb_down
No