Tagged Questions
7
votes
17answers
585 views
SQL portability gotchas
My company has me working on finishing a back end for Oracle for a Python ORM. I'm amazed at how much differently RDBMSes do things even for the simple stuff. I've learned a lot about the ...
4
votes
4answers
216 views
What Applications Don't Need ACID?
Sorry for the ignorant question, but what kind of applications wouldn't require an ACID compliant database server? I have a SQL Server background where ACID has always "been there", and now ...
3
votes
4answers
600 views
What are the disadvantages of having many indices?
I recently sped up a complicated query by an order of magnitude by giving SQLite a good index to work with. Results like this make me wonder if I should index a lot of other fields that are commonly ...
1
vote
2answers
259 views
nosql example, which engine?
a) I have 1000000 domain names
b) Every domain has about 100000 sites
c) each site has about 10000 visits daily / (5000 unique visits daily)
d) As the owner of all those websites, I want to see, ...
1
vote
1answer
44 views
What performance gains can I expect from database paging?
Say I have a table X with 100 records in it and that running a select * from X takes 100 seconds.
How long should I expect the query select top 10 * from X to take?
I'd expect that the relationship ...
-1
votes
5answers
131 views
What resources will help me understand the fundamentals of Relational Database Design
This are few of the fundamental database questions which has always given me trouble. I have tried using google and wiki but I somehow I miss out on understanding the functionality rather than ...