The queryanalyzer tag has no wiki summary.
-1
votes
1answer
120 views
MS SQL 2008 R2 Queryanalyzer successful run in the code. Failed SQL code field within the LOGO application is running
Hi programmers and developers,
MS SQL 2008 R2 Queryanalyzer successful run in the code. Failed SQL code field within the LOGO application is running.
Error :
" The order by clause is invalid in ...
1
vote
0answers
104 views
Clearing Dirty Pages with Checkpoint, and getting results from MemoryStatus
Warning: I'm a generalist, and what I know about configuring SQL server you could gather up and put in your belly button, and the lint wouldn't be displaced. Mostly, I can write queries to get what I ...
0
votes
1answer
1k 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
197 views
SQL Query Analyzer: How can I check database compatability mode?
I am running query analyzer version 8. Or is this even possible?
11
votes
5answers
7k 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 ...
0
votes
1answer
352 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 ...
3
votes
6answers
1k 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
4answers
1k 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, ...
7
votes
15answers
6k views
Would you consider using an alternative to MS SQL Server Management Studio? [closed]
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 ...
1
vote
3answers
2k 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?
4
votes
3answers
2k 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 ...