Seems like you have problems understanding the file extensions.
filename.sql.zstd.part
.part
usually means you are downloading a file from the internet, but the download isn't complete yet (so downloads that are in progress or have been stopped)
So to get from filename.sql.zstd.part
to filename.sql.zstd
you need to complete your download
.zstd
means it is a compressed file (to save disk space). You need a decompression program to get from filename.sql.zstd
to filename.sql
The compression algorithm used is called Zstandard so you need a decompressor specifically for this program. Look here https://facebook.github.io/zstd/ for such a program.
There was also once an R package for this - but it has been archived. But you could also download an older version
(https://cran.r-project.org/web/packages/zstdr/index.html)
In filename.sql
is actually not a database. In an .sql
file are usually SQL statements for creating / modifying database structures. You'd have to install a database e.g. MariaDB and then import this .sql
file to actually really have the files in a database on your computer. And then you would access this database via R.