Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
2answers
385 views

When will a FAST_FORWARD cursor have a work table (and is this something to avoid)?

Background I noticed whilst experimenting with running total queries that sometimes the estimated plan just shows a "Fetch Query" and the actual plan shows repeated Fetches from the Clustered ...
9
votes
3answers
136 views

Optimal performing query for latest record for each N

Here is the scenario I find myself in. I have a reasonably big table that I need to query the latest records from. Here is the create for the essential columns for the query: CREATE TABLE ...
7
votes
6answers
336 views

What's TOO BIG for a database?

I have a buddy who runs a web app for people listing cars for sale. There are a few thousand clients who use it, and each client has hundreds and sometimes thousands of rows in the database (some have ...
5
votes
1answer
84 views

Writing data so repeatedly in SQLite Database with python

I want to use SQLite for my GUI Python application but I have to update database every 500 MS without effecting the performance of my program. I'm using PyQt4,So I thought about using QThread but it ...
5
votes
1answer
82 views

mysql tuning variables - current & defaults

I have a pretty vanilla mysql 5.1 setup, and I am trying to tune it. I found this handy script It made the following suggestions: query_cache_limit (> 1M, or use smaller result sets) ...
5
votes
7answers
174 views

I've hit the DB performance bottleneck, where now?

I have some queries that are taking too long (300ms) now that the DB has grown to a few million records. Luckily for me the queries don't need to look at the majority of this data, that latest 100,000 ...
5
votes
7answers
142 views

SQL Query - Need to improve performance

I have a data load scenario where I create dynamic sql query to pull data and cache in our service. There is 1 table that contains all product data : ProductHistory (47 columns, 200,000 records + and ...
4
votes
2answers
119 views

SQL performance: Which is quicker? IN() versus JOIN

This is a question to which I've never gotten a definitive answer. I am using MySQL in this example. Given a reasonably large set of values (lets say 500). Is it quicker to search a table using these ...
4
votes
3answers
122 views

Which model is the fastest using linq, foreign key relationships or local lists?

Some basics I have two tables, one holding the users and one holding a log with logins. The user table holds something like 15000+ users, the login table is growing and is reaching 150000+ posts. The ...
4
votes
4answers
240 views

Removing a Primary Key (Clustered Index) to increase Insert performance

We've been experiencing SQL timeouts and have identified that bottleneck to be an audit table - all tables in our system contain insert, update and delete triggers which cause a new audit record. ...
4
votes
2answers
95 views

Complexity in choosing one method over another for fetching data from Mysql

I am working on a project based on PHP, Mysql , Apache. I have a module called notification which is just like Notification available in FACEBOOK, for this I have 3 ways either I insert every ...
4
votes
2answers
153 views

Business layer design dilemma: memory or IO?

The project I am working on is facing a design dilemma on how to get objects and collections of objects from a database. Sometimes it is useful to buffer *all* objects from the database with its ...
4
votes
3answers
280 views

mysql simple aggregate of subquery results is slow

I'm trying to 'bin' all of my customers based on the number of items purchased, and display the counts of each bin. I'm trying to see how many people(account_id) purchased one item, how many ...
3
votes
0answers
43 views

SQL Server VARCHAR Column Width [migrated]

Searching around the web, I have found conflicting advice on whether there is a performance impact when specifying overly-wide VARCHAR columns, e.g. VARCHAR(255) when VARCHAR(30) will probably do. I ...
3
votes
1answer
89 views

Improving SQL Server database performance

I'm designing a reporting solution which uses SQL Server 2008 R2 as its backend database. The database schema is fairly simple. One table named Calls with CallId PK and one table named Events which ...
3
votes
1answer
106 views

T-SQL, Multiple Updates in a scheduled job

I've been developing a query to be used as a scheduled job. To make it short, I'm to make some specific calculations on a table, and update a few columns (like STATE) according to the calculation ...
3
votes
2answers
172 views

About Youtube views count

I'm implementing an app that keeps track of how many times a post is viewed. But I'd like to keep a 'smart' way of keeping track. This means, I don't want to increase the view counter just because a ...
3
votes
2answers
149 views

Cursors on MySQL - Good or Bad

I have always heard people saying bad about using cursors and this is especially in Microsoft SQL Server as they are very slow. Is this the case with Cursors on MySQL as well? Does cursors in MySQL ...
3
votes
3answers
353 views

PostgreSQL: Why does this simple query not use the index?

I have a table t with a column c, which is an int and has a btree index on it. Why does the following query not utilize this index? explain select c from t group by c; The result I get is: ...
3
votes
5answers
650 views

how can I test performance in Sql Server Mgmt Studio without outputting data?

Using SQL Server Management Studio. How can I test the performance of a large select (say 600k rows) without the results window impacting my test? All things being equal it doesn't really matter, ...
3
votes
2answers
2k views

surrogate vs natural key: hard numbers on performance differences?

There's a healthy debate out there between surrogate and natural keys: SO Post 1 SO Post 2 My opinion, which seems to be in line with the majority (it's a slim majority), is that you should use ...
2
votes
2answers
34 views

SQL getting row count optimization [closed]

Possible Duplicate: In SQL, what's the difference between count(column) and count()? Count() vs Count(1) I have big tables which keep long texts for example email content or news. And ...
2
votes
1answer
58 views

“COMMIT” in mysql slow query log with rails application 2.3.5

I have lots of entries in the slow query log that just have "COMMIT" on them, they take around 3 seconds, which is slow but not awful compared to some other queries. the entries look like this: ...
2
votes
1answer
65 views

SQLite: .Net much slower than native?

Here is my query: SELECT * FROM [GeoName] WHERE ((-26.3665122100029-Lat)*(-26.3665122100029-Lat))+((27.5978928658078-Long)*(27.5978928658078-Long)) < 0.005 ORDER BY ...
2
votes
1answer
36 views

slow mysql query that has to execute hundreds of thousand of times per hour

My mysql database has a table with several hundred thousand rows. Each row has (amongst other data) a user name and a time stamp. I need to retrieve the record with the most recent timestamp for a ...
2
votes
2answers
46 views

Best way to store deleted user data?

I'm working on an application that tracks and handles work orders/tickets. Each ticket is linked to the user who creates/owns the ticket via a foreign key that cascades any changes in MySQL. Obviously ...
2
votes
3answers
84 views

Performance of OR? [closed]

Possible Duplicate: SQL Server - Query Short-Circuiting? Is the SQL WHERE clause short-circuit evaluated? I have a question regarding performance of logical OR operators in T-SQL (SQL ...
2
votes
2answers
88 views

Is there any benefit to creating and index on a primary key?

I checked this SO post: What's the difference between primary key, unique key, and index in MySQL? and found the statement: Also note that columns defined as primary keys or unique keys are ...
2
votes
1answer
638 views

Bad SQLite performance on external storage in Android

I'm using the external storage for storing events in a database while they are waiting to be sent to the server. I'm seeing really bad performance when inserting records. I know the external memory ...
2
votes
1answer
345 views

Postgres: Surprising performance on updates using cursor

Consider the two following Python code examples, which achieves the same but with significant and surprising performance difference. import psycopg2, time conn = psycopg2.connect("dbname=mydatabase ...
2
votes
4answers
335 views

MySQL - How do I efficiently get the row with the lowest ID?

Is there a faster way to update the oldest row of a MySQL table that matches a certain condition than using ORDER BY id LIMIT 1 as in the following query? UPDATE mytable SET field1 = '1' WHERE field1 ...
2
votes
6answers
612 views

Which database (DBMS) can best handle large tables?

I also have a very large table in SQL Server (2008 R2 Developer Edition) that is having some performance problems. I was wondering if another DBMS would be better for handling large tables. I'm ...
2
votes
2answers
122 views

mysql partitioning

just want to verify that database partition is implemented only at the database level, when we query a partitioned table, we still do our normal query, nothing special with our queries, the ...
1
vote
2answers
46 views

NoSQL db performance testing

Let's assume you've got a nosql database - redis, cassandra, mongodb. And you need to check the overall performance for this database - various platforms, operation systems, even programming languages ...
1
vote
0answers
29 views

How can I use a covering indexed view in a supported manner?

According to Unsupported Customizations: Adding tables, stored procedures, or views to the database is also not supported because of referential integrity or upgrade issues. I have a process ...
1
vote
1answer
59 views

Optimize cassandra query

I'm in a try to optimize some cassandra queries which I use the row key as the criteria. So my doubt is, considering the process of comparing the row key inside cassandra, what would be the best ...
1
vote
3answers
126 views

how facebook maintains a good speed for instant auto-suggestion

Facebook has the feature to show instant auto-suggestion result in-various situations such as : searching , message sending etc. i think I have been correct in terming the functionality as ...
1
vote
3answers
54 views

MySQL sub-query performance 5.0 to 5.1 (and later)

I have encountered the following query as part of a PHP application. The query runs quickly (less than 1 second) in mysql 5.0, but in mysql 5.1 and later it takes about 7 minutes to complete. The ...
1
vote
3answers
70 views

More efficient SQL query

I'm building a "spot the diffrence" multiplayer game. The specifiactions of the game are : There can be up to 10 players in each game. A user must not see the same picture twice. (a picture ...
1
vote
1answer
87 views

Multiple schemas versus enormous tables

Consider a mobile device manager system that contains information for every user such as a table that stores the apps that he has installed on the phone, auditing details, notification information ...
1
vote
1answer
125 views

Entity Framework 4.1 and Database (MySQL) performance issue {How to speed up query to return first record when table contains 320 000 rows}

Hi I use MySQL Connector/Net 6.3.5 and Entity Framework 4.1. In DB I have table with arround 320 000 rows I do simple query by column. I have litlle problem with performance. It exist some ...
1
vote
2answers
49 views

Optimizing Datetime fields where indexes aren't being used as expected

I have a large, fast-growing log table in an application running with MySQL 5.0.77. I'm trying to find the best way to optimize queries that count instances within the last X days according to message ...
1
vote
3answers
48 views

How to imporve Performance with Oracle sql Join

The situation is i have to join more than 10 different table. In the SQL i am joining the same table 5 times. The query looks like this. select * from Tab1 join Tab2 on Tab1.x = Tab2.x . . . join ...
1
vote
2answers
52 views

Oracle Indexing & SP Performance

Am trying to optimize some legacy SQL SPs against an Oracle view which is built from 6 tables, each joined by the same field, a numeric ID. Some of the tables in the view have an index which is solely ...
1
vote
0answers
64 views

Hibernate NullableType Performance Problem

I'm having a problem with the performance of one of my queries and after profiling with jprofiler I have established that 60% of the query time is in joda's hibernate library with calls to nullSafeSet ...
1
vote
2answers
155 views

SQL Azure performance considerations

Which are the performance considerations I should keep in mind when I'm planning an SQL Azure application? Azure Storage, and the worker and the web roles looks very scalable, but if at the end they ...
1
vote
2answers
299 views

PostgreSQL on RamDisk: Size of work_mem etc.?

I am experimenting with running PostgreSQL on a ramdisk on windows. The way I did it was to simply place the data directory on the ramdisk. Without having done any specific benchmarks, the ...
1
vote
1answer
222 views

Is it faster to read from fixed-width columns in SQLite?

Would it generally be faster to read from a table where there are no varchar or other variable length data stored? In MySQL, this is faster because it can calculate exactly where a row will be stored ...
1
vote
1answer
580 views

Binding Programatically Vs. Object Data Source for Performance

I used bind all GridViews, DetailViews etc. on my page using an ObjectDataSource (unless it wasn't possible to do so). Recently, I've started binding all my contols programatically. I find this a lot ...
1
vote
4answers
107 views

Database design - question about efficiency (and general design quality)

I fear I don't know what I'm doing. 1: I have a table called ticket which has a column called total. When the total is updated I want to keep a record of it (old total, etc), so I decided to remove ...

1 2