2
votes
What steps should be necessary to optimize a poorly performing query?
Indexes may be a good place to start. The low hanging fruit can be knocked down with the SQL Server Index Tuning Wizard.
…
0
votes
Simple way to programmatically get all stored procedures
I think this is what you're really looking for:
select SPECIFIC_NAME,ROUTINE_DEFINITION from information_schema.routines
There are a ton of other useful columns in …
