在 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
你還可以在從平面檔案中載入資料時嘗試編輯對映。
廣告