I’m a SQL DBA and my SAN admin said that they have to migrate few drives from HP 3PAR 7400 to EMC CX4. So SAN team wants to have a downtime on sql servers to migrate the drives.
What was am thinks was, is their any possibility to migrate the storage without bringing down the sql?
i.e I have D drive with 100GB of 3PAR is it possible to add EMC CX4 (100GB) to D drive and make it 200GB. later remove 100GB of 3PAR from D drive.
Please let me know is this possible?
I will rephrase this question thus:
The answer is yes and it's very simple with Enterprise Edition. For example, assuming that current filegroup is
CustomUserObjects
(D:\MSSQL\Data\DataFile.mdf
) and we have to move these tables to another filegroupNewCustomUserObjects
(G:\MSSQL\Data\DataFile.mdf
) then[1] For clustered & nonclustered indexes could be used following approach:
The same approach could be used also for
NONLCLUSTERED
indexes.[2] For heap tables, one clustered index could be created (
CREATE ... INDEX ... ONLINE = ON
) followed by aDROP INDEX ... ON ....
.More details here.
This approach has few limitations. The most important are:
[1] Some indexes (ex. spatial & xml indexes) could not be moved ONLINE.
[2] It will leave BLOBs (
[n]varchar(max)
,varbinary(max)
,xml
, etc.) values stored within old filegroup but there are some solutions.[3] For FULL / BULK LOGGED databases, it will generate a lot of entries within database transaction log (ex.
*.ldf
) thereby affecting all functionalities based on Tx log: log shipping, database mirroring, AO Availability Groups, transaction replication, Change Data Capture, etc.