Tagged Questions
The cross-database tag has no wiki summary.
3
votes
3answers
1k views
EF4 cross database relationships
I was wondering if EF4 support cross-databse relationships? For instance:
db1
Author
Id
Name
db2
Posts
Id
Content
db1.Author.Id
What ideally I need to do to get this relation in my ...
2
votes
1answer
138 views
Cross Database Join with Linq - Updating T4 template to support DB name?
I'm currently running in a multi-DB SQL Server environment and using linq to sql to perform queries.
I'm using the approach documented here to achieve cross DB joins:
...
2
votes
1answer
430 views
Running trigger that calls stored procedure on another database
We would like to run a trigger on one database (A) that calls a stored procedure on another database (B).
CREATE TRIGGER trg_A ON TableA
FOR INSERT
AS
BEGIN
EXEC DatabaseB.dbo.stp_B
END
We ...
2
votes
2answers
423 views
performance effect of joining tables form different databases
I have a web site using a database named lets say "site1". I am planning to put another site on the same server which will also use some of the tables from "site1".
So should I use three different ...
2
votes
2answers
350 views
LINQ to SQL: Get records from two DB's that are on different servers
I need to fetch records from tables, that are in two diff. databases in two different SQL Servers.
For Instance. Sales DB on server1 and Purchase DB on server2. Both Sales and Purchase DB's have some ...
1
vote
2answers
121 views
Is there any short cut for using dblink in Postgres?
In Postgres, you can link to your other databases using dblink, but the syntax is very verbose. For example you can do: SELECT *
FROM dblink('dbname=name port=1234
host=host ...
1
vote
1answer
134 views
Codeigniter Datamapper Cross-Database Joins
Good morning,
I am currently working on a project that utilises Codeigniter and the Datamapper Library (http://datamapper.wanwizard.eu). The project uses a central database for user data (called ...
1
vote
1answer
287 views
SQl 2008 cross database performance on same physical machine and same server instance
Is there any performance hit when doing a select across another DB on the same physical machine? So I have 2 databases on the same physical machine running within the same SQL 2008 instance.
For ...
1
vote
2answers
262 views
SQL Server cross database query when the other DB name is not known in advance?
Given a multi-tenant setup with one database that holds the tenant data, and one database for each tenant, how can you construct a query to look up the same piece of data in each tenant database?
eg ...
1
vote
1answer
929 views
Avoiding the use of SET TRUSTWORTHY ON
I'm working with a system which had to create objects in one database based on objects being created in another database. The objects are not duplicates, so I can't simply replicate the objects.
I ...
1
vote
3answers
394 views
Cross-database view permissions
I'm working with a database (let's call it DB_data) that contains all of the tables for a series of applications. In an attempt to minimize downtime during upgrades, a facade database (let's call it ...
1
vote
3answers
101 views
Cross-database queries with numbered database name
I'm a bit of a novice when it comes to SQL Server 2005. I have a database containing most of the stored procedures and tables (we'll call it 'GrandDatabase'). Each user has its own separate database ...
1
vote
1answer
610 views
Cross-database views and mirroring in SQL Server
I have a question about mirroring and cross-db views.
We have a view in database X which references database Y on the same server S1.
The databases X & Y are both mirrored onto another server S2.
...
0
votes
0answers
22 views
How to add linked server SQL Server 2008 R2 [migrated]
I have two SQL Server 2008 located in different cities.
I have physical access to one of them and I can exec SQL Server Management Studio there.
For second server I have following parameters:
...
0
votes
0answers
65 views
SQL cross database aggregate table
I have several databases on the same SQL Server with the same tables, and I am trying to pull a report of counts for a types of licenses (based on two different columns) across all of them.
There are ...
0
votes
0answers
130 views
Cross database synonums Foreign key error
I am using Visual Studio 2010 Database project to manage all the script on the SQL Server 2008 database. For the design reason I have to have cross database foreign key reference.
So for two tables ...
0
votes
3answers
383 views
Cross database joins in JPA
Is it possible to do cross database table joins in JPA?
I have a users table in one database which has a foreign key to a organizations table in a separate database. Both the databases are on same ...
0
votes
1answer
253 views
SQL Server: avoiding hard coding of database name in cross-database views
So, lets say you have two SQL Server Databases on the same server that reference each others tables in their Views, Functions and Stored Procedures.
You know, things like this:
use database_foo
...
0
votes
1answer
198 views
Cross database search criteria object
In php Codeigniter you can write:
$this->db->select('username')->from->('users')->where('id',5);
Do you know any good lib for java/hibernate that function the same?
Thanks
0
votes
1answer
459 views
SQL Server Replication (cross-database queries & constraints)
We want to replicate data from one database to several others (on another server). Would it make sense to replicate these tables to a shared database on the other server and have our cross-database ...
0
votes
2answers
104 views
Suggestions on retrieving related data across databases with different logins?
I have an array of user ids in a query from Database A, Table A (AA).
I have the main user database in Database B, Table A (BA).
For each user id returned in my result array from AA, I want to ...
0
votes
3answers
1k views
Cross table join using MYSQL rather than MSSQL
Is it possible to do a cross table join in mysql spaning different tables? in different databases.
This seem to be easily possible in MSSQL, and greatly speeds up data transfer?
How about mysql, do ...
-1
votes
4answers
144 views
connecting to another db from one server
Ok so I have a client that is trying to move half his site to another server...in this i still need to pull data from both databases. SO i have the new site and i need to do a mysql db query on the ...