SSMS Tool Shortcuts
SSMS Tool Shortcuts
Display different colors when the developer runs a query
Before connecting to a SQL server, click "Options"
Go "Connection Properties", choose custom color for environment
It keeps logs of copied last 20 items. CTRL+SHIFT+V brings items
ALT + SHIFT + Arrow keys
ALT + Left click + Mouse drag
SELECT DISTINCT
o.name AS Object_Name,
o.type_desc
FROM sys.sql_modules m
INNER JOIN sys.objects o ON m.object_id = o.object_id
WHERE m.definition Like '%lookingfor%';