P
Patrick
Can anyone give me some advice on working with SQL databases as I am
completely new to this.
I have a front-end access db(2003) working with linked back-end access mdb
tables (produkt definition) and I need to get additional data from an SQL
database (current stock).
Currently we do this by periodically exporting in Excel format from SQL-db
and importing the Excel into mdb
I want to change this so the front-end gets the data from the SQL-db
automatically.
What I have got so far is that I can create linked tables from this SQL-db
(found this in http://www.mvps.org/access/tables/tbl0010.htm)
Found that by not specifying a unique qualifier I can make these tables
read-only.
The SQL-db is maintained by 1 application. (stock control cabinet)
The front-end access db can be opened by several users at same time.
I do not want to interfere with this stock control cabinet application so
there are some concerns using the above method.
1: When opening the front-end will these linked tables be directly loaded or
only when these tables are opened? in other words: should I create the linked
table only when I need it and delete the link when I'm done or can I Linke
the table and leave it even if I not using it.
2: Are these linked tables opened as snapshot or do they dynamically
update/refresh?
3: Will opening these tables interfere with the main application used to
contol the SQL-db in ways of server-load / response speed?
4: What's better/wiser?: Linking a complete table, or SQL-ling the server
with VBA code to pass trough only those records that that I need?
5: Any more tips?
completely new to this.
I have a front-end access db(2003) working with linked back-end access mdb
tables (produkt definition) and I need to get additional data from an SQL
database (current stock).
Currently we do this by periodically exporting in Excel format from SQL-db
and importing the Excel into mdb
I want to change this so the front-end gets the data from the SQL-db
automatically.
What I have got so far is that I can create linked tables from this SQL-db
(found this in http://www.mvps.org/access/tables/tbl0010.htm)
Found that by not specifying a unique qualifier I can make these tables
read-only.
The SQL-db is maintained by 1 application. (stock control cabinet)
The front-end access db can be opened by several users at same time.
I do not want to interfere with this stock control cabinet application so
there are some concerns using the above method.
1: When opening the front-end will these linked tables be directly loaded or
only when these tables are opened? in other words: should I create the linked
table only when I need it and delete the link when I'm done or can I Linke
the table and leave it even if I not using it.
2: Are these linked tables opened as snapshot or do they dynamically
update/refresh?
3: Will opening these tables interfere with the main application used to
contol the SQL-db in ways of server-load / response speed?
4: What's better/wiser?: Linking a complete table, or SQL-ling the server
with VBA code to pass trough only those records that that I need?
5: Any more tips?