Is it possible to replicate files between databases?

I have multiple databases to hold content of different types and purposes, following a thread somewhere on this forum here (where it encouraged to partition your data into multiple databases).

However, I also have a need to have some files appear in both databases/for referencing.

Is it possible to replicate files between databases?

Thanks.

No it is not possible to replicate files between databases.

If you want the same file (same physical file) to appear in multiple databases, then keep it in the file system external to your database(s) and index it in each database. Gets you the same result as replication.

Ok thanks!