Re: Replication/synchronization in a SQL Server 2K db
From: Val Mazur (group51a_at_hotmail.com)
Date: 03/06/04
- Next message: Val Mazur: "Re: common recordset variable for DAO and ADO"
- Previous message: Val Mazur: "Re: Using ado not rdo"
- In reply to: Oscar: "Replication/synchronization in a SQL Server 2K db"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 5 Mar 2004 22:31:40 -0500
Hi,
1. Yes, you could replicate database. See next KBs about it
http://support.microsoft.com/default.aspx?scid=kb;en-us;321822&Product=sql
http://support.microsoft.com/default.aspx?scid=kb;en-us;324992&Product=sql
http://support.microsoft.com/default.aspx?scid=kb;en-us;190797&Product=sql
2.Yes, you can modify structure of the tables. You could do this using ALTER
TABLE or other DDL statement. You could simply execute them using Execute
method of ADO Connection
MyADOConnection.Execute "ALTER TABLE ...."
Another way to alter database is to use SQL DMO COM library from VB.
-- Val Mazur Microsoft MVP "Oscar" <oku@xs4all.nl> wrote in message news:40475b4b$0$115$e4fe514c@dreader10.news.xs4all.nl... >I am considering to port a VB-Access to a VB MS SQL Server 2K. The main > reason for this is to achieve a robust database application that can be > accessed by more than 10 users and also from the internet. One of the main > goals is also replication/synchronisation facilities. Does SQL server 2K > feature database replication/synchronisation abilities such as remote > users > who can connect by a laptop around the internet in order to synchronise > the > data ? > > Another issue is the possibility to edit the database structure (adding > and > editing tables and fields by VB code). Is that possible within a VB-MS SQL > server 2K environment ? > > regards, > Oscar > >
- Next message: Val Mazur: "Re: common recordset variable for DAO and ADO"
- Previous message: Val Mazur: "Re: Using ado not rdo"
- In reply to: Oscar: "Replication/synchronization in a SQL Server 2K db"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|