Home > Database > Mysql Tutorial > In SAP database, import table columns with / in the name

In SAP database, import table columns with / in the name

WBOY
Release: 2023-09-04 12:05:01
forward
1192 people have browsed it

I recommend that you use the BCP utility to import/export data to a text file in SQL Server. When you run the following command, it loads the data into a text file.

BCP Db.TN out "Location of the text file " -c -S ServerName –T
Copy after login

Now, if you want to load data from a flat file into SQL Server, you can use the following command:

BCP Db.TN in "Location of the text file " -c -S ServerName –T
Copy after login

You can also try to edit the mapping while loading the data from the flat file.

In SAP database, import table columns with / in the name

The above is the detailed content of In SAP database, import table columns with / in the name. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template