Tagged Questions
1
vote
2answers
51 views
Entity Framework 5 performance concerns
Right now I'm working on a pretty complex database. Our object model is designed to be mapped to the database. We're using EF 5 with POCO classes, manually generated.
Everything is working, but ...
1
vote
3answers
51 views
PostgreSQL Select from 5 million rows table
I have table with about 5 million rows
CREATE TABLE audit_log
(
event_time timestamp with time zone NOT NULL DEFAULT now(),
action smallint, -- 1:modify, 2:create, 3:delete, 4:security, 9:other
...
8
votes
7answers
211 views
Very slow DELETE query
I have problems with SQL performance. For sudden reason the following queries are very slow:
I have two lists which contains Id's of a certain table. I need to delete all records from the first list ...
0
votes
2answers
35 views
How enhance the performance of query among several tables?
Is there some thing should i modify concerning the following query (because it takes long time about 15 seconds !! just to bring about 400 records)
select unique a.regnum , a.name
from re23mmf ...
0
votes
1answer
27 views
mysql - conditions in on vs conditions in where
I can't find a clear answer to this and my tests where inconclusive:
If I have a column in a table in a join that must be equal to (or in another relation with) a constant, is faster to put the ...
1
vote
1answer
44 views
Nested inline query faster than Equal Join
Assume two tables:
TRANSACTION
Primary Key: REF_NO
Columns: REF_NO, TXN_DATE, ITEM_CODE, QUANTITY
ITEM
Primary Key: ITEM_CODE
Columns: ITEM_CODE, ITEM_DESC
Query (1):
SELECT T.REF_NO, ...
0
votes
2answers
23 views
Sum Filtered Value
I have these rows:
value1 | value2 | value3
-------------------------
1231234|23423423|B
2342345|12309123|X
3242344|53453453|X
3453454|45345344|I
2531534|53434534|X
6657555|42342234|I
...
0
votes
1answer
22 views
How to find related pages without querying inside a loop?
I'm having an issue with a site I'm programming. Things are a bit slow on a site section where I have pages and child pages.
I've got a lot of mySQL queries specifically at this section, there are ...
-1
votes
0answers
53 views
query with low cost taking too much time [closed]
why my query is taking too much time ( 30 - 60 minutes ) to execute if the cost of the query is very low ( 209 )
Here is the image of the Current Statement
Tks!
Isslerman
4
votes
4answers
89 views
How to select rows with exactly 2 values in a column fast within a table that has 10 million records?
I have a table (TestFI) with the following data for instance
FIID Email
---------
null a@a.com
1 a@a.com
null b@b.com
2 b@b.com
3 c@c.com
4 c@c.com
5 c@c.com
...
0
votes
1answer
50 views
How does adding thumbnails slow down my website a lot?
When I add 15 thumbnails(4kb-5kb each) my website tends to slow down a lot or even crashes on 2.5k users online, and without them it can take up to 4.5k-5k.
I made a script that will make thumbnail ...
1
vote
0answers
36 views
Performance on PHP sql queries [closed]
I'm barely learning PHP and MYSQL so I don't know much about performance, I've wrote this script to fetch and format content from my DB, it also counts how many result are and separate them in to ...
3
votes
3answers
56 views
Postgres: Optimizing querying by datetime
I have a table that has a datetime field "updated_at". A lot of my queries will be querying on this field using range queries such as rows that have updated_at > a certain date.
I already added an ...
-3
votes
1answer
35 views
Best performance practice for ID's exclusion in SQL queries [closed]
Which method gain more performance:
1. Query exclusion
$exlusionIds = array(1,2,3,4,5);
$sth = $dbh->prepare("
SELECT article_id, title, description
FROM articles
WHERE active = 1 ...
0
votes
3answers
88 views
Performance update in Aggregate query
I would like to improve the performance of the following in aggregate query.
On T_Search_Detail with 30 million records, below Query takes 12 seconds to execute? can it be written better, suggestions ...
3
votes
2answers
54 views
Big-Oh Performance of an Inner Join on Two Indexes
I am trying to figure out the Big-Oh performance of the following query:
SELECT *
FROM table1 INNER JOIN table2 ON table1.a = table2.b
GROUP BY table1.a
table1.a is the primary key of the table. ...
0
votes
2answers
77 views
Copy data between databases using Entity Framework, LINQ and MVC
There is a problem. I have old database with some data, and by another side I have new database with new structure.
Now I need best way (ideas) how to copy data from one table to the another. ...
-1
votes
2answers
46 views
Priority Database size or Performance c# [duplicate]
Sometimes we find our self in situation where we have to choose one from database size or performance.
I am working on application for bill accounting in which i store details of bill in table design ...
5
votes
2answers
120 views
Adding a filter in WHERE versus FROM
So I know it is a good programming practice to add the filter conditions in the WHERE clause of a query so as to minimize the number of rows that are returned in the joins but when how do we decide if ...
0
votes
0answers
24 views
Partitioning MySQL for “expired” transactions to improve performance [migrated]
I am dealing with an existing application that uses the database as a sort of transaction log in several cases, for example orders or payments. These tables are large (20 - 60 million rows) and poorly ...
2
votes
2answers
51 views
Nested view performace
I have this SQL-query:
SELECT Start,
ISNULL((SELECT Orders FROM [pp].dbo.VW_BEZETTING_RAW b2 WHERE b2.Start=b1.Start AND Afdeling = 'WP'),0) AS Werkplaats_ord,
ISNULL((SELECT Tijd FROM ...
0
votes
3answers
65 views
Avoiding multiple calculation for the same values
Is there a way that I can improve the performance of this query by avoiding multiple calculation of some repeating values like
regexp_replace(my_source_file, ...
0
votes
3answers
100 views
SQL Query is taking too long to execute [closed]
Hi All below is my query written for SQL 2008. It takes more than 2 hours to insert 500000 records. Could any one suggest a way to improve performance?
INSERT INTO tblUserFile
SELECT
CASE
...
0
votes
1answer
19 views
How can I get portion of ordered data but avoid sorting again and again over requests?
I have a result set that it is too big to be displayed in one page. So I decided to show it in pages. Ok so far.
Now I need the results to displayed sorted. So the query would be something like:
...
-3
votes
0answers
30 views
Is there any way for improving Performance on Nvarchar fields filter in SQL server 2008? [closed]
in sql server, queries that include filter on Nvarchar fields are relative expensive; even with index on their fields.
is there any way for improve performance on these queries?
1
vote
1answer
58 views
slow update script in postgres
I have a text file with 850000 individual update statements, updating a table containing 12 million records. An example of such a query is:
update bag.pand
set mutatiedatum = to_date('04-03-2013 ...
-1
votes
0answers
41 views
MySql query prosssing , how to get these [closed]
I have 3 tables: Student ,Course ,Attend
i have queries related to these tables .
EX:- SELECT * FROM Student
this query is only a example , i have some complex queries , i need to analyse those
...
0
votes
6answers
56 views
MySQL Query Taking a Long Time
I have a pretty simple query over a table with about 14 millions records that is taking about 30 minutes to complete. Here is the query:
select a.switch_name, a.recording_id, a.recording_date, ...
0
votes
0answers
58 views
mysql slow SQL query on execute
I was wondering if there is any way to make this query faster, Query Time: 31,422s
SELECT
p.id_orden,
p.nombre,
pro.modelo,
GROUP_CONCAT(pa.nombre SEPARATOR ', ') AS acompanates,
...
1
vote
4answers
65 views
Slow SQL query when grouping by two columns with self join
I have a table rating with slightly less than 300k rows and a SQL query:
SELECT rt1.product_id as id1, rt2.product_id as id2, sum(1), sum(rt1.rate-rt2.rate) as sum
FROM rating as rt1
JOIN rating ...
-1
votes
1answer
52 views
Is there any generic based alternatives for setting parameters in PrepareStatement
I am developing a database application. Currently I am using java.sql combined with H2 embedded database. I would like to develop the Don't Repeat Yourself way.
So I set up a reuseable Database Row ...
2
votes
2answers
61 views
Why does SQL Server perform a clustered scan when IN clause has a subquery?
If I search for users like so:
SELECT *
FROM userprofile
WHERE userid IN (1, 2, 3)
The execution plan shows that UserProfile is using a Clustered Index Seek
If I change the IN clause to use a ...
1
vote
3answers
44 views
Speeding up a slow SQL query
I am using the MySQL world.sql database. Exactly what is in it doesn't matter, but the schema that matters to use looks like:
CREATE TABLE city (
name char(35),
country_code char(3),
population ...
2
votes
2answers
84 views
absolutely NO functions surrounding a tstamp in a SQL? Hourly historical data query
I need to obtain for some specific hours data for a specific week day back to 10 weeks. The DB I work on is Oracle. I came up with the following condtions with the time stamp field:
...
0
votes
1answer
46 views
How can I tell Django to execute all queries using 10MB statement mem?
I'm using Django with postgresql database.
I'm having very limited access for database configuration and can't alter postgresql.conf.
However if I want to execute all queries through django with ...
0
votes
0answers
48 views
Oracle view logic or performance tuning on case expression
I have written a view logic to extract the data based on the requirement.
I need the suggestion or solution to improve the performance of the view logic.
MYTABLE:
|SID | SREF | STYPE | SQID ...
0
votes
2answers
36 views
SQL Query: Need to speed up this query that diffs against two databases
I have a query that works, but it's taking forever. It basically returns all the rows in table T (with a join condition) in database D not in table T2 (also with a join condition) in database D2:
...
1
vote
3answers
57 views
Very slow SQL query
I'm having a problem with a slow query. Consider the table tblVotes - and it has two columns - VoterGuid, CandidateGuid. It holds votes cast by voters to any number of candidates.
There are over 3 ...
-1
votes
0answers
61 views
How can I DEVELOP/IMPROVE my SQL Query?
My database is DB-FoxPro and Im using CodeIgniter PHP-framework. I have an SQL query that Queries from 2 different databases.
My Query is all about displaying STUDENTS and their BALANCES. I should ...
-3
votes
3answers
64 views
What are the ways to reduce the time taken by a Select query? [closed]
I am creating an API in JSP for my oracle database.
I have two tables containing 20k records each. I need to perform a natural join, the result will be shown in a JSP page in JSON format. My problem ...
2
votes
2answers
45 views
which one should i used of Union all and union when i want to eliminate the duplicate records?
As title.
i have seen this, people all saying that we should consider union all first for the performance, my question is which one should i use when i want to eliminate duplicate records.
i have ...
0
votes
1answer
66 views
Efficiency of Calculating with Different Data Types?
I have a 1.2 billion row data set that involves columns of high precision floating point/decimal numbers. The requirements are that we have accuracy out to about 12 decimal places. I do not need to ...
0
votes
1answer
42 views
Using composite PRIMARY KEY or UNIQUE key on INNODB table with multiple inserts
I have been trying to figure this out, but no luck so far.
Which one is better: A table with a composite PRIMARY KEY OR a single PRIMARY KEY and a UNIQUE index?
My table looks like this:
CREATE ...
1
vote
0answers
35 views
COMMIT_TABLE wait type
We recently upgraded hardware and database versions (SQL Server 2008R2 Enterprise to 2012 Enterprise) in our production environment. We also make significant use of change tracking in order to merge ...
1
vote
2answers
51 views
sql iteration vs group by, massive performance difference
I've been given a simple task: to select 'id', min and max values for every unique id in the table. So I wrote simple group by but the query took ages to execute (30-60 seconds)
SELECT ...
1
vote
2answers
61 views
Delete Duplicate Records with Same Values
I have a TSQL statement that is taking several hours to run. I'm sure I need to look into the import process to avoid duplicates being inserted but for the time being I'd just like to remove all ...
0
votes
1answer
41 views
Performance , VB.NET SQL Dependency's Notifications
Ok i have 2 queries that are running SQL Dependecy's to simulate the push - notifications
really my ownly question is why in heck my 2 pieces of code run so much differently ( slower / faster ) then ...
1
vote
1answer
52 views
SQL performance linq indexes
I have a SQL database where i store routes. I store routeinformation in one table and the coordinates in another table.
Right now i have around 40 routes with 50k coordinates if you sum all routes.
...
0
votes
3answers
65 views
How to enhance the performance of nested query?
I have the following query but it run slowly in my sql editor !
How to enhance it (write wise) to speed the query running .
SELECT year,main_code,name,father_code,main_code || '__' || year AS ...
0
votes
1answer
47 views
How do I optimize this query
Create table #tmptble(RuleId, SubjectId, RID, Date)
Insert into #tmptble(RuleId,SubjectId, RID, Date)
Select RuleTable.RuleId, RuleTable.SubjectId, KeyTable.RID, KeyTable.ParentId
FROM RuleTable ...




