Tagged Questions
1
vote
3answers
112 views
Relational vs Non-Relational Database for Events Database
I'm trying to find out whether an SQL or no-SQL solution would be better for creating an events database. I'm creating a ticketing system, similar to ticket master. I know that for either ...
1
vote
1answer
102 views
is it reasonable to use NoSQL for my project
Imagine you want to write a webapp for selling your car online.
A car has a lot of attributes. Like how many doors, color, aircondition, etc. Some of them are simple boolean values, others might need ...
1
vote
3answers
198 views
Which RDBMS has the most advanced “table-valued” functions?
Every Database Management System focuses on specific features and applications. I am using mysql, probably as it is popular and satisfies common needs. However, I came across a problem, which needs ...
2
votes
2answers
3k views
Local database vs Amazon RDS
I am doing large INSERT into a local MySQL database
I am at 2,000,000 rows and am really starting to notice the slowdown now. I always heard that MySQL wasn't very scalable
I expect this database to ...
4
votes
5answers
1k views
What is the easiest way to get started using databases with real data?
I have a project that could benefit from using a database, but I have no experience with databases, don't have access to a server, and have relatively little experience working with things living ...
1
vote
1answer
85 views
SQL database with temporal data
Is it possible to do this in a SQL database
SELECT * FROM Employee
WHERE BirthDate BETWEEN DATE 1970-01-01 AND DATE 1970-01-01
The result that was said to from this query is all the ...
3
votes
3answers
95 views
~15 data sets w/ 25k rows & ~20 columns + quick one time reports = Access VS SQL?
I am working with around 10-15 datasets each containing around 25,000 rows and around 20 columns. Data is text in name/adress/desc and the rest numbers.
I need to be able to calculate certain fields, ...
1
vote
4answers
252 views
Is there a DBMS that allows the “= NULL” syntax?
Inspired by a StackOverflow question (Why doesn't SQL support "= null" instead of "is null"?).
Is there a DBMS that actually supports the = NULL syntax?
11
votes
6answers
1k views
Is polling the only way for updating app's data from a database?
An application needs to have data as more freshly updated from a database as possible. In such a case, is there any other way for getting the data, besides of a timer based requesting (polling) the ...