I'm building a script to get all the triggers in the document, but I want to include newlines. I'm copying and pasting this into excel in order to then quickly generate some mandated documentation, but all the contents from the text column end up being generated without newlines.
The line I'm currently using, which produces truncation in results to file is:
SELECT OBJECT_DEFINITION(sys.objects.object_id)
FROM sys.objects
WHERE type = 'TR'