SQL Server DataBase Synchronization -
Is SQL Server compatible with many processes? Is it possible to get synchronized to work in the database so that more than one process is used at the same time?
The SQL server is designed to handle multiple processes working simultaneously on the same data (Through various lock mechanisms etc.). You can also control the level of synchronization / isolation through the SET transfer algorithm
statement. ()
Comments
Post a Comment