Scénario de test & Cas d'usage
Create temporary sensitive data for model training.
| 1 | |
| 2 | DATA mycas.sensitive_data; |
| 3 | DO i = 1 to 50; |
| 4 | x=rand('Normal'); |
| 5 | y=rand('Normal'); |
| 6 | OUTPUT; |
| 7 | END; |
| 8 | |
| 9 | RUN; |
| 10 |
| 1 | |
| 2 | PROC CAS; |
| 3 | copula.copulaFit TABLE={name='sensitive_data'} copula='GAUSSIAN' var={'x', 'y'} store={name='auditStore', replace=true}; |
| 4 | TABLE.dropTable name='sensitive_data'; |
| 5 | |
| 6 | RUN; |
| 7 |
| 1 | |
| 2 | PROC CAS; |
| 3 | copula.copulaViewStore / instore={name='auditStore'} viewOptions={minimal=true}; |
| 4 | |
| 5 | RUN; |
| 6 |
The action successfully reads 'auditStore' despite the source table 'sensitive_data' being deleted. It returns a minimal set of tables (Model Definition, Fit Summary), proving the item store is a self-contained artifact suitable for audit compliance.