0

It looks like a good practice to use static data types (such as CHAR, NCHAR, BINARY) where update performance is a major concern.

Though I couldn't find any references about how major this penalty is.

Is anybody aware of how big is the loss in throughput if using dynamic data types instead (VARCHAR, NVARCHAR, VARBINARY)?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
cezarm
  • 31
  • 3

1 Answers1

2

There is no loss. There is no penalty. Use the type appropriate for the application.

Remus Rusanu
  • 288,378
  • 40
  • 442
  • 569