c# - BulkCopy.WriteToServer error for Azure Table (clustered index related) -
in asp.net page i'm trying to....
- create temp datatable , fill data (this works)
- do bulkcopy columnmappings on columns destination table
- do bulkcopy.writetoserver temp datatable destination table
the destination table in azure db.
everything works until try writetoserver, @ time error:
"tables without clustered index not supported in version of sql server. please create clustered index , try again."
my temp table , azure destination table have pk. suggestions?
your table might have pk not have clustered index. make pk clustered.
Comments
Post a Comment