Azure SQL Database
An Azure relational database service.
6,326 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Am trying to import my CSV file to perform some operations on it I successfuly import one file into my sql database and when I try to import another same csv file it show an error
I use the SSMS
Most likely the issue will be the data in one of the columns in the CSV is too large to fit into the destination column in database. For example, in the Modify Columns section change all varchar columns to NVARCHAR(MAX).