Tagged Questions
-1
votes
0answers
10 views
are limit books typically held in server-side memory or the database, and where are crosses processed?
I assume that most financial exchanges are written in high performance languages like c++ with a high performance database like Oracle.
That said, are limit books, like the one for google ...
1
vote
2answers
62 views
MySQL WHERE IN (SELECT id from …) fastest approach?
I am using a query like this:
SELECT * FROM videos WHERE id IN (SELECT video_id FROM videos_tags WHERE tag_id = 2)
to search videos with the same tags, but with about 8'000 videos this query is too ...
0
votes
2answers
40 views
Quick search on huge mysql database
I need to index a huge mysql database ( 5 billions record ).
I will rarely create, update or delete
only some request like SELECT * FROM tbl_person WHERE name LIKE 'foo%'
I have already set my ...
-1
votes
2answers
40 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 ...
0
votes
0answers
22 views
Speeding up computation of product filters when performing search
I'am trying to find an efficient approach or algorithm to help me address the problem described below.
Let's say we have a database containing a very large collection of products. Each product has a ...
-2
votes
1answer
28 views
Load data in app [closed]
We have an app about some exams related stuff and we got stuck on how to load the app with questions as questions containing images and sometime only text.
So my question is what data structure we ...
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 ...
1
vote
1answer
39 views
MySQL is slow when delete records in large table
I have a query like this which takes a really long time to run. The table is around 4 million rows.
DELETE FROM TABLE WHERE value_was IS NULL OR value_was <= value_now;
I'm hoping I could ...
1
vote
1answer
23 views
Performance gain by using bulk inserts vs regular inserts in MongoDB
What is the performance gain by using bulk inserts vs regular inserts in MongoDB and pymongo specifically. Are bulk inserts just a wrapper for regular inserts?
-1
votes
1answer
30 views
Deciding between mysql or nosql and their benifits [closed]
So I am a bit new to using databases on a large scale(especially relation databases). My primary concern here is that I hear allot of talk between nosql and mysql.
What should really be considered ...
0
votes
0answers
47 views
Does an index aid in leading wildcard searches?
I have a table, users, with the following columns:
ID int, pk, clustered index
Address nvarchar(50),
Date_Of_Birth date
Name nvarchar(200)
Name contains values like ...
1
vote
0answers
26 views
How to ensure that date-range queries involving multiple time zones are sargable [migrated]
I am building a web analytics application for search engine traffic only. You can see some screenshots here: http://myhappyanalytics.com/
It works similar to Google Analytics but it only saves and ...
0
votes
1answer
41 views
The best way to store millions of 100kb/Ave. records
We are in a situation that we need to store millions of records everyday,
Data Structure Model:
id
date
title
...
Data [RAW TEXT]
Our [RAW TEXT] is different each time, from ~30KB to 300KB, and ...
-1
votes
2answers
26 views
Sql join or separate queries
I have movie database. I keep images, videos, reviews, etc in separate tables. So when a movie is viewed i can use table joins and display output. Also possible to do this separately. That is, first ...
0
votes
1answer
15 views
Query retrieving vs. calculus - best performance?
I have a doubt, is best, in term of performance, retrieving from a large database (50k+ rows growing) on MySQL a "calculated" data or perform the calculus on the fly?
The calculus are simply division ...
1
vote
3answers
43 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 ...
0
votes
3answers
53 views
DB2: Purge large number of records from table
I am using DB2 9.7 FP5 for LUW. I have a table with 2.5 million rows and I want to delete about 1 million rows and this delete operation is distributed across table. I am deleting data with 5 delete ...
0
votes
0answers
8 views
Icinga performance data: direct pipe into database
I just read through some icinga documentation regarding the performance data collection and processing. But there are some things unclear to me right now:
Writing to file/disk -> does this roll over ...
1
vote
2answers
30 views
Multiple SQL queries checking against 1 row vs 1 single query checking against multiple rows
I am curious, what has a better performance. A little bit about the context : I am processing a CSV file that needs to be entered into a database table and need to ensure that I smell out the ...
0
votes
2answers
38 views
Caching Data on a Heavy Load Web Server
I currently have a web application which on each page request gets user data out of a database, for the currently logged in user.
This web application could have approximately 30 thousands concurrent ...
-3
votes
0answers
51 views
Is my PHP function efficient? Can I make it query the database faster? [closed]
I'm designing a browser-based game, and need to access 6 resources, along with funds from my MySQL database. I dread using the same code over and over again, so I just made a function in an external ...
0
votes
1answer
39 views
MySql InnoDB & performance: what is the best structure?
For a db that I need to built (InnoDB), I have two different structures in mind and I would like to know which one is best in terms of performance.
I want to store thousands of products. Each product ...
4
votes
2answers
78 views
Strategy for mass storage of small files
What is the good strategy for mass storage for millions of small files (~50 KB on average) with auto-pruning of files older than 20 minutes? I need to write and access them from the web server.
I am ...
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 ...
0
votes
0answers
28 views
How to design database table to store process status? [migrated]
I have an application (ProcessMonitor) that monitor some constantly running process at fixed interval (like 30 seconds, but can be changed by user) and store the process status to a database table, ...
0
votes
1answer
23 views
Looking for data in a table through colums with categories/state values
Say we have a fruits that that is having a high number of reads but also inserts though almost not update nor delete.
We have 2 columns that stores values that have a small number of options. Lets ...
0
votes
1answer
52 views
play framework secure module performance
i am using play framework version 1.2.5
i added the security model to my application .
to verify my view's to hide some html menus according to user permissions.
i will also verify user logged etc. ...
-1
votes
2answers
57 views
in this case it is better to use database or read for file to increase performance?
This my class TagVertex contain one method that read the tag value=string from textual file
and return it
public class TagVertex extends Vertex<String> {
@Override
public String ...
3
votes
4answers
90 views
What's the best way to get intersected data from one table?
Suppose I have the below table
CREATE TABLE [dbo].[TestData](
[ID] [bigint] NOT NULL,
[InstanceID] [int] NOT NULL,
[Field] [int] NULL,
[UserID] [bigint] NOT NULL
) ON [PRIMARY]
GO
...
1
vote
3answers
107 views
Improve SQL Query performance with JOIN
I've got the following, slow performing, SQL query:
SELECT *
FROM news_events
WHERE 1 AND (user_id = 2416) OR id IN(SELECT content_id FROM likes WHERE user_id = 2416)
ORDER BY id DESC
LIMIT 0,10
...
2
votes
1answer
165 views
Android SQLite get all data from cursor fast
I am dealing with a performance problem in one of my apps. Maybe one of you guys can help me out?!
I have a database with somewhat around 10k entries.
I query for elements using the default query ...
0
votes
1answer
39 views
Pulling 50 RSS feeds and checking uniqueness of posts against database [Efficiency Advice]
I want to pull several RSS feeds into a database as efficiently as possible.
My site will scrape 50 RSS feeds every 4 hours - I only want to add unique posts to the database. I am a bit stuck on how ...
-1
votes
1answer
64 views
Cannot install Sysbench on CentOS [closed]
Have been trying to install Sysbench on Centos. But keep getting a huge error trace.
drv_mysql.c:35:19: error: mysql.h: No such file or directory
drv_mysql.c:36:26: error: mysqld_error.h: No such ...
0
votes
2answers
84 views
Android SQLite fast Date between search
I have a huge performance issue when it comes to an SQLite Query with date ranges.
In my application I have a database with a couple of thousands of records of sites. These sites are visitable but ...
1
vote
1answer
41 views
Proper way to filter a table using values in another table in MS Access?
I have a table of transactions with some transaction IDs and Employee Numbers. I have two other tables which are basically just a column full of transactions or employees that need to be filtered out ...
1
vote
2answers
60 views
Reading / writing lots of int[] (BitSet) data into file(s) repeatedly can be done fast in Java?
My main program looks as below (pseudo code):
public void main(String[] args) {
// produce lots of int[] data which is stored inside a list of hashmaps
List<HashMap<Integer, ...
-1
votes
2answers
153 views
how to increase speed of loading treeview nodes from a table using delphi
It's simple to load treeview nodes from table using a recursive function, but it takes a long time for huge data.
I have a table with these fields: id, title, parentid : that keeps treeview nodes in ...
3
votes
3answers
59 views
Which is better: Parsing big data each time from the DB or caching the result?
I have a problem regarding the system performance. In the DB table there will be a big XML data in every record. My concern is that if I should parse the XML data each time from the DB to get the ...
0
votes
0answers
48 views
Text File or Database based chat room? Not only messages and not only one-to-one
I'm developing a webchat and I have to decide what strategy to use. I can use either a text file or a database to store the data that come from and go to the users.
Yes, I've seen the other posts ...
0
votes
0answers
38 views
CakePHP high production time
when I use just a controller and a view to display some links (no database access) it takes about 50ms to load the page, but when it comes to database access (my model uses a database here) it takes ...
0
votes
1answer
31 views
ASP.NET - Localization using SQL database with good performance
As part of the ASP.NET website I maintain localization/text translations are handled using text stored in a SQL database and not using ResX files; why it is done this way is down to legacy but that is ...
0
votes
2answers
265 views
Efficient database access to various DBMS from Delphi XE2
My needs
I work with Delphi/C++Builder XE2.
I need to access at least these DBMSs:
Firebird
DB2/400
SQL Server
SAP HANA (a new in-memory DB, available interfaces: JDBC, ODBC, ODBO, SQLDBC)
I ...
4
votes
3answers
102 views
Best way to handle multiple inserts
Currently we are using play 1.2.5 with Java and MySQL. We have a simple JPA model (a Play entity extending Model class) we save to the database.
SimpleModel() test = new SimpleModel();
test.foo = ...
0
votes
1answer
63 views
how to pin a table to oracle dbms_shared_pool in 11G
Can I pin a table to oracle dbms_shared_pool in 11G? I see I cannot do it in 10g. the table has 4 number columns and around 100K rows, it is extremely high used and read-only(which means we will not ...
0
votes
0answers
15 views
JPA Import Performance Decreasing
I have a Java application that frequently needs to import data from an external system. The data is supplied in XML format and I am using the Java Persistence API to persist the data into a MySQL ...
1
vote
2answers
40 views
Would search speed improve if related data was held in a separate table?
We have table
Article
(
id,
user_id,
date_created,
date_from,
date_to,
title,
description,
latitude,
longitude
)
If we were to separate the title and ...
0
votes
1answer
16 views
MYSQL Database: How do I structure the database for multiple devices and multiple data?
I have to create a large database. It will hold the data from 100+ devices which will continuously updating database. For every 10sec each device will update a row in database. Is it better to have a ...
2
votes
1answer
55 views
which way is appropriate to check table existence
I want check a particular table existence in Oracle, which way is more general and appropriate, I have 2 ways listed below, the way 1 run fast if table existing, because it just run one sql
Handle ...
3
votes
0answers
179 views
Best server side language and database [closed]
We are planned to build a website and mobile apps for a project. To interact with database we need to build an API. It is expected that website and apps will be accessed by thousands of millions of ...
257
votes
16answers
81k views
MyISAM versus InnoDB
I'm working on a projects which involves a lot of database writes, I'd say (70% inserts and 30% reads). This ratio would also include updates which I consider to be one read and one write. The reads ...





