微软 确认,它将 取消 某种 版权 方面的 限制 ,该 限制 阻止用户在90天的周期内将 虚拟 化的应用程序转移到另外的一台服务器上超过一次。同样,微软也称,它将开始提供新级别的技术支持以 针对 运行在 虚拟 服务器上的应用程序。 服务器 虚拟 技术允许 虚拟
微软确认,它将取消某种版权方面的限制,该限制阻止用户在90天的周期内将虚拟化的应用程序转移到另外的一台服务器上超过一次。同样,微软也称,它将开始提供新级别的技术支持以针对运行在虚拟服务器上的应用程序。
服务器虚拟技术允许虚拟机从一台物理服务器转移到另外一台,而不需要对用户进行干扰。但是在目前的微软条款下,用户必须重新指定一个软件版权来进行这种转移,并且只能在90天的时间周期内作一次的这种操作。
90天的限制取消将在9月1日针对大多数的微软服务器应用程序生效,这其中包括SQL Server 2008企业版、Exchange Server 2007 Service Pack1标准版和企业版、Dynamics CRM 4.0企业和专业版、Office SharePoint Server 2007以及微软的系统中心产品。总共算起来,41种服务器应用程序将受到影响。
这一动作在这之前就已经被业界的观察者们预见到了,就像Network World上周报道的那样。分析家们相信,时间上的限制无形当中会限制系统的灵活性并且让服务器的虚拟化的使用性降低。
但是,并不是所有的服务器应用程序都获得了这一新的、更加人性化的版权架构支持。Forrester研究公司的分析家Christopher Voce称,一个明显的缺失就是SQL Server标准版。显然,微软在试图告诉消费者,让他们升级到更贵的SQL Server企业版,Voce谈到。
“这一针对微软版权的变革是每一个人所期待的”,他谈到。“他们使用了这种更具灵活性的办法,这正是你期望微软的应用程序在虚拟环境上的表现。但是它并不是针对所有用户的。”
微软预计,许多客户都可以减少他们必须购买的版权数目,因为他们不需要针对每一台转移应用的机器都购买版权了。“你不必在这之前就针对每一个目标机器购买版权了”,微软集成虚拟化的高级主管Zane Adam谈到。
进行了这种改变之后,运行在虚拟机上的微软服务器应用程序就可以转移到
“server farm”中的任意一台服务器上了,这正是用户长期以来所想要的,同时还不需要支付额外的版权费用。
这种“server farm”具有广义的定义。举例来说,一个客户可以将服务器上的工作负载在从纽约转移到洛杉矶,而不需要支付额外的版权费用,Adam谈到。但是,将工作负载从美国转移到其它欧洲国家就需要额外的费用了。
这种90天的限制仍然在桌面上的应用程序上适用,比如微软的Office套装软件。Adam称,微软保留桌面的时间限制主要是因为,桌面的应用程序相比服务器应用程序不需要同样级别的可移动性(比较服务器产品)。
除了针对服务器应用程序减少90天的限制以外,微软还称,它将针对运行在服务器监管软件上的应用提供技术支持。在这之前,如果该产品运行在虚拟机上而不是物理机上,微软是不提供针对这种产品的支持的。当前,那些使用任意一个虚拟机上31个服务器应用程序的用户可以得到完全的技术支持。
但是这需要相对的约束:该支持只限于微软的Hyper-V虚拟化软件和已经被微软服务器虚拟化验证程序(SVVP)认可的第三方监管软件,而SVVP已经在今年6月发布了。到目前为止,Cisco、Citrix、Novell、Sun以及Virtual Iron已经开始通过这一验证过程。
最近增加到列表上的公司是VMware,它是x86虚拟化市场上的领导者。一位微软发言人在周二谈到,VMware已经加入到微软的服务器虚拟化验证程序中,这也就意味着VMware试图获得微软的监管软件的认证。一旦这个事情属实的话,微软将提供运行在VMware服务器上的微软应用程序的技术支持。但是,目前还不清楚何时这些支持计划得到落实。
在本周之前,微软就已经告诉Network World,称VMware已经被邀请加入到验证程序中,但是还没有最终加入。看来,VMware已经在本周一的下午作出了加入的决定。

MySQL processes data replication through three modes: asynchronous, semi-synchronous and group replication. 1) Asynchronous replication performance is high but data may be lost. 2) Semi-synchronous replication improves data security but increases latency. 3) Group replication supports multi-master replication and failover, suitable for high availability requirements.

The EXPLAIN statement can be used to analyze and improve SQL query performance. 1. Execute the EXPLAIN statement to view the query plan. 2. Analyze the output results, pay attention to access type, index usage and JOIN order. 3. Create or adjust indexes based on the analysis results, optimize JOIN operations, and avoid full table scanning to improve query efficiency.

Using mysqldump for logical backup and MySQLEnterpriseBackup for hot backup are effective ways to back up MySQL databases. 1. Use mysqldump to back up the database: mysqldump-uroot-pmydatabase>mydatabase_backup.sql. 2. Use MySQLEnterpriseBackup for hot backup: mysqlbackup--user=root-password=password--backup-dir=/path/to/backupbackup. When recovering, use the corresponding life

The main reasons for slow MySQL query include missing or improper use of indexes, query complexity, excessive data volume and insufficient hardware resources. Optimization suggestions include: 1. Create appropriate indexes; 2. Optimize query statements; 3. Use table partitioning technology; 4. Appropriately upgrade hardware.

MySQL view is a virtual table based on SQL query results and does not store data. 1) Views simplify complex queries, 2) Enhance data security, and 3) Maintain data consistency. Views are stored queries in databases that can be used like tables, but data is generated dynamically.

MySQLdiffersfromotherSQLdialectsinsyntaxforLIMIT,auto-increment,stringcomparison,subqueries,andperformanceanalysis.1)MySQLusesLIMIT,whileSQLServerusesTOPandOracleusesROWNUM.2)MySQL'sAUTO_INCREMENTcontrastswithPostgreSQL'sSERIALandOracle'ssequenceandt

MySQL partitioning improves performance and simplifies maintenance. 1) Divide large tables into small pieces by specific criteria (such as date ranges), 2) physically divide data into independent files, 3) MySQL can focus on related partitions when querying, 4) Query optimizer can skip unrelated partitions, 5) Choosing the right partition strategy and maintaining it regularly is key.

How to grant and revoke permissions in MySQL? 1. Use the GRANT statement to grant permissions, such as GRANTALLPRIVILEGESONdatabase_name.TO'username'@'host'; 2. Use the REVOKE statement to revoke permissions, such as REVOKEALLPRIVILEGESONdatabase_name.FROM'username'@'host' to ensure timely communication of permission changes.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Notepad++7.3.1
Easy-to-use and free code editor

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor
