What's the logic behind conversion from Alteryx field types to sql server types?
- I have found v_string usually goes to nvarchar (would have expected varchar)
and above some size (>1000, <6000) it changes to text (sometimes ntext) -> odd as sql server supports up to 8000
this has significant speed implications (~6x slower to text than varchar)
any ideas?