RE: [U2] [UV] SEARCH command

2007-03-08 Thread Bill Haskett
Peter: Look here: http://www.pickwiki.com/cgi-bin/wiki.pl?BFind I modified the old version, for UniData, to make it case insensitive by default. It should just run in the U2 environment. Hope this helps. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On B

RE: [U2] [UV] SEARCH command

2007-03-08 Thread karlp
d output to a > file to pull record IDs as they are found when running this against any > seriously large tables. > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > [EMAIL PROTECTED] > Sent: Thursday, March 08, 2007 10:18 AM

RE: [U2] [UV] SEARCH command

2007-03-08 Thread Stevenson, Charles
I've often wanted the same. Often. Is there a [BB] (Better&Better) Enhancement Request buried here? > From: Peter Veenhof > Is anyone familiar with the TCL command SEARCH? I can do a > 'SEARCH filename ALL.MATCH' command at TCL and then it > prompts for search criteria. I am wondering if it is

RE: [U2] [UV] SEARCH command

2007-03-08 Thread Peter Veenhof
-- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, March 08, 2007 10:18 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [UV] SEARCH command Peter Search is case sensitive. The best case-insensitive equivalent (though slower) is to use a SELECT comma

RE: [U2] [UV] SEARCH command

2007-03-08 Thread brian
Peter Search is case sensitive. The best case-insensitive equivalent (though slower) is to use a SELECT command: SELECT yourfile WITH EVAL "UPCASE(@RECORD)" LIKE "...YOUR_PHRASE..." Brian Hi all, Is anyone familiar with the TCL command SEARCH? I can do a 'SEARCH filename ALL.MATCH' command at