Removing <cfqueryparam improves perfromance
Oracle 10g
Field type varchar2( 1 byte) 'Y' or 'N'
I have a slow performing query that runs up to 20 times faster when I remove <cfqueryparam> from the field
there are 6 filters in the where clause all have <cfqueryparam>
if I remove <cfqueryparam value = #selog#> and replace with
fp.org = '#selog#' 2011 ms
vs
fp.org = <cfqueryparam value = #selog#> 45028 ms
I have tried setting the cfsqltype thru various settings and quoting the value "#selog#". I also have this same filtered applied in othere queries without issue. My question is there cases cfqueryparam can negatively impact performance.
