Hello, i'm new in this forum and in access too so please be patient
I'm trying to set up a database using access 2010 but i can't reach a satisfactory solution.
The main goal is to overcome the limitation of 2GB/file splitting the database in different tables.
The database has to be used by different people (1->10) and will be stored in a shared folder, reading this page i decided to split the database.
I have thousand of "articles" and every article can have more than 1 photo.
A simple table with the "attachment" field does its job but it's limited (2GB/file)
I split the table in 2 part, first with article data and attachment_id and the second with attachment_id and the attachment. It works but obviously attachment table is still too big to keep all files.
I failed trying to set up a db with a table ("articles") and a lot of attachments table ("att1", "att2"). Access should automatically choose from where it should load data. First try was with two fields in the "articles" table (att_file, integer; att_id, integer) and all macros tried to access table "att"&[att_file] but i can't reach a solution.
An easier way is probabilly to split "attx" table every 100 articles so article (0..99) will go to att0 table, (100-199) will go to att1, etc.
In this direction it's not necessary the field att_id in the "articles" table because i could set the first field of attx as number (not automatic numbering) copying the same id of the articles table. I don't know if this could decrease the performance of the DB.
What i need is not the implementation of my ideas, but maybe a simplier way to reach the same reults. If you agree with my idea can you explane me how to set up the DB? Basically i prefer not to dive in an hardcore programming, specially if there are graphical way to achieve the same results. So please, if it's possible, i prefear to use macros instead of scripts and the mouse instead of the keyboard.
Thanks