Move SQL Server 2008 to virtual machine

1

I have a physical server that uses SQL server 2008 in managing my warehouse.

We desperately want to virtualize this server.

Would I need to buy a new SQL server license? Or is there a way to use the same license when we move from physical to a virtual environment?

Nebur

Posted 2014-08-18T20:54:14.453

Reputation: 135

I guess you don't need a new one! – Am_I_Helpful – 2014-08-18T20:56:15.890

Your license allows for one single instance of SQL Server 2008. It does not matter if its an instance on a guest operating system or on the host operating system itself. – Ramhound – 2014-08-18T20:59:17.650

What if I no longer know the license key? How do I move the license from Physical to Virtual server? – Nebur – 2014-08-18T21:00:37.330

There are programs to extract the information without the key it cannot be transfered – Ramhound – 2014-08-18T21:39:42.150

Answers

1

If this is normal SQL Server License (not some kind of OEM) - I think you can use your SQL Server 2008 on virtual machine (according to this article on TechNet).

Microsoft licensing mechanisms are complicated, I think you should call to Microsoft and ask about this for reliable information.

SQL Server registration data is stored in registry, here:

SOFTWARE\Microsoft\Microsoft SQL Server\80\Registration

Technically - you can backup that registry part and restore it on virtual machine, however I'm not sure if this is not license violation. Maybe you should call to Microsoft and ask if you can use product if you lost your key.

Kamil

Posted 2014-08-18T20:54:14.453

Reputation: 2 524