Tagged Questions
The queryanalyzer tag has no wiki summary.
7
votes
17answers
4k views
Would you consider using an alternative to MS SQL Server Management Studio?
At work we recently upgraded from Microsoft SQL Server 7 to SQL 2005. The database engine is a lot more advanced, but the management studio is pretty awful in a number of ways. Most of our ...
3
votes
5answers
910 views
SQL Server: How to abort a series of batches in Query Analyzer?
i have a series of T-SQL statements separated by the special Query Analyzer batch separator keyword:
GO
If one batch fails, i need Query Analyzer to not try subsequent batches - i want it to stop ...
2
votes
3answers
999 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 ...
1
vote
4answers
968 views
tsql query analyzer : how do you reduce “cost”?
I'm running sql analyzer on the following query
SELECT bl.Invoice_Number, bl.Date_Invoice, ti.TranNo, bt.Description,
CONVERT(decimal(15,2), bl.Invoice_Amount) AS Invoice_Amount, co.Company_ID, ...
1
vote
3answers
872 views
SQL Server 2000: Server memory / CPU parameters in Query Analyzer
SQL Server 2000: Is there a way to find out server memory / CPU parameters in Query Analyzer?
0
votes
1answer
188 views
Facing problem while using Lucene's keyword analyzer, help
Not able to use lucene's keyword analyzer properly,
String term = "new york";
// id and location are the fields in which i want to search the "term"
MultiFieldQueryParser queryParser = ...
0
votes
2answers
96 views
SQL Query Analyzer: How can I check database compatability mode?
I am running query analyzer version 8. Or is this even possible?
0
votes
1answer
255 views
Problem using Query Analyzer to debug stored procedure
I am attempting to debug a stored procedure using the Debug option is SQL Query Analyzer (Version 8.00). However, the debugger run through the whole stored procedure as soon as I start and if add a ...