473,799 Members | 3,224 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

linking a query like a table


Hi there,

is there a way to link an Access XP database to a query in a different
database (Access XP as well) like you can do with tables?

My front ends need to operate on different data segments on one database
and I would like to get around modifying them..

Any help would be greatly appreciated.

--
Joerg Glissmann

remove pants to reply..
Nov 12 '05 #1
3 12951
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

If the other db can make views - make the query a view and AccXP will
"see" it as a table and can, therefore, link to it.

MGFoster:::mgf
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBP6A2YoechKq OuFEgEQIL4gCg8G 5bVOGxBDlcaH/WOGaxfIvL0v0An2 wP
NteioZkH4PwXnMA w3Z545zmb
=oQBG
-----END PGP SIGNATURE-----

Joerg Glissmann wrote:

Hi there,

is there a way to link an Access XP database to a query in a different
database (Access XP as well) like you can do with tables?

My front ends need to operate on different data segments on one database
and I would like to get around modifying them..

Any help would be greatly appreciated.


Nov 12 '05 #2

Hi MG,

thanks for the reply, but you got me a bit dumbfounded here..
I thought queries in Access XP _were_ what other databases
call views.. (The data resides in an Access XP database as well)

Am I overlooking something here?

Thanks again,

Joerg
On Wed, 29 Oct 2003 21:51:23 GMT, MGFoster <me@privacy.com > wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

If the other db can make views - make the query a view and AccXP will
"see" it as a table and can, therefore, link to it.

MGFoster:::mgf
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBP6A2YoechKq OuFEgEQIL4gCg8G 5bVOGxBDlcaH/WOGaxfIvL0v0An2 wP
NteioZkH4PwXnMA w3Z545zmb
=oQBG
-----END PGP SIGNATURE-----

Joerg Glissmann wrote:

Hi there,

is there a way to link an Access XP database to a query in a different
database (Access XP as well) like you can do with tables?

My front ends need to operate on different data segments on one database
and I would like to get around modifying them..

Any help would be greatly appreciated.



--
Joerg Glissmann

remove pants to reply..
Nov 12 '05 #3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Depends, if a query is a SELECT query, then, yes it can work as a
View. But, in Access, the term "query" also describes INSERT, UPDATE
and DELETE actions. All are referred to as queries.

Ah... I didn't see, in your 1st post, that you were trying to get data
from a query in another Access db. If both XP dbs are .mdb or .mde
files you can use the other query like this:

SELECT * FROM tblOtherTable In "c:\myDocs\Othe rDB.mdb"

If the other db is an .adp file you can link to the "View" as if it
were a table (I believe - I don't do this much. I always use DAO pass
thru queries).

MGFoster:::mgf
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBP6FczYechKq OuFEgEQIr+wCgqs SEgWy3YZm69pJgf a9+YNsZWrkAoKt6
pFk8J/l3VVBlhemBFJTma I/X
=hsqO
-----END PGP SIGNATURE-----

Joerg Glissmann wrote:

Hi MG,

thanks for the reply, but you got me a bit dumbfounded here..
I thought queries in Access XP _were_ what other databases
call views.. (The data resides in an Access XP database as well)

Am I overlooking something here?

Thanks again,

Joerg
On Wed, 29 Oct 2003 21:51:23 GMT, MGFoster <me@privacy.com > wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

If the other db can make views - make the query a view and AccXP will
"see" it as a table and can, therefore, link to it.

MGFoster:::mgf
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBP6A2YoechKq OuFEgEQIL4gCg8G 5bVOGxBDlcaH/WOGaxfIvL0v0An2 wP
NteioZkH4PwXnMA w3Z545zmb
=oQBG
-----END PGP SIGNATURE-----

Joerg Glissmann wrote:

Hi there,

is there a way to link an Access XP database to a query in a
different database (Access XP as well) like you can do with tables?

