I've asked this question before but I usually get the same response (create a user table) but this isn't quite what I'm looking for.
I don't want people to log in as they open a db. I want to limit the number of machines (10) using the dbs.
I have a small collection (12) of DBs (split). I don't want more than ten operators at a given time.
I can create a table in the backend linked to the front end dbs (showing the number of people of logged in).
I initially thought ... limit the table to 10, create 10 logged in fields (Y/N). When the first user logs in change field1 from no to yes. When the next user logs in, check field1 (if yes change field2 to yes) and so forth. I believe this will work; however, if the same user opens another db, that user will be logged in as a second user (which I don't want).
I want to limit the number of machines/people. These people should be able to open one or more of the dbs.
Instead of having one table, I suppose I could create this table for each of the dbs. This would probably work. I would prefer to have one table for all the dbs.
I have a simple brain. Please help
I don't want people to log in as they open a db. I want to limit the number of machines (10) using the dbs.
I have a small collection (12) of DBs (split). I don't want more than ten operators at a given time.
I can create a table in the backend linked to the front end dbs (showing the number of people of logged in).
I initially thought ... limit the table to 10, create 10 logged in fields (Y/N). When the first user logs in change field1 from no to yes. When the next user logs in, check field1 (if yes change field2 to yes) and so forth. I believe this will work; however, if the same user opens another db, that user will be logged in as a second user (which I don't want).
I want to limit the number of machines/people. These people should be able to open one or more of the dbs.
Instead of having one table, I suppose I could create this table for each of the dbs. This would probably work. I would prefer to have one table for all the dbs.
I have a simple brain. Please help