• Try this:

    1. Create Several file groups and files on the new server

    USE [master]

    GO

    /****** Object: Database [My_DB] Script Date: 11/16/2015 14:35:10 ******/

    CREATE DATABASE [My_DB] ON PRIMARY

    ( NAME = N'My_DB', FILENAME = N'X:\SQLData\My_DB.mdf' , SIZE = 3072KB , MAXSIZE = 1024000KB , FILEGROWTH = 1024KB ),

    FILEGROUP [Drive_W]

    ( NAME = N'My_DB_4', FILENAME = N'C:\My_DB_4.ndf' , SIZE = 3072KB , MAXSIZE = 1024000KB , FILEGROWTH = 1024KB ),

    FILEGROUP [Drive_Y]

    ( NAME = N'My_DB_2', FILENAME = N'V:\My_DB_2.ndf' , SIZE = 3072KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB ),

    FILEGROUP [Drive_Z]

    ( NAME = N'My_DB_3', FILENAME = N'D:\My_DB_3.ndf' , SIZE = 3072KB , MAXSIZE = 1024000KB , FILEGROWTH = 1024KB )

    LOG ON

    ( NAME = N'My_DB_log', FILENAME = N'W:\My_DB_log.ldf' , SIZE = 1024KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)

    GO

    EXEC dbo.sp_dbcmptlevel @dbname=N'My_DB', @new_cmptlevel=90

    GO

    IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))

    begin

    EXEC [My_DB].[dbo].[sp_fulltext_database] @action = 'disable'

    end

    GO

    2. Create tables on each drive

    CREATE TABLE [dbo].[acr_myTable](

    [Id] [bigint] NOT NULL,

    [label] [nvarchar](max) NOT NULL

    ) ON [Drive_Z]

    --....... DRIVE_C, DRIVE_D and etc.

    3. Use Export Wizard to export data..

    4. Check you data allocation by scripting your database

    Good Luck!