Hi
I created an event filter with the field: sqlserver.sql_text and operator: like_i_sql_unicode_string, but It doesn`t return any information(the screen doesn't return the query)
My query is:
SELECT C.custid, C.companyname,
O.orderid, O.orderdate
FROM Sales.Customers AS C
INNER JOIN Sales.Orders AS O
ON C.custid = O.custid
ORDER BY C.custid, O.orderid;
Filter: Operator value
sqlserver.sql_text like_i_sql_unicode_string select c.custId,C.companyname%
I don't know where is the problem...