Use this tag for questions involved a sudden degradation in query performance related to query plan changes based on supplied parameters.
Parameter Sniffing is a term mostly associated with SQL Server. It's often used to describe the phenomenon of a query plan that was cached with one set of parameters, that performs poorly with another set of parameters. It can happen to stored procedures, parameterized code, and queries called with sp_executesql, etc.
See this Q&A for guidance on collecting information for assistance: - Why is my query suddenly slower than it was yesterday?