在 SAP 資料庫中,匯入帶有“/' 的表列名稱
我建議你使用 BCP 實用程式執行匯入/匯出資料到 SQL Server 中的文字檔案。當你執行以下命令時,它將載入資料到一個文字檔案。
BCP Db.TN out "Location of the text file " -c -S ServerName –T
現在,如果你想從平面檔案中載入資料到 SQL Server,你可以使用它
BCP Db.TN in "Location of the text file " -c -S ServerName –T
你也可以在從平面檔案中載入資料時編輯對映。
廣告