Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have 2 ODBC connections set up on my web server. One that connects to the our enterprise QAD database and another that connects to our custom database used to extend our database. In this paticular example I have my employee records in the QAD database, and then an employee number in another table in the custom database.

Is there any way for me to set up a cross join between the two odbc connections in php so that I don't have to loop through the results of the first query and send several queries based on the returned results to tie my records together in a php array?

The best i've been able to come up with is to build an IN clause from my first query from our custom database, send the second query to the QAD database, and then do an array merge in php. However, this is an extremely slow process compared to a normal SQL join.

share|improve this question
OpenEdge, hunh? I have a fun solution, but it's only for JDBC (on OpenEdge 10+) and Ruby. Probably makes it infeasible for your scenario, but let me know if not. – Abe Voelker Oct 22 '12 at 19:54

2 Answers

Short Answer: You can't JOIN tables between two connections.

Scenarios: (all of them in one single connection)

  • By default, in most databases, you can Join tables in different schemas by prefixing the schema name before the table, like this:

(...) FROM defaultDB.TableA INNER JOIN extensionDB.TableA ON ({Condition}) (...)

  • Depending on your Database (I don't know about Progress DB deeply), you may not be able to join Tables that belongs to schemas in different servers.

  • Joining tables in different databases (Eg: Progress x MySQL) it's even more complicated. I've heard about Oracle Gateway, a proprietary solution that (not really sure) could achieve this last scenario.

In summary:

If your situation does not fit the first scenario (which points to the most obvious approach), I guess the shortest solution would be profiling your code and optimize possible performance bottlenecks. Adapting your code for parallel processing could be a bolder improvement.

share|improve this answer
Unfortunately I think I need to have different brokers set up for my different databases, and It is my understanding that they need to run on different ports which forces me into using two seperate ODBC's. If there is evidence otherwise though I'd be very interested in combining both odbc's into a single one to accomplish this. – Joe Meyer Oct 24 '12 at 17:16

Not sure if you've already found a solution to this but there is a Progress article on how to do this.

Quick Guide To Setting Up MultiDatabase ODBC Connectivity

I had a similar requirement - I wanted to create a join between a table in the primary QAD database and a custom table in our custom database. I have tested this and it works well although my setup is slightly different. I needed to connect to QAD from Microsoft SSRS to create reports against the QAD data - I needed to create some reports that the standard QAD report designer could not handle.

I have tested this on Progress 10.1c (this method is only supported in 10.1b+).

So the steps I took were:

  1. Create the oesql.properties config file as per the article relevant to the primary and custom databases.
  2. Create the ODBC System DSN on the client machine (in my case a Windows Server 2008 R2 machine running SQL Server 2008 R2 with SSRS) with the additional database references as per the article.
  3. Create a Linked Server in SQL Server via the ODBC DSN
  4. Create a view which uses the OpenQuery syntax to extract data from QAD (in my case this was created in the ReportServer database) via the linked server.
  5. Create standard T-SQL query using the view in point 3 as the data source. This was ultimately the datasource for my SSRS report.

I believe it is important that the bit versions of the OS/Database and the ODBC drivers match but haven't confirmed this yet.

Whilst my requirement is different to your's ultimately it's the QAD server config and ODBC setup that's key. As long as your PHP client can perform a similar capability in terms of the OpenQuery command then you may get this working. I don't have any experience with PHP so can't help you there.

It seems a bit convoluted but actually works very well and in a lot of cases actually outperforms querying data using QAD browses!

Hope this helps.

Edit: Here's a sample of an OpenQuery command - you can see that the table joins work in the normal way but just require and additional piece in the table reference.

CREATE VIEW [dbo].[vQADData] AS SELECT * FROM OPENQUERY(LinkedServerName,
'
SELECT custTable.item_date AS DESP_DATE, so_mstr.so_site AS SITE, so_mstr.so_po AS PO_NO, so_mstr.so_inv_nbr AS INV_NO,
      ad_mstr.ad_name AS ADNAME, ad_mstr.ad_city AS ADCITY, ad_mstr.ad_state AS ADSTATE
FROM customdbname.pub.customtable custTable
INNER JOIN pub.so_mstr ON so_mstr.so_nbr = custTable.so_nbr
INNER JOIN pub.ad_mstr ON ad_mstr.ad_addr = so_mstr.so_ship
INNER JOIN pub.sod_det ON sod_det.sod_nbr = custTable.so_nbr
WHERE so_mstr.so_site = ''SiteName'' AND so_mstr.so_shipvia = ''SHIPPER'' AND custTable.item_date IS NULL
')

Then just access the view using normal SQL syntax.

SELECT * FROM vQADData
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.