looking for Microsoft SQL Server wrapper library to federate - db2

I'm serious in trouble. IBM's response is slow.
I'm looking for module that db2 federate to SQLserver.
I guess this module is called Microsoft SQL Server wrapper library.
https://www.ibm.com/support/knowledgecenter/en/SS2K5T_10.5.0/com.ibm.swg.im.iis.found.conn.fw.mss.doc/topics/rlsmss13.html
Please tell us where i get this module.
we looking for this module in IBM's support site and media and %DB2_INSTALLD_PATH%.

Thank you for your information.
I could wrapper module from fixpack,but I don't have license of Infosphere Federation Server.because de2s edition I have is workgroup edition!
So I plan for sqlserver to link server.

Related

Teradata Rest Services

I would like to use REST Services on Teradata, the TDB is on windows installed, how can I install REST Services on windows, did someone hier already have tried it and can tell steps or is there a good video explain that well? Thx

Import Postgres data into Google Spreadsheets

I was trying to achieve this using google app script but sadly app script does not have a jdbc connector for postgres. Can someone please help me out with detailed steps on what needs to be done in order to get the postgres data in spreadsheets.
If you go to JDBC Apps Script guide it says there that:
"Apps Script can connect to external databases through the JDBC
service, a wrapper around the standard Java Database Connectivity
technology. In Apps Script, the JDBC service supports Google Cloud
SQL, MySQL, Microsoft SQL Server, and Oracle databases."
No mention of PostgeSQL support as of now.

setting up ZEND framework for php informix

Our organization builds web applications using PHP/Informix.
Currently we do not have any frameworks and use our own libraries and modules.
Now we set up a new apache web server so that we could install and configure a framework where all brand new web applications can be developed.
I was thinking of setting up the Zend Framework.(Will it go with informix backend?). I have googled and looked around for information , but I thought would get some expert opinions from the experts here.
I need some advice as how to go about from scratch the correct way.
Installing,configuring,setting up a version control and writing a script to test all basic MVC features.
Any suggestions and references would be helpful.
If you are using Informix Dynamic Server as your backend, then yes you can use Zend Framework's native database classes and adapter for communicating with your Informix server.
Your requirements will be that PHP must be compiled with PDO support (enabled by default since PHP 5.1). You then need to download, compile, and install the PDO_IBM Pecl package.
In order to successfully build the PDO_IBM extension, you must have the DB2 client (9.1+) installed on your system already. When you compile the extension module, you must tell it the path to where those files are installed.
More information on PDO_IBM, and Zend_Db_Adapter talks a little bit about the available adapters (including PDO_IBM).
There is also a Pecl package PDO_INFORMIX for talking to Informix servers, but Zend_Db does not support this package. You will only be able to use Zend_Db_Adapter with PDO_IBM to communicate with IDS servers.
Hope that helps.

Integrating SugarCRM with Microsoft Exchange Server

What I need is a connector for integrating SugarCRM with Microsoft Exchange server.
I am using SugarCRM CE 6.0.2
There are several solutions of integrating/synchronizing SugarCRM with Microsoft Exchange Server.
The first one as you pointed out is using the open source implementation of Microsoft Exchange Server's protocols from OpenChange. A complete tutorial is posted at the accelerate4.com site you mentioned above.
The official SugarCRM go-to way is using a Riva Integration Server. However there are several applications/plug-ins for synchronizing available: J-ExSync, ZuckerExchange, whereas I don't know about their quality. You might want to search through the application list on SugarForge.

How to Access Peachtree Database in Zend Framework?

I want to access Peachtree Database into Zend Framework. I have installed Zend Framework and Peachtree Premium Trial Version. Now I want to access the database of Peachtree into Zend Framework. Please provide some link or code to do the same.
According to its website, Peachtree uses the Pervasive PSQL embedded database.
To access Pervasive PSQL from PHP, one could try PHP's ODBC extension. This is the recommended connection solution mentioned on http://ww1.pervasive.com/developerzone/development_env/php.asp
Zend Framework tracked a feature request to implement an ODBC adapter for Zend_Db, chiefly to support Microsoft SQL Server. The hope was that this would also allow connecting to any RDBMS that had an ODBC driver.
But work on the ODBC adapter feature was abandoned after a specific Microsoft SQL Server adapter was written for Zend_Db, about July 2009.
So I don't think there is any path to integrate the Peachtree database with Zend Framework classes.