Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
14k views

Multiple database with Spring+Hibernate+JPA

I'm trying to configure Spring+Hibernate+JPA for work with two databases (MySQL and MSSQL) my datasource-context.xml: <?xml version="1.0" encoding="UTF-8"?> <beans ...
1
vote
1answer
230 views

SQLite view across multiple databases. Is this okay? Is there a better way?

Using SQlite I have a large database split into years: DB_2006_thru_2007.sq3 DB_2008_thru_2009.sq3 DB_current.sq3 They all have a single table call hist_tbl with two columns (key, data). The ...
1
vote
2answers
224 views

Can LINQ To SQL used for other database (MySQl, Oracle, etc)

I have project creating with WPF and for database O/RM using LINQ to SQL, when i finish my project some people want to use MySQL as database, so can I change my Linq to MySQL without change any source ...
1
vote
1answer
3k views

INT, BIGINT or UUID/GUID in Oracle, DB2, Derby and HSQLDB?

For our next project, we're considering to switch to UUIDs as primary keys for database tables. The project will run on HSQLDB, Derby, DB2 and Oracle, maybe MySQL. Data will not have to be migrated ...
0
votes
0answers
57 views

Multi DataSources: 1 RW + many RO

We have an app with single database 'dbMain', with set of read and write operations. Now we need to add using extra databases db1-db10 for read-only operations, for using in SomeServiceImpl. The ...
0
votes
1answer
45 views

Django Project Multi-Database Config in settings.py

I am currently in the process of taking an asp.NET internal website written in C# and redoing it in the Django web framework. After identifying all of the current data sources being used by the .NET ...
0
votes
1answer
73 views

django settings.py and multi-database help

I'm using django1.3, wanted to put my data into 1000 databases, like app_idmod_0 ~ ap_idmod_999. Now I changed my settings. DATABASES = { 'default': { 'ENGINE': ...
0
votes
1answer
136 views

SQL Server 2008 Multi-db stored procedure: The multi-part identifier could not be bound

I am trying to write a stored procedure for SQL Server 2008. It is for a migration tool that migrates data from one database to another. I want to get all records from the old database that aren't ...
0
votes
1answer
73 views

Limit data manipulation from user only through application layer for multi-database solution

I'm starting the development of a new software that must be compliant to SQL Server (2005 and above), Oracle (10r2 and above) and Sybase (12.5 and above). I'm planning on implementing the database ...