|
I have a scenario where I would like to do a two-layered lookup. I'm essentially doing an IP address lookup against a table ( There are a couple of reasons that push me to this 2-layered lookup approach:
So basically I'm looking for the logic: Use the first lookup, and if it fails for a given event, then (and only then) use the secondary lookup. What's the best way to accomplish this? |
|
Here is a the solution I came up with. (I welcome any feedback or alternate ideas.) Here is my search:
Explication: The goal of these search commands is to start with an Line I'm sure you're aware it's possible to make the first lookup implicit. The rest will likely to have to work something like what you've cooked up
(25 Jun '10, 21:55)
jrodman ♦
I actually have it setup that way too. So the
(25 Jun '10, 22:18)
Lowell ♦
There are a couple of ips that don't resolve and running that before
(25 Jun '10, 22:24)
Lowell ♦
|