In all the examples above the decision problem is in P and the search problem is not known to be in P but not known to be NP-hard either. I want to point out that it is possible to have an NP-hard search problem whose decision version is easy.
Consider the generalized satisfiability problem for given relations R1,…,Rk over Boolean domain {0,1}. An instance is an expression of the form
Ri1(t11,…,t1r1)∧⋯∧Rim(tm1,…,tmrm)
where the
tij's are either variables or constants in
0,1, and
r1,…,rm are the arities of
R1,…,Rk (this is the same framework as in Schaeffer's dichotomy theorem with constants, in case you know what it is). The search problem is: given such an expression, find a lexicographically minimal solution, if there is one.
It was shown by Reith and Vollmer here that there exists a choice of relations R1,…,Rk that make this problem NP-hard (actually OptP-complete) but keep the satisfiability problem easy (quite trivial actually). An example given in the paper is R={(1,0,0),(0,1,0),(1,1,1)} (here k=1). Once the satisfiability problem is solvable in polynomial-time, the question whether there exists a lexicographically minimal satisfying assignment is trivial.
See Corollary 13 and the example following it in the paper above (at least in this on-line version).