Tagged Questions
The database-agnostic tag has no wiki summary.
14
votes
7answers
2k views
Best Schema to represent NCAA Basketball Bracket
What is the best database schema to represent an NCAA mens basketball bracket? Here is a link if you aren't familiar: http://www.cbssports.com/collegebasketball/mayhem/brackets/viewable_men
I can see ...
12
votes
4answers
40k views
Function that creates a timestamp in c#
I was wondering, is there a way to create a timestamp in c# from a datetime?
I need a millisecond precision value that also works in Compact Framework(saying that since DateTime.ToBinary() does not ...
8
votes
5answers
1k views
Fast Relational method of storing tree data (for instance threaded comments on articles)
I have a cms which stores comments against articles. These comments can be both threaded and non threaded. Although technically they are the same just with the reply column left blank when it's not ...
7
votes
4answers
121 views
Implementing a Flexible Relationship in a RDBMS — What really are the tradeoffs?
I have a bunch of products with a bunch of different possible attributes for each product. E.g. Product A has a name, size, color, shape. Product B has a name, calories, sugar, etc. One way to solve ...
7
votes
3answers
228 views
How can this SQL query code be broken/exploited by user input? [closed]
Possible Duplicate:
Can I protect against SQL Injection by escaping single-quote and surrounding user input with single-quotes?
We have a legacy app that doesn't do queries using positional ...
7
votes
5answers
800 views
How do you write your applications to be database independent?
My boss asks me to write only ANSI SQL to make it database independent. But I learned that it is not that easy as no database fully ANSI SQL compatible. SQL code can rarely be ported between database ...
5
votes
3answers
305 views
Database neutral .NET application
Many product developers want to write a .NET application which will work seamlessly with any popular RDBMS like SQL server, oracle, DB2 , MySql. If we use the Data application block it dynamically ...
5
votes
3answers
439 views
Standard database neutral XSD to describe a relational database schema
Is anyone aware of a vendor neutral XSD to describe a relational database schema? Our system needs to grab information about the structure of a database:
Tables
Columns and types
Primary and ...
4
votes
3answers
3k views
Database cluster and load balancing
What is database clustering? If you allow the same database to be on 2 different servers how do they keep the data between synchronized. And how does this differ from load balancing from a database ...
4
votes
1answer
2k views
Changing timezone on an existing Django project
Like an idiot, I completely overlooked the timezone setting when I first built an application that collects datetime data.
It wasn't an issue then because all I was doing was "time-since" style ...
4
votes
8answers
4k views
When to use database views and when not?
This question is about database views, not materialized-views.
Pros:
Query simplification.
Avoid repeat the same joins on multiples queries.
Avoid magic numbers.
Cons:
Hiding real queries (may ...
3
votes
5answers
121 views
Is NOW() a stable function?
If I do
INSERT INTO table1 (datetime1, datetime2) VALUES (NOW(),NOW())
Will the two fields always be identical in both columns?
Ditto for
INSERT INTO table1 (datetime1, datetime2) VALUES ...
3
votes
4answers
92 views
Is converting database string enums to integers worth it?
There are two ways to store enum types in database: as a string or as an integer.
Saving the enumeration ( sex = {male,female}, account_type = {regular,pro,admin}, etc. ) as strings makes things more ...
3
votes
3answers
113 views
How to create portable inserts from SQL Server?
Now it generates inserts like
INSERT [Bla] ([id], [description], [name], [version])
VALUES (CAST(1 AS Numeric(19, 0)), convert(t...
It's very SQL Server specific. I would like to create a script ...
3
votes
3answers
108 views
How to group the records according to the range in SQL
Hi I would like to create a SQL to group the records according to the range
For example, suppose I have
Number Time Price
100 20100810 10.0
100 20100812 15.0
...
3
votes
4answers
112 views
SELECT DISTINCT on a field not appearing in recordset?
I want to do a SELECT DISTINCT guid, ..., but I don't want guid appearing in the recordset. How do I do this?
3
votes
1answer
1k views
CakePHP Multiple Nested Joins
I have an App in which several of the models are linked by hasMany/belongsTo associations. So for instance, A hasMany B, B hasMany C, C hasMany D, and D hasMany E. Also, E belongs to D, D belongs to ...
3
votes
3answers
120 views
Agnostic Connection Handlers in .NET
I'm developing a simple database acessor for a system, but i need to support 2 databases, PostgreSQL and Oracle (XXg);
A example would be like this (already working for pgsql)
... bunch of ...
3
votes
2answers
183 views
Database design for tags and URL
I'm building simple application for myself in JSP which stores URL for me and finds it based on tags. For which i want to design a database. I'm limited with my knowledge of SQL. But still i want to ...
3
votes
6answers
865 views
Primary Keys - Native, Sequence, or GUID keys?
In reading this and this and then reading this (which references the other two ironically) I find myself wondering just how big the discussion of this topic is? I am a SQL Server guy and so I tend to ...
3
votes
4answers
555 views
Best way to enforce inter-table constraints inside database
I looking for the best way to check for inter-table constraints an step forward of foreing keys. For instance, to check if a date child record value is between a range date on two parent rows columns. ...
3
votes
2answers
595 views
What's a good tool to run SQL scripts against any database?
Currently I have a custom tool which generates vanilla-SQL (only using standard SQL), from our Data-models that sets up database schemas and initial data for our new databases, and do version patches, ...
2
votes
4answers
32 views
Put all exclusion conditions in sql query or first get all results and then perform exclusion code in memory?
In my query I want to get all users of the same city. This query will also be available to end users so that they can see other users of same city.
I query user table so it retrieves all the users ...
2
votes
1answer
135 views
Distributed primary key - UUID, simple auto increment or custom sequential values?
I know this type of question has been asked before, but I could not find one that compared the options I have in mind. So I am going to post them here, please post links if there are duplicates.
...
2
votes
4answers
60 views
Index on a table you must fully scan anyway? (MySQL)
I'm pretty stumped here.
I have 2 tables and I'm left joining the first (around 500k records) with the second (around 2.2 million records) in order to find out which records are in the first and not ...
2
votes
4answers
224 views
Is it possible to search for dates as strings in a database-agnostic way?
I have a Ruby on Rails application with a PostgreSQL database; several tables have created_at and updated_at timestamp attributes. When displayed, those dates are formatted in the user's locale; for ...
2
votes
5answers
218 views
How do I normalise this database design?
I am creating a rowing reporting and statistics system for a client where I have a structure at the moment similar to the following:
...
2
votes
8answers
586 views
What data type is recommended for ID columns?
I realize this question is very likely to have been asked before, but I've searched around a little among questions on StackOverflow, and I didn't really find an answer to mine, so here goes. If you ...
1
vote
3answers
41 views
Open sql connection in business service
Do you see it as tight coupling that my business service class opens a SqlConnection ?
Actually a business service should not be aware of the concrete dataprovider?!
public class UnitService:
...
1
vote
1answer
3k views
Difference between Restrictions.like and .ilike in Hibernate Criteria API
Hibernate's Criteria API has Restrictions.ilike function which has the following contract:
A case-insensitive "like", similar to Postgres ilike operator
That's cool. But the same class also has ...
1
vote
5answers
287 views
Should Many to Many Tables Have a Primary Key?
If I have two objects that have a many-to-many relationship, I would typically model them in my database schema with a many-to-many table to relate the two. But should that many-to-many table (or ...
1
vote
5answers
103 views
how to allow your code to store undetermined number of columns?
I think my question might be unclear , but i would try to explain it by example .
say that we had about 100 different car model , clearly all of the car would share common parts or specification but ...
1
vote
8answers
103 views
Appropriate query and indexes for a logging table in SQL
Assume a table named 'log', there are huge records in it.
The application usually retrieves data by simple SQL:
SELECT *
FROM log
WHERE logLevel=2 AND (creationData BETWEEN ? AND ?)
logLevel and ...
1
vote
2answers
187 views
The entity framework and database agnostic programming, possibilities?
We want to use the Entity Framework (.NET 4.0) to build applications that can deal with Sql Server, MySQL and Oracle. And maybe Sqlite too.
It should be easy to switch the db vendor by some setting ...
1
vote
5answers
170 views
Does this behavior exist in all major databases?
mysql> select 0.121='0.121';
+---------------+
| 0.121='0.121' |
+---------------+
| 1 |
+---------------+
Does it hold for other database that number='number' is true?
1
vote
1answer
1k views
design for 'simple' inventory system
I want to make a relational database system for a local computer hardware non-profit. There are two inter-related features that I want to figure out how to implement. First, we need to manage our ...
1
vote
4answers
350 views
Database independence
We are in the early stages for putting a design for a big business application that will have multiple modules. One of the requirements is that the application should be database independent, it ...
1
vote
7answers
631 views
Difficult Temporal Cross-Table Database Constraint
I have a particularly difficult business constraint that I would like to enforce at the database level. The data is financial in nature, and so must be protected from inconsistencies to the nth degree ...
1
vote
3answers
141 views
Software as a service - Database
If I am building a CRM web application to sell as a membership service, what is the best method to design and deploy the database?
Do I have 1 database that houses 100s of records per table or deploy ...
1
vote
2answers
171 views
Rails: Making this query database-agnostic…?
I have these two lines in my model, written for PostgreSQL:
named_scope :by_month, lambda { |month| { :conditions => ["EXTRACT(MONTH FROM recorded_on) = ?", month] }}
named_scope :by_year, lambda ...
1
vote
5answers
523 views
Database agnostic SQL for returning list for Date of birth stored as a Timestamp
If I need to search on Date of birth which is stored without the hours and minutes but the date I have to search with includes hours and minutes what is the best way to return all rows where date is ...
0
votes
1answer
36 views
How to avoid concurrency issues when using a database as a communication bus?
Some people tell me that we should avoid multiple apps reading/writing to the same database, because of concurrency issues. They were insistent to the point where they convinced me that a solid ...
0
votes
0answers
24 views
What's the best method for database table records archive into another table
I'm designed a stat tracker for realtime(-ish 1 minute lag). The archive table where the logged data is processed into is so:
CREATE TABLE `stats_archive` (
`value_date` datetime NOT NULL DEFAULT ...
0
votes
1answer
75 views
Database agnostic stored procedure API
Our legacy web application heavily uses stored procedures. We have a central interface through which all database calls (i.e. queries and procedures) are made. However, the current implementation uses ...
0
votes
1answer
24 views
Database Application - Store or compute on-the-fly?
I have a table of purchase list with fields: ItemName, Quantity, UnitPrice, Amount. Note that Amount is equal to Quantity * UnitPrice.
My simple problem is, should I STORE the amount or COMPUTE it ...
0
votes
1answer
33 views
Is there a more database agnostic way to write this default scope in Rails 3?
I have the following default scope defined in one of my models
default_scope order("IF(format = #{FORMATS[:wide]}, 1, 0) DESC, created_at DESC, name ASC")
It worked fine on my dev machine where I'm ...
0
votes
1answer
116 views
ActiveRecord aggregate function: is there a database-agnostic 'EXTRACT(WEEK from date)'?
i have a method that works just fine (with rails 3 and PostgreSQL) ; i just wonder if it's possible to make it database-agnostic :
FarmGatePrice.average :price, :group => 'EXTRACT(WEEK FROM date)'
...
0
votes
4answers
126 views
Is it crazy to bypass database case sensitivity issues by storing original string case AND lower case?
I'm implementing a database where several tables have string data as candidate keys (eg: username) and will be correspondingly indexed. For these fields I want:
Case insensitivity when someone ...
0
votes
1answer
53 views
guarantee child records either in one table or another, but not both?
I have a table with two child tables. For each record in the parent table, I want one and only one record in one of the child tables -- not one in each, not none. How to I define that?
Here's the ...
0
votes
3answers
164 views
What orm.xml features should be avoided to stay database agnostic?
I'm embarking on an adventure in JPA and want to, inasmuch as possible, stay database agnostic. What orm.xml features should I avoid to stay database agnostic?
For example, if I use strategy="AUTO" ...