---
title: "FOR XML Security Considerations (SQLXML)"
description: Learn about important security considerations when specifying FOR XML AUTO mode in SQLXML 4.0.
author: MikeRayMSFT
ms.author: mikeray
ms.date: "03/06/2017"
ms.prod: sql
ms.prod_service: "database-engine, sql-database"
ms.technology: xml
ms.topic: "reference"
ms.custom: "seo-lt-2019"
helpviewer_keywords:
- "NESTED mode"
- "client-side XML formatting"
- "FOR XML clause, security"
- "server-side XML formatting"
- "AUTO mode"
- "security [SQLXML], FOR XML"
ms.assetid: facba279-df93-475b-ad43-0043dc5bae03
monikerRange: "=azuresqldb-current||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current"
---
# FOR XML Security Considerations (SQLXML 4.0)
[!INCLUDE [SQL Server Azure SQL Database](../../../includes/applies-to-version/sql-asdb.md)]
The FOR XML AUTO mode generates an XML hierarchy in which element names map to table names and attribute names map to column names. This exposes the database table and column information. You can hide the database information when you use AUTO mode (server-side formatting) by specifying table and column aliases in the query. These aliases are returned in the resulting XML document as element and attribute names.
For example, the following query specifies AUTO mode; therefore, the XML formatting is done on the server:
```
SELECT C.FirstName as F,C.LastName as L
FROM Person.Contact C
FOR XML AUTO
```
In the resulting XML document, the aliases are used for element and attribute names:
```
...
```
When you use NESTED mode (client-side formatting), aliases are returned only for attributes in the resulting XML document. The names of the base tables are always returned as element names. For example, the following query specifies NESTED mode.
```
SELECT C.FirstName as F,C.LastName as L
FROM Person.Contact C
FOR XML AUTO
```
In the resulting XML document, the names of the base tables are returned as element names and table aliases are not used:
```
...
```