loulou2522 wrote:In sqlite you can attach à databse with this synthax
Can someone says me if it is possible in POSTGRESQL and eventually the sql synthax for
Thanks in advance
Hi Loulou2522,
PostgreSQL has a user-based system that revolves around schemas. Therefore, you can have a group of data that can exist under User1, User2, etc.
With this schema system you can then access these data-sources as User1.Table1, User1.Table2, User2.Table1,User2.Table2, User2.Table3,etc. All of these user/schemas exist in the same data file under PostgreSQL.
SQLite doesn't have this user/schema feature. Therefore, if you want to segregate data in SQLite, you have to use separate data files and employ the ATTACH statement.
However, it is possible to import external data into Postgres.
Sorry if I'm stating the obvious.
Sent from my LM-Q710.FG using Tapatalk