Searching for a specific ID in a large database?
I need to look up an ID in a very large database. The ID is: 0167a901-e343-4745-963c-404809b74dd9 The database has hundreds of tables, and millions of rows in the big tables. I can narrow the date to within the last 2 or 3 months, but that's about it. I'm looking for any clues as to how to narrow down searches like this. One thing I'm curious about is whether using LIKE searches helps. i.e does it help to do something like select top 10 * from BIG_TABLE where DESIRED_ID like '016%' Any tips/suggestions are greatly appreciated . The database is being accessed remotely so that's part of the