-
Re: Getting users login history and frequency
Hi @hisyam , An alternative solution is to filter the audit logs outside DSS. You can download the audit logs on a local folder and then filter the audit files by making use of grep command. You can …2 · -
Re: dkuSourceLibR() in Rmarkdown report error
Hi @AndriaM , Importing custom libraries in R Markdown Report using dkuSourceLibR() is not working if your DSS instance has UIF enabled. A possible option is to add the R files to a managed folder, t…1 · -
Re: Excel file import error: caused by: IOException: Zip bomb detected!
Hi @Oh_Lily , The message shows the error "Zip bomb detected" which refers to an attack vector in which a small zip file expands to an extremely large size when uncompressed to the point th…1 · -
Re: Split and rename columns
Hi @jasonsnare , You can get the desired output without using Python code. You can use a Prepare recipe with below steps: - use split function and delimiter "||" in order to split the origi…1 · -
Re: filter or split the dataset.
If colA from your dataset contains strings, you can use a formula like below to filter the data: !contains(colA, "text")1 ·