Tagged Questions
2
votes
3answers
997 views
slow query log analyzers
What kind of tools are available to read & interpret slow queries and missing indexes?
I am aware of MySQL Query Analyzer, can you suggest other tools which are simpler to configure and maintain ...
2
votes
3answers
781 views
Simplest way to print out the contents of a text field in SQL Server
I need to output the contents of a text field using MS Query Analyzer. I have tried this:
select top 1 text from myTable
(where text is a text field)
and
DECLARE @data VarChar(8000)
select top 1 ...