first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / database / configuration / database / sql / find_prims_created_by.sql
1
2 # opensim select statement to find items in the prims table (items that still
3 # exist in some sim or at least exist in the database) that are owned by
4 # a particular avatar.  the {uuid} below should be replaced with the UUID
5 # that you care about showing prim ownership for.
6
7 select * from prims where creatorid = '{uuid}'
8
9 # this is a very similar select that shows the items which are NOT owned by
10 # the avatar in question.
11
12 select * from prims where creatorid != '{uuid}'
13