This tag specifies that the question is independent of any particular database and the sql should work in any rdbms.
0
votes
4answers
140 views
Getting week number of date in SQL
is there a way to get the week number of a date with SQL that is database independent?
For example to get the month of a date I use:
SELECT EXTRACT(MONTH FROM :DATE)
But the EXTRACT function ...
0
votes
1answer
29 views
Pluggable database interface
I am working on a project where we are scoping out the specs for an interface to the backend systems of multiple wholesalers. Here is what we are working with,
Each wholesaler has multiple ...
2
votes
2answers
159 views
Magento installer setup agnostic insert
I got through this tutorial regarding Magento Setup Resources.
At some point I saw that it supports more database backends, but in the mentioned tutorial is described only the way you can create ...
2
votes
2answers
78 views
SQL: Group by on value1 and “not” value1?
I have a table with something like the following:
OrderNo, OrderType
1, Type1
2, Type1
3, Type2
4, Type3
5, Type4
Doing a "group by" on OrderType is easy but is there a way to do a "group by" to ...
1
vote
2answers
351 views
SQL select certain number of rows
Hello I need a SQL query statement that gets me rows 'start' to 'finish'.
For example:
A website with many items where page 1 selects only items 1-10, page 2 has 11-20 and so on.
I know how to do ...
1
vote
1answer
130 views
Relational vs NoSql: Which database should I use for this kind of app? [closed]
I am about to build an application which does analytics on student results. Ghe data that needs to be stored looks like this:
Course: name
Semester: 1st,2nd etc
Student: name
Subject1: marks
...
2
votes
2answers
132 views
optimize query with column in where clause
I have an sql query which fetch the first N rows in a table which is designed as a low-level queue.
select top N * from my_table where status = 0 order by date asc
The intention behind this query ...
0
votes
1answer
50 views
How are constraints defined in schema? Is it by Store Procedure, User defined function or T-SQL or PL/SQL in the Database?
How does SQL Server or Oracle or any database server applies constraints on the table>
I am aware of constraints, but how they are applied on the table or a column? I tried to find how SQL Server ...
1
vote
3answers
147 views
SQL : built-in way to detect gaps in a arbitrary series of dates?
I have a set of tables that feed into a historical reports. It's taking a while to generate the report now, and I want to create cache tables that will store the compiled data that then feed into the ...
1
vote
2answers
163 views
Database Agnostic Application
The database for one the application that I am working on is not confirmed yet by the business.
Best guess is Oracle and DB2.
What I've heard is initially the project will go live with DB2 V9 and ...
1
vote
2answers
118 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:
...
2
votes
4answers
90 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 ...
0
votes
1answer
68 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 ...
1
vote
1answer
189 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
79 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 ...
3
votes
5answers
215 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
1answer
580 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.
...
0
votes
1answer
58 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 ...
3
votes
4answers
217 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 ...
0
votes
1answer
344 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)'
...
7
votes
4answers
192 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 ...
3
votes
3answers
163 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 ...
4
votes
2answers
11k 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 ...
2
votes
4answers
67 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
5answers
766 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
114 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 ...
0
votes
4answers
155 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 ...
1
vote
8answers
109 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 ...
3
votes
3answers
132 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
168 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?
1
vote
2answers
247 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
216 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?
3
votes
1answer
2k 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 ...
0
votes
1answer
95 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 ...
8
votes
3answers
318 views
How can this SQL query code be broken/exploited by user input? [duplicate]
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 ...
0
votes
3answers
270 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" ...
0
votes
1answer
60 views
What happens when a table in a database has more rows than the max size of the index data type?
For example if i have a unsigned int index in my table, what happens when i get more rows than sizeof(unsigned int) ?
I'm interested in MySQL/PostgreSQL/MsSQL.
2
votes
4answers
306 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 ...
1
vote
2answers
2k 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 ...
3
votes
3answers
189 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 ...
1
vote
4answers
748 views
Database independence
We are in the early stages of design of a big business application that will have multiple modules. One of the requirements is that the application should be database independent, it should support ...
5
votes
3answers
392 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 ...
1
vote
7answers
853 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 ...
3
votes
2answers
381 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 ...
1
vote
3answers
196 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 ...
2
votes
5answers
251 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:
...
0
votes
1answer
159 views
Database Agnostic Reporting Frameworks
I am currently designing a .NET application using NHibernate as its DAL. I want the application to be as DB agnostic as possible and NHibernate certainly helps me achieve this. However, I know my ...
0
votes
2answers
366 views
Static Analysis Tools for Database Design
I'm looking for Static Analysis Tools for Database Tier. I got some answers for reviewing PLSQL, TSQL code, i'm wondering what are the options available for reviewing database design for naming ...
16
votes
4answers
23k 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 ...
3
votes
6answers
1k 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 ...