Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
75 views

What's the best way to identify hidden characters in the result of a query in SQL Server (Query Analyzer)?

When trying to identify erroneous data (often needing manual review and removal), I'd like an easy way of seeing hidden characters, such as TAB, Space, Carriage return and Line feed. Is there a ...
2
votes
3answers
1k 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
1answer
137 views

Why does Sql Server recommends creating an index when it already exist?

I ran a very basic query against one of our table and I noticed that the execution plan query processor is recommending that we create an index on a column The query is SELECT SUM(DATALENGTH(Data)) ...
2
votes
2answers
136 views

SQL Server 2000, Do queries executed sequentially?

I am not sure if my question is related with the tool for executing the queries. (I am using Query Analyser, Access and AQT generally). For example I have two queries. SELECT * FROM Table1 SELECT * ...
2
votes
1answer
252 views

How are logical reads calculated?

I've read the definition of logical reads from: http://msdn.microsoft.com/en-us/library/ms184361.aspx it says: "Number of pages read from the data cache." I have two tables (Row count of table_1 ...
2
votes
2answers
129 views

Are there any compact utilities with functionality similar to Query Analyzer for use with SQL Server 2005/2008?

I have to say that I am really missing Query Analyzer now that the functionality has been integrated into the much heavier SQL Management Studio provided with SQL Server 2005/2008. I was looking for ...
1
vote
1answer
56 views

How to influence the Postgres Query Analyzer when dealing with text search and geospatial data

I have a quite serious performance issue with the following statement that i can't fix myself. Given Situation I have a postgres 8.4 Database with Postgis 1.4 installed I have a geospatial table ...
1
vote
2answers
301 views

Query analyzer or profiler for SQL Server CE 4

Is there any query analyzer or profiler for Microsoft SQL Server CE 4?
1
vote
2answers
703 views

Export to excel from SQL Server 2000 using Query Analyzer code

What's the easiest way to export data to excel from SQL Server 2000. I want to do this from commands I can type into query analyzer. I want the column names to appear in row 1.
1
vote
1answer
271 views

Save Field Names in Microsoft SQL Query Analyzer

When you save the results of a SQL query using "Microsoft SQL Query Analyzer" (version 8), the results of the query are saved but the column headers (field names) are not. Any idea how to save the ...
1
vote
3answers
76 views

Must-have features for F/OSS SQL analyzer/optimizer

I like MySQL's Query Analyzer...but not the price tag. I think I can write something myself to do analysis on slow query logs, indexes, table status fields, etc. and offer it as an alternative, F/OSS ...
1
vote
3answers
412 views

Updating long string through SQL Server Query Analyzer

I have a really long string of text that I would like to update a particular column in a table. The update statement in sql query analyzer is on one long line currently. Is there a way to break up ...
0
votes
0answers
14 views

Comparative detail about Query analyzer

I am a DB developer, and in a task of analyzing MySQL queries used in a webservice development project. i've heard about the Mysql query analyzer, maatkit; query profiler, percona patches recently. ...
0
votes
1answer
56 views

filters effect on search results in solr

when i query for "elegant" in solr i get results for "elegance" too. I used these filters for index analyze WhitespaceTokenizerFactory StopFilterFactory WordDelimiterFilterFactory ...
0
votes
3answers
321 views

How Oracle uses statistics data

In previous question I got comment about Oracle statistics: Oracle doesn't know that 50M is greater than the number of rows. Sure, it has statistics, but they could be old and wrong - and Oracle ...
0
votes
2answers
169 views

sql server 2000: Short cut for getting stored proc text

what is the short cut to get entire text of the stored proc in query analyzer. I know that I could highlight table name and hit <alt><f1> and get the entire table structure.
0
votes
2answers
287 views

Can Visual Studio 2008 provide any of the functionality that Query Analyzer and Enterprise Manager provide?

I'm currently using MSSQL Server 2000 and to design tables, create and alter stored procedures as well as manage users and permissions I'm using Query Analyzer and Enterprise Manager. I also spend an ...
0
votes
2answers
437 views

Performance of unused fields in an SQL View

I'm using MS SQL Server. When I define the database schema I define a (non-materialized) view, which includes many fields, for example as follows (where "Topic" is the name of a table, and the view ...