Select "blah" INTO GetUser()

E

Edro

I hope the subject line speaks for itself..

AS you can see I am trying to create a multiuser app without splittin
the database. No Client allowed on PC's ..Bummer :(.
Has anyone attempted to create temp tables named from the users
network logon?

Any assistance with this would be most greatly appreciated..

Edr
 
N

Nikos Yannacopoulos

Edro,

"SELECT blah INTO " & Environ("UserName") & " WHERE ....."

Beware, though, that a monolithic multiuser database is a recipe for
disaster; it may not happen immediately, but it's bound to corrupt, plus the
bloat (in between corruptions, that is) will be amazing! If you're not
allowed to install FE's on the users' PC's, then still split the database
and put a separate copy of the FE for each user on the network.
It's worth spending some time in the multiuser NG, you'll find some useful
stuff as well as interesting horror stories of monolithic multiuser
databases, or split ones with a common FE for all users (trust me, I learnt
the hard way).

HTH,
Nikos
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top