Jump to content

This topic is 6864 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Does anyone know how to do a search for fields containing over 500 characters?

Got a big SQL project coming up and need assistance.

Thnak you in advance!

Posted

The only way I can think to do this right now is to loop through your records, and omit the ones that have over 500 character, then show all omited.

Loop

If[Length(Field) > 499]

Omit record

end if

go to next record(Exit if last)

End Loop

Posted

You can create a calculation (result is number) with: Length ( theField) > 500

This will produce a 1 which is searchable; in fact, the calc can be stored within a Find Request as:

Field: newCalcField

Value: 1

Use only the Perform Find[] and store the Find Request there (forget Enter Find Mode[] here - it isn't needed). The calc is also indexable as ALL so searching will be fast.

LaRetta :wink2:

This topic is 6864 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.