qkb

importQKBFromURL

Description

The 'importQKBFromURL' action facilitates the import of a Quality Knowledge Base (QKB) into the SAS Cloud Analytic Services (CAS) environment directly from a specified URL. A QKB is a collection of rules, definitions, and data used by SAS Data Quality to perform operations such as parsing, standardization, and matching of data. This action is crucial for integrating external or custom QKB resources into your CAS server, making them available for data quality operations on in-memory tables.

qkb.importQKBFromURL <result=results> <status=rc> / destinationName="string", sourceURL="string";
Settings
ParameterDescription
destinationNameSpecifies the name by which this QKB will be known after it is imported. This name is used to reference the imported QKB in subsequent data quality operations within CAS. It must be a unique string.
sourceURLSpecifies a URL pointing to the location of the QARC file to import. The QARC file is a compressed archive containing the QKB definition and associated resources. The URL must be accessible by the CAS server.
Data Preparation View data prep sheet
N/A

The HTML documentation snippet does not contain data creation examples for this action.

Copied!
1/* No
2data creation example provided in the documentation snippet */

Examples

This example demonstrates how to import a QKB named 'MyQKB' from a remote URL. The 'destinationName' parameter assigns the QKB a recognizable name within CAS, and 'sourceURL' provides the full path to the QARC file.

SAS® / CAS Code Code awaiting community validation
Copied!
1PROC CAS;
2 qkb.importQKBFromURL / destinationName='MyQKB', sourceURL='https://example.com/path/to/myqkb.qarc';
3 RUN;
4QUIT;
Result :
The QKB specified by 'sourceURL' is successfully imported into CAS and is available under the name 'MyQKB'. A success message or status code is returned.

The HTML documentation snippet does not contain detailed examples for this action.

SAS® / CAS Code Code awaiting community validation
Copied!
1/* No detailed example provided in the documentation snippet */
Result :
N/A