--- title: "IMPORT (DMX) | Microsoft Docs" ms.date: 06/07/2018 ms.prod: sql ms.technology: analysis-services ms.custom: dmx ms.topic: conceptual ms.author: owend ms.reviewer: owend author: minewiskan --- # IMPORT (DMX) [!INCLUDE[ssas-appliesto-sqlas](../includes/ssas-appliesto-sqlas.md)] Loads a mining model or mining structure from an Analysis Services Backup File (.abf) file onto the server. ## Syntax ``` IMPORT FROM ``` ## Arguments *filename* A string containing the name and location of the file to import. ## Remarks If no objects are specified, the entire contents of the .dmb file will be loaded. If the .dmb file includes a database that does not exist on the server, the database will be created. You must be a database or server administrator to export or import objects. ## Import from File Example The following example imports the entire contents of the file containing the association model and structure onto the current server. ``` IMPORT FROM 'C:\TEMP\Association_NEW.dmb' ``` ## See Also [Data Mining Extensions (DMX) Data Definition Statements](../dmx/dmx-statements-data-definition.md) [Data Mining Extensions (DMX) Data Manipulation Statements](../dmx/dmx-statements-data-manipulation.md) [Data Mining Extensions (DMX) Statement Reference](../dmx/data-mining-extensions-dmx-statements.md) [EXPORT (DMX)](../dmx/export-dmx.md) [Export and Import Data Mining Objects](https://docs.microsoft.com/analysis-services/data-mining/export-and-import-data-mining-objects)