Is it possible to enable session Trace Flags using startup options?
No. It is not possible to enable session level trace flags using –T startup option. The startup option is used only to enable global trace flags. 7. Example: how to enable the trace flag 3205 for a session? Execute the command DBCC TRACEON 3205 8. Example:how to enable the trace flag 3205 globally? Execute the command DBCC TRACEON 3205, -1. Note the extra parameter -1 which instructs to apply the trace flag globally. 9. Where can I read more information on Trace Flags?