Hi, I need to run a search ,take the output, and pass it to a dbxquery search via map search. So when i do this as below without the search and th map, every thing work : | dbxquery query="EXEC [CTS2_Repository].[dbo].[C_sp_CallTransac] 'DE1', '2021-03-02 00:00:00', '2021-03-02 23:59:59'" connection=10VM_CI_BI_UAT But when i transform that as below, i get the error "Search Factory: Unknown search command 'cts2'." | eval cust_id="DE1" | map search=\" | dbxquery procedure=\\\"{{call [CTS2_Repository].[dbo].[C_sp_CallTransac](?,?,?)}}\\\" connection=\"10VM_CI_BI_UAT\" params=\\\"\\\"$cust_id$\\\", 2021-03-03 00:00:00, 2021-03-03 23:59:59\\\"\" Any help is appreciated.
... View more