8

SQL Azure Database Size Calculator

http://feedproxy.google.com

Ryan Dunn, the Technical Evangelist for Windows Azure, posted a neat trick on how to measure your database size in SQL Azure.  Here is the exact queries you can run to do it:
select
sum(reserved_page_count) * 8.0 / 1024
from
sys.dm_db_partition_stats
GO
select
sys.objects.name, sum(reserved_page_count) * 8.0 / 1024
from
sys.dm_db_partition_stats, sys.objects
where
sys.dm_db_partition_stats.object_id = sys.objects.object_id


Read more »
scriptguy's picture
Created by scriptguy 0 sec ago – Made popular 16 hours 46 min ago
Category: Microsoft   Tags:
12

Virtualization for Server Workloads: Avanade Case Study, NetApp Whitepaper

http://blogs.technet.com

Our customers often deploy Microsoft server workloads, such as SQL Server, SharePoint and Exchange, on Microsoft Hyper-V and System Center, and want to know how other customers have deployed these workloads and if there are deployment guidelines from specific solution partners that can help optimize for scale and business continuity.
A case in point is our customer Avanade.


Read more »
aaron's picture
Created by aaron 1 day 12 hours ago – Made popular 2 days 9 hours ago
Category: Microsoft   Tags:
12

Guest post: Intel discusses iSCSI and 1 million IOPs

http://blogs.technet.com

Hi, I'm Jordan Plawner, storage networking product planner from Intel.


Read more »
scott's picture
Created by scott 1 week 6 days ago – Made popular 1 week 6 days ago
Category: Microsoft   Tags:
8

Red Hat Enterprise Linux and Hyper-V

http://blogs.technet.com

Hyper-V customers are running both SUSE Linux Enterprise Server and Red Hat Enterprise Linux as guests. We have provided Linux integration components for SUSE Linux Enterprise Server, but customers did not have the same level of performance with Red Hat Enterprise Linux as a guest since the IC’s were not supported for RHEL.


Read more »
patricia's picture
Created by patricia 2 weeks 13 hours ago – Made popular 2 weeks 1 day ago
Category: Microsoft   Tags:
8

MDOP 2010 Launches, with 64-bit version of App-V 4.6

http://blogs.technet.com

Earlier today we announced important updates for IT pros considering Windows 7 deployment. Specifically, we released Microsoft Desktop Optimization Pack (MDOP) 2010, which includes App-V 4.6, supporting Windows Server 2008 R2 x64 for RDS and Office 2010.


Read more »
scott's picture
Created by scott 2 weeks 1 day ago – Made popular 2 weeks 2 days ago
Category: Microsoft   Tags:

Recent comments