A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
Save pop-ups: Tools then Options then Query Execution then SQL Server then General then uncheck "Prompt to save unsaved T-SQL query windows on close."
Losing open queries: Turn on AutoRecover under Tools then Options then Environment then AutoRecover. To recover lost text from the plan cache (needs VIEW SERVER STATE):
SELECT t.text, s.last_execution_time
FROM sys.dm_exec_query_stats s
CROSS APPLY sys.dm_exec_sql_text(s.sql_handle) t
ORDER BY s.last_execution_time DESC;
Copy with headers: Tools then Options then Query Results then SQL Server then Results to Grid then check "Include column headers when copying or saving the results," then open a new query window.