Can you please explain the difference between MS SQL Device and User CAls. I need the MS SQL Server for an intranet website, how do I assess whow many license I need and what type?
|
|
|
|
|
|
|
No, I'm sorry. That would not be OK according to the licensing terms. This kind of design where multiple users uses an SQL-server but connects through an application server is called Multiplexing. This application server can be anything from a 3rd-tier service to a simlpe webserver. To prevent people to simply running their database enabled systems through webservices or simple application "proxies" to avoid licensing costs Microsoft has specifically designed their licensing to prevent this. So, basically. If you run website (public or intranet) that connects to an MS SQL Server you would need CAL's for every possible user. Unless, ofcourse, you purchase CPU-licenses. |
||
|
|
|
Well, there's a big difference between a Device and a User CAL.
So, how to decide? Depends on your architecture. The rules are simple:
Be sure to take into consideration how the user/device map might grow in the future. |
||
|
|
|
|
As quoted from this article:
So, do a break-even analysis - how wide is the audience for this web app, would you ever want to use the same SQL instance for other webapps, and would the total number of users exceed the cost of a processor license? Most likely, a processor license will be the way to go. |
||
|
|
|
|
The difference is simple: CAL = Client Access License (nothing to do with MS-Access tho). Device = Device License. So the difference relies on how you want your users to connect. If you have 10 users, you'll need 10 licences. Either CAL or Device. This is best described by Microsoft itself:
That means, you have 10 users, but 5 computers. So the users "share" the Licence. The licence belongs to the device (computer or whatever). On the other hand…
You could have only 5 users, but each user has two computers (One laptop and one desktop). The license "belongs to the user". So when you (the user) login, you're using your CAL. If you logoff, you can later relogin from another computer, using your USER CAL. Hope this helps :) It's a little bit weird. In your case, since you're going to use an intranet website, the connection is always established from the server's backend to the SQL, you might want to consider Processor License; In that scenario, you pay per processor on the server (CPUs) and need neither User CAL nor Device CAL. If you talk to Microsoft, they'll often offer you the best alternative for your scenario. Good Luck! |
||
|
|
|
|
This is a server app where the application server would access the database all the time hiding the user. I am thinking to go with device license, because it is always the same machine who is going to access the DB. Is this the correct thinking? |
||
|
|
