Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

TSQL to query a linked AS400 server?

Status
Not open for further replies.

markth

Computer
Joined
Apr 24, 2002
Messages
1
Location
AU
I have set up an AS400 as a linked server and can see all the relevant tables from within Enterprise Manager but do not know how to query them from Query Analyzer. We are running SQL 7. I know that I need to use a four part name with the following syntax

linked_server_name.catalog.schema.object_name

Linked server name is the name I used to link it?
Catalog is the name of the AS400 library?
Schema is ????? dbo on SQL what is it on AS400??
Object name is table name?


Any help appreciated.
 
The schema is the name of the library in which the table resides.
 
Hi markth

I'm no expert but I've just been through a similar exercise-

We have an AS400 called SERV
On SERV is a library called TSTDT
and in that library is a file called SEG1A

-which only gives three of the four parts.
I linked to SERV from SQL7.0 and called the linked server SERV also.

Now from within Query Analyser I use the syntax-
SELECT * FROM SERV.SERV.TSTDT.SEG1A
which works.

I'm not sure whether AS400 connections always use the server name for the Catalog or whether our AS400 was set up that way.

Hope this helps.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top