My front ends need to operate on different data segments on one
database and I would like to get around modifying them..

Any help would be greatly appreciated.




Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1997
by: Alex | last post by:
Hello, We have a database in MS SQL 2000 and I'm trying to link to it from MS Access XP. I've created a user with full access to one specific table in the MS SQL database, but Access won't write to it. I can open this table in MS Query Analyzer and log-in as the user, and I can do update, delete, and select queries just fine... but when I link to the table from MS Access using the same MS SQL username/password, I can only read the...
0
1847
by: Gianfranco | last post by:
Hi I got a problem with 2 tables. I have a table, say A, with x records, coming from a make table query and a table, say B, with y records, coming from another make table query. I need to join and link the 2 tables, so that the first record of A is associated with the fist record of B, the second record of A is associated (I mean,in the same row) with the second record of B and so on...until the last row of A (where x<y). I tried to...
5
1704
by: Arvin Portlock | last post by:
I can't come up with a query that works. Can anyone help? Conceptually the relationships are easy to describe. I have a table for books (Entries), a table for authors (Authors), and a linking table between the two because books often have more than one author (OA_Link). This situation is simple and common. A query to list each title and all the authors associated with that title looks like this: SELECT Entries.TitleStatement,...
2
1597
by: Olly | last post by:
Find an id number not present in a linking table I have a linking table (tblPayment) that monitors the subscriptions from members. However, I need a query that can compare the ID number fields from both tables, and show the ID numbers only that are not in tblPayment. My current query is like the one bellow: MemberID MemberID Year Term
11
4536
by: dskillingstad | last post by:
I've been struggling with this problem for some time and have tried multiple solutions with no luck. Let me start with, I'm a novice at Access and I'm not looking for someones help to design my database,just help in getting me pointed in the right direction. I have a database with 8 tables, which from what I have read, cannot be linked on a single form, and be updatable. I have created a query which includes all 8 tables, and then...
15
3077
by: Jerry Alexander | last post by:
The Northwind Order Entry Application database is great! ----------------------------------------- But one thing is lacking: Real-time Stock Qty calculation! ----------------------------------------- I know that this topic has been discussed over & over in forums, but I have yet to find anyone that has shown the following: ----------------- 1) Linking Allen Browne's code to Northwind? then an 2) Inventory report to show Products &...
1
2018
by: hmiller | last post by:
I'm sorry to populate the server with yet another question about linking multiple tables and queries, howerver I have not been able to find the right criteria. My problem. I am trying to either link 3 tables together in a select query, and maintain the editablity that I get when linking two tables and creating a form. I know there is a way to link 3 tables through multiple queries however I have yet to be able to get it to work.
2
800
by: davy d | last post by:
I'm having a problem with an acess form linkin with another form. My index in the main form is Autonumber (Rec#) the 2nd form is called Record# and it is set for text. The link criteria works well with linking these 2 forms together with these conditiosn, here is the vb code: stLinkCriteria = "=" & "'" & Me! & "'" but the problem is when i try to create a query it wont work with the 2 tables since they arte mismatched. numeric to...
1
1327
by: kavithadevan | last post by:
Hi, I am creating websites in my event search form i am have 2 options(which is in radio button)one is countryname and another one is state name with search field(Its in first table).If i run my page and i click countryname then it shows country table and then if i entered i want to go another page for result so my codings are in one form design is in one form.In submit form i am using one image.I gave link in image button but its not...
3
1956
by: phil67b | last post by:
Hello everybody, I have a page rech.php where I'm doing a multi-criteria research Ex. choose your car model, choose your country. After validation of my form, on the same page, the lines will be displayed (I put a max limitation of 500 lines). Ex. list of cars Fiat to buy in UK. A clic on a line will bring me to the display page disp.php Ex. I will clic on the car n° 5 =<a href="disp.php?
0
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10214
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10023
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9067
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7561
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5459
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5583
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4135
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.