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.
| Parameter | Description |
|---|---|
| destinationName | Specifies 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. |
| sourceURL | Specifies 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. |
The HTML documentation snippet does not contain data creation examples for this action.
| 1 | /* No |
| 2 | data creation example provided in the documentation snippet */ |
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.
| 1 | PROC CAS; |
| 2 | qkb.importQKBFromURL / destinationName='MyQKB', sourceURL='https://example.com/path/to/myqkb.qarc'; |
| 3 | RUN; |
| 4 | QUIT; |
The HTML documentation snippet does not contain detailed examples for this action.
| 1 | /* No detailed example provided in the documentation snippet */ |