Subject | RE: [firebird-support] How to exclude index from plan? |
---|---|
Author | Rick Debay |
Post date | 2006-11-20T19:20:54Z |
> If it's a char field, you might use concatenation rather thanaddition.
You're right, I should have seen that. I think I'll blame decompression
sickness from yesterday's dive :-)
-----Original Message-----
From: firebird-support@yahoogroups.com
[mailto:firebird-support@yahoogroups.com] On Behalf Of Ann W. Harrison
Sent: Monday, November 20, 2006 12:27 PM
To: firebird-support@yahoogroups.com
Subject: Re: [firebird-support] How to exclude index from plan?
Rick Debay wrote:
> I need to give Firebird 2 a hint to not use an index in the querybelow.
> However, changingIf it's a char field, you might use concatenation rather than addition.
> WHERE
> po.REPLENISH_GRP = ? AND
>
> To
>
> WHERE
> po.REPLENISH_GRP+'' = ? AND
>
Regards,
Ann