Reputation: 1290
1) Is SSCE (SQL Server Compact Edition) a local only database? Meaning I can't access it from anywhere else but the host machine?
2) It supports up to 256 connections locally?
3) Are there any good tools available for converting an empty mdf with no stored procedures or triggers to a CE sdf?
4) When you run the install for this, does it open any ports at all? I wouldn't think so but my boss is convinced it does.
5) Does SQL Server Management Studio open any ports by default upon installation?
Thanks for reading and any insight you can provide :)
Upvotes: 2
Views: 833
Reputation: 37819
Just a note: I answered Question #1 on the concept of attempting to use the SSCE as a SERVER which a secondary computer attaches to, as opposed to mounting the DB File from a Shared Drive. For example, in SQL Express, I can place an instance onto a server, and have multiple applications connect to it, and I can also mount the file associated with a DB into my local instance of SQL Express from a shared drive. In SSCE, one can mount the file, but can't act as a server.
Upvotes: 3
Reputation: 36438
As to the open ports the best way to check is simply to do an install with something like wireshark running.
Upvotes: 3