Writing a csv file into SQL Server database using python

后端 未结 5 2059
一向
一向 2020-12-01 00:22

Hi I am trying to write a csv file into a table in SQL Server database using python. I am facing errors when I pass the parameters , but I don\'t face any error when I do it

5条回答
  •  情话喂你
    2020-12-01 00:56

    You can also import data into SQL by using either:

    • The SQL Server Import and Export Wizard
    • SQL Server Integration Services (SSIS)
    • The OPENROWSET function

    More details can be found on this webpage: https://docs.microsoft.com/en-us/sql/relational-databases/import-export/import-data-from-excel-to-sql?view=sql-server-2017

提交回复
热议问题