×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Does this require the installation of the IBM ODBC or OLE DB or .NET driver on the MS SQL server?
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Charles Wilt
Sent: Wednesday, February 09, 2011 12:30 PM
To: Midrange Systems Technical Discussion
Subject: Re: Query AS/400 from SQL Server
Create a "linked server" in MS SQL Server
Then you two options:
-- Pull all rows from the table(s) back and does the where locally select * from FALCONPROD.S10316ZM.HLTHPRDFIL.LOCATP where locnbr = '00335';
-- Sends the statement to linked server for processing select * from openquery(FALCONPROD, 'select * from customp where locnbr = ''00335''');
As you can surmise, option 2 would be more efficient.
HTH,
Charles
On Wed, Feb 9, 2011 at 12:09 PM, Billy Waters <bwaters@xxxxxxxxxxxxxxxxxx> wrote:
Can someone please provide the most efficient means of querying a view on the AS/400 from SQL server? We need "real time" information from a view across multiple BPCS files.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at
http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at
http://archive.midrange.com/midrange-l.
As an Amazon Associate we earn from qualifying purchases.