|
-
Feb 22nd, 2003, 11:39 PM
#1
Thread Starter
Addicted Member
Newbie SQL Server question
Hi all,
I am about to convert a VB app using Access to SQL server.
The app uses a split db ie. a client side db and a server side db.
My question relates the the client side db. If this is converted to SQL server db, the client machine should have the required files to run the client db right ?
Obviously the server side will work as SQL server is installed on the server.
If someone can confirm that I will have no probs on the client side or if I will need to install some runtimes it would be much appreciated.
Just starting to learn SQL server so just want to make sure before I start.
Cheers
Jack
-
Feb 23rd, 2003, 02:13 PM
#2
SQL Server is much more powerful than Access, so depending on your needs, there may be no reason for a Client side DB.
How do you use the Client side DB? What data does it store?
Microsoft offers the MSDE, free if you have the correct licenses, that can be used as a client side db.
-
Feb 23rd, 2003, 02:33 PM
#3
Thread Starter
Addicted Member
The client side holds some blank tables used to store temporary data and perform some number crunching before sending the results to the server db for storage.
As there is quite a lot of data entry, I thought it much more efficient to use this type of architecture. There server db does not need to hold the data entry, just the results of crunching the data.
Cheers
Jack
-
Feb 24th, 2003, 07:56 AM
#4
Hyperactive Member
the company i work for is actively trying to move away from this type of architecture, where you have maybe an access db holding company product info and then the relevent stuff gets synced to a sql server db. in my experience having various disparated data sources is not a good thing.
-
Feb 24th, 2003, 06:12 PM
#5
Here's a thought...
Create your temp tables in SQL Server. Make them user dependent. In other words, add a field that has the user name. Then when your done commit the data and clean up the temp table based on the user name. This will keep everything on the server.
-
Feb 24th, 2003, 11:48 PM
#6
Thread Starter
Addicted Member
Thanks for all the suggestions...I am looking at replication as an option at the moment.
This will enable to draw down a copy of the "client db" do the crunching and upload into the "server db".
Cheers
Jack
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|