Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
28 views

How do I link tables with id from a list stored as XML in a column

Hopefully the question explains it well. I have a DB for a Library. Since they can be used many times, and contains more data than just a name, I have a table for Authors. Then there's a table for ...
3
votes
5answers
6k views

Linked Access DB “record has been changed by another user”

I'm maintaining a multiuser Access 2000 DB linked to an MSSQL2000 database, not written by me. The database design is very poor, so you'll have to bear with me. On the 'Customer' form there's a ...
2
votes
2answers
2k views

MS-Access Add Additional Linked Tables

I have an MS-Access database that was converted to use SQL Tables using the "Microsoft SQL Server Migration Assistant 2008 for Access" (aka SSMA) and created linked tables (so the MS-Access interface ...
1
vote
2answers
29 views

access 2010 with linked sql tables

I have a split form view with data coming from linked sql server (2008). How do I go about updating the record? Currently, it will not let me change anything in the text boxes i assume this is ...
1
vote
1answer
76 views

What does 'Insert into linked table failed, RAISERROR could not locate entry for error x in sysmessages' mean?

I'm asking Access 2002 to run a query like this against an SQL 2000 Server: INSERT INTO tableA (col1, col2, col3, ...) SELECT (col1, col2, col3) FROM tableB LEFT JOIN tableA ON tableA.id = tableB.id ...
1
vote
1answer
49 views

Issue using Access DoCmd.Rename on table: linked names not renamed

Folks, Summary: why might Docmd.Rename on a table result in tables that don't change name over a Link from another DB? I'm trying to fix up an old database that needs TLC. Part of this is deleting ...
1
vote
0answers
80 views

Encoding issue with MsAccess/mysql - not displaying accent marks properly

I need to migrate some data we have in Access tables to mysql. I have used Mysql as a backend and MsAccess as a frontend before so I figured this was a no brainer. In the mysql/Access combo that works ...
1
vote
1answer
122 views

Is it possible to link one MDB to another in a standalone manner?

Is it possible to link one MDB to another in a standalone manner? Ie. If I have the accounts table in db1.mdb and the products table in db2.mdb, can both these MDBs be coded so that they can link to ...
0
votes
0answers
24 views

Access 2007 linked table from a restricted Excel spreadsheet

I'm having trouble with a database project I'm working on. I'd like to import data tables from named ranges in an Excel sheet to Access via linked tables. The problem is that I have restricted ...
0
votes
2answers
24 views

Changing from an enum to a linked table

We are going to change something that we have an enum to an id of a linked table instead. How would we go about that? Our current enum name: strat Our new linked name: stratid What I was thinking ...
0
votes
2answers
100 views

Is it possible to change Msysobjects in ms access

Is it possible to change MSYSObjects table values manually. Especially the Database field in MSysObjects Table Because i need to change path of linked table manually. Linked table manager is no use ...
0
votes
1answer
95 views

Wanna change path for linked table in ms access 2000

I have MS ACCESS DB which is already linked with many tables in ORACLE. I wanna add few more tables to that from different server of ORACLE. Problem is if i connect to the server through MS ACCESS ...
0
votes
3answers
122 views

Renaming fields in linked-table MDB file pair?

I have an Access 2003 database using MS-JET linked tables (that is, there are two *.mdb files). The overall task is to move to SQL server. However the existing databases have multiple fields with ...
0
votes
1answer
117 views

order by issue with Multiple-record append query in ms access linked table with sql server

we are selecting the multiple records of the sql server linked ms access tables using the joins and order by clause and inserting the resulting data into another sql server linked table in the ms ...
0
votes
1answer
220 views

ms access 2000 changing linked tables without using Linked table manager

I'm using MS ACCESS 2000. I have few tables in AB.mdb linked to some other table XY.mdb in my machine. Its working fine in my machine local. Now if i move this AB.mdb to some other machine its ...
0
votes
2answers
423 views

Linked tables in SQL server 2008 express

I am migrating an ACCESS 2000 to SQL express 2008 and am having trouble with the linked tables. Is there a way to replicate the ACCESS linked tables to SQL? Thank you
0
votes
1answer
342 views

Retrieve column descriptions from SQL Server-linked table in MS Access

I am linking to tables in SQL Server from an MS Access front-end. There are column descriptions for some of the tables in SQL Server that I would like to bring forward when I create the linked tables ...
0
votes
1answer
278 views

Linked Informix table in MS SQL Server ignoring criteria?

I’m having a problem with a linked Informix table in MS SQL Server 2008r2. When I query this table, it seems to ignore some of the criteria I’m passing to it but not others. For example if I put a ...
0
votes
5answers
556 views

Performance of MS Access when JOINing from linked tables in different servers?

If I have an MS Access database with linked tables from two different database servers (say one table from an SQL Server db and one from an Oracle db) and I write a query which JOINs those two tables, ...