Skip to content

Commit f12b6f2

Browse files
authored
Merge pull request MicrosoftDocs#9367 from 0x7FFFFFFFFFFFFFFF/patch-32
Update format-files-for-importing-or-exporting-data-sql-server.md
2 parents 53f3d24 + 5e96999 commit f12b6f2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/relational-databases/import-export/format-files-for-importing-or-exporting-data-sql-server.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ The following examples show the layout of a non-XML format file and of an XML fo
4141
The following non-XML format file uses the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] native data format for the `HumanResources.myTeam` table. This format file was created by using the following `bcp` command.
4242

4343
```cmd
44-
bcp AdventureWorks.HumanResources.myTeam format nul -f myTeam.Fmt -n -T
44+
bcp AdventureWorks2022.HumanResources.myTeam format nul -f myTeam.Fmt -n -T
4545
```
4646

4747
The `bcp` command defaults to a local, default instance of SQL Server with Windows Authentication. You can specify other instance and login information as desired, for more information see [bcp Utility](../../tools/bcp-utility.md). For example, to specify a remote server named instance with Windows Authentication, use:
4848

4949
```cmd
50-
bcp AdventureWorks.HumanResources.myTeam format nul -f myTeam.Fmt -n -T -S servername/instancename
50+
bcp AdventureWorks2022.HumanResources.myTeam format nul -f myTeam.Fmt -n -T -S servername/instancename
5151
```
5252

5353
The contents of this format file are as follows, starting with the major version number of SQL Server, and the table metadata information.
@@ -68,7 +68,7 @@ For more information, see [Non-XML Format Files (SQL Server)](../../rela
6868
The following XML format file uses the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] native data format for the `HumanResources.myTeam` table. This format file was created by using the following `bcp` command.
6969

7070
```cmd
71-
bcp AdventureWorks.HumanResources.myTeam format nul -f myTeam.Xml -x -n -T
71+
bcp AdventureWorks2022.HumanResources.myTeam format nul -f myTeam.Xml -x -n -T
7272
```
7373

7474
The format file contains:

0 commit comments

Comments
 (0)