지금 지원 담당자와 채팅
지원 담당자와 채팅

Classification Module 6.1.2 - User Guide

Introduction Deploying Classification in Identity Manager Configuring Classification: Taxonomies, Categories, and Rules
An Overview of Classification Configuration Steps Required to Implement Classification Creating Taxonomies Implementing Rules for Automated Categorization Classifying Resources When Do Categorization and Classification Occur? Managing the Life Cycle of Taxonomies and Categories
Appendix A: PowerShell Commands Appendix B: Oracle Configuration Appendix C: Classifying Data with Data Governance Templates Appendix D: Creating a Taxonomy to Classify Data

Text Extractor Management

The following commands in the Quest.Classification snapin can be used to manage text extractors. For information on using the Web Portal, see Working with Text Extractors.

Use this command If you want to...
Add-QAdvancedTextExtractor Add a new advanced text extractor to the system.
Add-QDictionaryTextExtractor Add a dictionary text extractor to the system.
Add-QRegexTextExtractor Add a regular expression text extractor to the system.
Confirm-QTextExtractor Test the validity of a text extractor. (Note: This tests whether the text extractor can be processed by the classification system.) If the text extractor is not valid, it will not be available for use with the classification system.
Get-QAdvancedTextExtractors View the list of all advanced text extractors and their general properties (including IDs) used in the system.
Get-QDictionaryTerms View the terms associated for a given dictionary text extractor.
Get-QDictionaryTextExtractors View the list of all dictionary text extractors and their general properties (including IDs) used in the system.
Get-QRegexTextExtractor View the list of all advanced text extractors and their general properties (including IDs) used in the system.
Get-QTextExtractors View the list of all text extractors and their general properties (including IDs) used in the system.
Get-QRulesAssociatedWithTextExtractor View the list of rules that have been associated with a given text extractor. You must know the extractor ID.
New-QDictionaryTerm Create a new dictionary term.
Remove-QTextExtractor Remove a text extractor from the system. You must know the text extractor ID.

Note: Before you can remove a text extractor from the system, you must remove any associations to rules. You can see which rules are associated with each text extractor and remove them through the web portal.
Set-QAdavncedTextExtractor Edit the advanced text extractor properties. You must know the text extractor ID.
Set-QDictionaryTextExtractor Edit the dictionary text extractor properties. You must know the text extractor ID.
Set-QDictionaryTerms Update the terms included in a dictionary text extractor.
Set-QRegexTextExtractor Edit the regular expression text extractor properties. You must know the text extractor ID.
Set-QTextExtractor Edit the text extractor general properties. You must know the text extractor ID.

Classification Analysis

The following commands in the Quest.Classification snapin can be used to analyze classification and troubleshoot category and rule development. For information, see Testing and Reviewing Automated Classification.

Use this command If you want to...
Get-QClassificationAnalysis Gain deeper understanding into a resource’s categorization. View all categories with matching rules.
Get-QAppliedCategories View a list of the categories applied to a resource.
Get-QResourceTextExtracted See what text is being evaluated for a resource.
Get-QAllRuleResults View the results of all rules in the system when run against a test file.
Get-QRuleResults View the results of a specific rule in the system when run against a test file.
Get-QClassifiedResources View a list of resources that have been classified on a specified managed host.

Appendix B: Oracle Configuration

Using an Oracle Database for Classification

If you are using an Oracle database, you need to create the required tablespaces before installing the Classification server. You can either run the following SQL script or manually create the tablespaces.

NOTE! You must also ensure that the Classification server has the ADO client for Oracle (32bit version of ODP.Net) installed. Supported versions include ODAC 11.2 Release 3 or higher. For details, see Using an Oracle Database for Classification.

To create and configure the tablespaces with a script

  • Connect to your SQL editor as the Sys account with the SYSDBA role and run the following script:
    DEFINE topic_tbs_name = 'TopicService'DEFINE topic_tbs_file = 'topicservice_ts.dbf'DEFINE topic_user_name = 'TopicService'DEFINE topic_user_pwd = 'myPassword1'DEFINE content_tbs_name = 'ContentService'DEFINE content_tbs_file = 'contentservice_ts.dbf'DEFINE content_user_name = 'ContentService'DEFINE content_user_pwd = 'myPassword1'DEFINE temp_tbs_name = 'TEMP'--Create TopicService tablespace and UserCREATE TABLESPACE &topic_tbs_name DATAFILE   '&topic_tbs_file' SIZE 10M AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITEDLOGGINGEXTENT MANAGEMENT LOCAL AUTOALLOCATESEGMENT SPACE MANAGEMENT AUTOFLASHBACK ON;CREATE USER &topic_user_name IDENTIFIED BY &topic_user_pwd DEFAULT TABLESPACE &topic_tbs_name TEMPORARY TABLESPACE &temp_tbs_name QUOTA UNLIMITED ON &topic_tbs_name;GRANT CONNECT, CREATE SESSION TO &topic_user_name;GRANT CREATE TABLE, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TRIGGER, CREATE ROLE TO &topic_user_name;--Create ContentService tablespace and UserCREATE TABLESPACE &content_tbs_name DATAFILE   '&content_tbs_file' SIZE 10M AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITEDLOGGINGEXTENT MANAGEMENT LOCAL AUTOALLOCATESEGMENT SPACE MANAGEMENT AUTOFLASHBACK ON;CREATE USER &content_user_name IDENTIFIED BY &content_user_pwd DEFAULT TABLESPACE &content_tbs_name TEMPORARY TABLESPACE &temp_tbs_name QUOTA UNLIMITED ON &content_tbs_name;GRANT CONNECT, CREATE SESSION TO &content_user_name;GRANT CREATE TABLE, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TRIGGER, CREATE ROLE TO &content_user_name;

To manually create and configure the tablespaces

  1. Create a tablespace for the Topic Service to use.
  2. Create an Oracle user for the Topic Service to use that has a default tablespace of the tablespace created in step 1.
  3. Grant the user CONNET, CREATE SESSION, CREATE TABLE, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TRIGGER, CREATE ROLE in that tablespace.
  4. Create a tablespace for the Content Service to use.
  5. Create an Oracle user for the Content Service to use that has a default tablespace of the tablespace created in step 4.
  6. Grant the user created in step 5 CONNECT, CREATE SESSION, CREATE TABLE, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TRIGGER, CREATE ROLE in that tablespce.
    When the installer creates the database, it creates a role that grants CONNECT, CREATE SESSION, SELECT, INSERT, DELETE, UPDATE and EXECUTE on the QCS objects. It will also assign the user to that role.
관련 문서

The document was helpful.

평가 결과 선택

I easily found the information I needed.

평가 결과 선택