I'm executing the following query:
SELECT LocalCCYCode, EquivCCYCode, AsOfDate, DayClosing
FROM v_FxRate
ORDER BY LocalCCYCode, EquivCCYCode, AsOfDate
FOR XML RAW, ROOT ('FxRates'), ELEMENTS XSINIL;
SSMS shows the result set contains 12,000+ rows. However, when I copy (and prettify) to VS Code it only shows around 70 rows.
According to this, I can change the settings to increase the number of characters returned.
I tried both methods (in the accepted answer) but neither worked. I also restarted SSMS.
What am I missing?