SQL server over the internet -


i'm quite new sql, pardon me if noobish question.

i've migrated end of microsoft access database sql server. hope is, can distribute ms access programs front end, connect on internet specific sql server each client.

i'd able use sql server management studio manage sql server on internet.

my question simply, how can of that? ^

again, i'm pretty new this, presumed fair bit simpler.

any appreciated.

yes, can connect ms access remote sql server using generalized dsn-less call of driver:

driver={sql server};server=<serveraddress>;database=<dbname>;uid=<userid>;pwd=<password>;

or

driver={sql server};server=<serveraddress>;database=<dbname>;trusted_connection=yes;

simply, change <serveraddress> database server's ip address or location address. if need create linked tables, need establish connection in vba, link using tabledefs.


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -