Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
1k views

Making an Entity Framework Model span multiple databases

Is it valid to do something such as CREATE SYNONYM [dbo].[MyTable] FOR [AnotherDatabase].dbo.[MyTable] and then modify Entity Framework's edmx file to read this object like it would any other ...
7
votes
2answers
354 views

nHibernate, ASP.NET MVC, s#arp architecture and multiple identical databases

We are currently developing an application based on NHibernate and ASP.NET MVC and a SQL Server backend. Since I'm fairly new to NHibernate, I'm tryig to understand best practices. Our application ...
7
votes
4answers
383 views

.NET migrations: Setup and migrate multiple databases at runtime

Brief introduction: I have this ASP.NET Webforms site with the particularity that it doesn't have only 1 database, it has many. Why? Because you can create new "instances" of the site on-the-fly. ...
7
votes
10answers
1k views

What is the best way to support multiple databases for a .Net product?

We are designing a product which could support multiple databases. We are doing something like this currently so that our code supports MSSQL as well as MySQL. namespace Handlers { public class ...
5
votes
3answers
243 views

How to write MySQL query on 2 different tables residing in 2 different databases on 2 different servers?

I have 2 tables table1 in database1 on server1 having userID and userName table2 in database2 on server2 having userID i need a way to access table1 on server1 to get the userName of ...
5
votes
1answer
686 views

Dynamic JPA Connection

I have a fairly standard Java EE6 web application using JPA 2 with dependency injection connecting to a MySQL database and everything is working fine. What I would like to do now is have this ...
5
votes
1answer
906 views

How to identify a particular entity's Session Factory with Fluent NHibernate and Multiple Databases

Question follows on from http://stackoverflow.com/questions/2655861/fluent-nhibernate-multiple-databases (no need to follow this link,there should be enough background here). My problem is this: I'm ...
4
votes
2answers
148 views

Selecting id from database where not in large collection, Too many parameters provided

I am working on a application that has two databases. I have an object, let's call it permit, that has a list of id's referencing to id's from a table, lets call that tasks, in the other database. ...
4
votes
1answer
150 views

How do I bring data together from multiple databases?

BACKGROUND: I should preface this by saying I'm not trying to get someone to do my work for me. I feel like I'm at a bit of a crossroad where there are multiple ways to get to my goal, but I'm not ...
4
votes
1answer
561 views

Managing multiple databases with NHibernate and Autofac

I thought I'd get this question out there while I noodled on a solution on my own. After having built out the bulk of an application, I have a last minute requirement to support reading/writing to an ...
4
votes
1answer
606 views

establish_connection doesn't seem to support joins

I'm trying to move my User account and session data into a separate database so that we can eventually share it across multiple applications. I've seen plenty of people online saying to use ...
4
votes
3answers
608 views

Qt MOH multiple inheritance problem?

Greetings , I my QT application,I have a base class as follows.I am using QObject because I want to use Signal-Slot mechanism in all derived classes. class IRzPlugin : public QObject { public: ...
4
votes
1answer
573 views

Single website multiple connection strings using asp mvc 2 and nhibernate

In my website i use ASP MVC 2 + Fluent NHibernate as orm, StructureMap for IoC container. There are several databases with identical metadata(and so entities and mappings are the same). On LogOn page ...
4
votes
4answers
4k views

JPA Multiple Persistence Unit bug

I'm trying to add one more database/schema/persistenceUnit in my project and I'm receiving the error: No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean ...
4
votes
2answers
1k views

(Ruby,Rails) Dynamically connecting a model to databases in a running app…?

I've read many of the existing questions/threads on this subject, but keep in mind that none of them have directly addressed my issue. Also keep in mind that this is NOT a situation for database.yml ...
3
votes
2answers
462 views

Can multiple (two) persistent stores be used with one object model, while maintaining relations from one to the other?

Introduction My iOS project ships with a Core Data persistent store weighing some 160MB in SQLite format. There is a ton of grouped information in there, in which users should be able to mark ...
3
votes
3answers
450 views

How to implement repository pattern for multiple database

We currently have two presentation projects (classic ASP and ASP.NET, which uses the "NHibernate Best Practices with ASP.NET" (predecessor or Sharp architecture). We are now rewrite all the classic ...
3
votes
1answer
288 views

How do you set up a second database connection without the use of any yaml files?

I have an app running on Heroku and I want to set up a connection to a second database (from another app running on Heroku). All solutions I have seen for multiple DBs involve the database.yml file, ...
3
votes
1answer
212 views

“Foreign Keys” across very separate databases in Django

I've writing a Django site that uses two different databases. One is the local, let's call it, "Django", database that stores all of the standard tables from a pretty standard install -- auth, sites, ...
3
votes
3answers
1k views

Hibernate using multiple databases

I need to have multiple databases for different customers. How can I handle multiple databases with Hibernate? Are there any good examples how to do this? I could create Configuration object and then ...
3
votes
1answer
222 views

Django - how to specify a database for a model?

Is there a way to specify that a model (or app, even) should only ever use one particular database? I am working with a legacy database that I don't want to change. I have two databases - the ...
3
votes
7answers
8k views

Multiple database connection in Rails

I'm using active_delegate for multiple connection in Rails. Here I'm using mysql as master_database for some models,and postgresql for some other models. Problem is that when I try to access the ...
2
votes
3answers
26 views

Design Opinions Needed: Template Databases/Tables for users

I need professional programmers/DBAs to bounce my idea off of and to know if it would/could even work. Please read below and give me any information that may break this theory. Thanks. Overview ...
2
votes
1answer
71 views

Split MySQL databases

I have a question about split databases. This is the query in question: SELECT COUNT(*) FROM monies.link_monies_new lcn ' . 'INNER JOIN products.link l ON lcn.link_id = l.link_id ' ...
2
votes
1answer
315 views

Migrating multiple databases using doctrine2 with Symfony2

I have 2 databases db1 and db2 in symfony2 + doctrine2 and both databases are different from each other in terms of tables and their fields. I need to work on migration. Things work fine as long as ...
2
votes
1answer
429 views

MS Access databases on slow network: Is it faster to separate back ends?

I have an Access database containing information about people (employee profiles and related information). The front end has a single console-like interface that modifies one type of data at a time ...
2
votes
1answer
313 views

CodeIgniter Multiple Databases Persistent Connection?

I'm using multiple database in my CodeIgniter application and have been reading a lot that persistent connections should be turned off. Why is this measure recommended and is this still necessary in ...
2
votes
1answer
190 views

NHibernate: mapping entities across multiple DBs on different servers w/o DB link

I found a bunch of (possibly outdated) articles and forum posts on this subject, some seeming contradictory, and many hesitating, but could not get a definitive answer to that question: Using the ...
2
votes
3answers
414 views

django unit testing on multiple databases

I'm working on a django project where all my unit test cases were working perfectly. Ass soon as I introduced a second database all my test cases that inherit from TestCase are broken. At this stage ...
2
votes
2answers
4k views

EJB3 - using 2 persistence units within a transaction (Exception: Local transaction already has 1 non-XA Resource)

I am trying to use 2 persistence units within the same transaction in a JEE application deployed on Glassfish. The 2 persistence units are defined in persistence.xml, as follows: ...
2
votes
1answer
179 views

Making a connection between multiple databases

I'm using JAVA DB (derby) I want to import a public view of my data to another database (also in java db). I want to pass this data and save in to the other database. I'm having trouble since the ...
2
votes
1answer
228 views

seperate read and write databases with hibernate

With hibernate, I want to be able to support multiple databases, one for read and one for writes. Is this possible? Is the only way to create 2 separate session objects?
2
votes
3answers
3k views

How to configure transaction management for working with 2 different db in Spring?

I have 2 databases (MySql and HSQLDB). I configured 2 data sources and 2 EntityManagerFactory beans. I can also configure 2 correspondent JpaTransactionManager beans. But I don't know how to specify ...
2
votes
3answers
599 views

multiple database relationship on field other than primary key in CakePHP

I have a project that necessarily spans several databases. One database has tables: CREATE TABLE device { device_uid integer unsigned not null primary key auto_increment, os varchar(50), ...
2
votes
1answer
680 views

Handling Multiple databases with NHibernate in a single application

At the moment I define the connection properties in a configuration file and only ever connect to one database. I'd like to be able to at some point have a user login, figure out (via a seperate ...
2
votes
2answers
170 views

multiple db connections vs. centralized/redundant db

I have a project to create a dashboard that will connect to existing systems as well as create new features based on combining data from the existing systems. For example, the dashboard will be able ...
1
vote
2answers
49 views

Fetching data from multiple database

I have multiple databases say DB1, DB2, DB3 and MembershipDB. Every Database has GUID column named ApplicationID & set of Users having MembershipID as GUID. Each User of every Database is Isolated ...
1
vote
0answers
11 views

Using a database_alias other than default when saving/populating a ModelForm

I am currently having some issues getting ModelForms to behave consistently using multiple databases. I have an project that uses multiple databases. Each model resides in one db or another so I ...
1
vote
1answer
65 views

Spring + Hibernate + JPA + multiple databases

I have a Spring + Hibernate + JPA app. The user, when logging in, can choose from a list of DB's to connect to (these are the requirements). All the DB's have the same schema, so the same entities and ...
1
vote
0answers
69 views

Spring: HibernateTransactionManager handling multiple datasources

In the following piece of code (Spring 3): @Transactional("txManager") public class DaoHolder { @Transactional(value="txManager", readOnly=false, propagation=Propagation.REQUIRES_NEW, ...
1
vote
0answers
126 views

Change bean property/value during runtime in spring

I am using spring mvc+hibernate+two databases So for example: I create 2 sessionFacotries sessionFactory1(using datasource1) and sessionFactory2(using datasource2). Would it be possible to change ...
1
vote
2answers
72 views

What is more taxing on the server? The number of databases or the amount of data?

I have inherited a web application at work. It creates new a MySQL database every time an user/account is added. Each database usually goes up to 300mb but no more. At 271 databases running on AWS ...
1
vote
1answer
41 views

MySQL Connector Multiple Servers different port

I have an app that will be supported by two MySQL servers. They reside on 2 different machine on different network and on different ports. i found in here the following connection string for multiple ...
1
vote
2answers
90 views

Android ContentProvider intialization not at application start

is it possible to initialize the contentprovider in the application? because i need to create a database for every user/server combination and I'm creating the database with the login information in ...
1
vote
0answers
146 views

MySQL - Best way to keep database synchronized with multiple clients

There are hundreds of clients that will use a windows system in which they manage their own information. That information is sent to a server for analysis (web system). Both, the clients and the ...
1
vote
2answers
172 views

Symfony project with models stored in multiple databases

I am writing Symfony project (using symfony 1.4 ver. with Propel as its ORM) where some data is stored in MySQL database and some other data is stored on another server in PostgreSQL database. To be ...
1
vote
1answer
168 views

SQLite optimization — two databases vs. one

I'm developing an iPhone app with two SQLite databases. I'm wondering if I should be using only one. The first database has a dozen small tables (each having four or five INTEGER or TEXT columns). ...
1
vote
1answer
176 views

How to approach implementation of mutiple-sites inside a django application?

Requirement: enable one instance of your Django application to serve multiple clients. By client we can mean different domains or different accounts that are not supposed to access each other's data. ...
1
vote
2answers
103 views

Adding a second legacy database to an existing django 1.2 project

I have a django project that I have been using for a while, but now I want to add some a new dataset from a second, non-django database. I have successfully configured my settings.py file to use the ...
1
vote
2answers
353 views

Django Multiple Databases - One not always available

I am developing a Django application which will use multiple database backends. I would like to put an sqlite database on the machine running the django application, and sync to a remote mysql ...

1 2 3