We have a server that is running on hardware RAID1. We've needed to add additional disks, but unfortunately the raid controller doesn't support RAID10. So we've added another RAID1 array, and want to merge it together using Windows dynamic disks.
The documentation says "You can extend a simple volume onto additional dynamic disks to create a spanned volume".
So, I tried:
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
* Disk 0 Online 530 GB 1024 KB *
Disk 1 Online 200 GB 199 GB *
DISKPART> list volume
Volume ### Ltr Label Fs Type Size Status Info
---------- --- ----------- ----- ---------- ------- --------- --------
* Volume 0 C NTFS Simple 529 GB Healthy Boot
Volume 1 System Rese NTFS Simple 100 MB Healthy System
Volume 2 D DVD-ROM 0 B No Media
DISKPART> extend disk=1
Virtual Disk Service error:
The volume requires contiguous disk extents.
Any ideas what I'm doing wrong?