PostgreSQL 示例数据库
我正在寻找 PostgreSQL 9 的示例数据库(架构+数据)。是否有示例数据库的存储库?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在寻找 PostgreSQL 9 的示例数据库(架构+数据)。是否有示例数据库的存储库?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
有一个 PgFoundry 项目,其中包含几个示例 PostgreSQL 数据库。其中大多数已经有一段时间没有更新了,但仍然适用于最新的 PostgreSQL 版本。
如果您需要更大的数据库,MusicBrainz 音乐元数据数据库 提供完整的数据库转储可供下载。
There's a PgFoundry project that contains several example PostgreSQL databases. Most of these haven't been updated for a while, but will still work with recent PostgreSQL versions.
If you need a bigger database, the MusicBrainz music metadata database has full database dumps available for download.
我刚刚发布了开源莎士比亚数据库的 PostgreSQL 端口:https://github.com/catherinedevlin/opensourceshakespeare。它比所有其他示例数据库有趣得多。
I just published a PostgreSQL port of the Open Source Shakespeare database: https://github.com/catherinedevlin/opensourceshakespeare. It's much more fun than all those other sample databases.
您可以在 PostgreSQL wiki 中找到一些:http://wiki.postgresql.org/wiki/Sample_Databases
You can find some in the PostgreSQL wiki: http://wiki.postgresql.org/wiki/Sample_Databases
这里或其他地方引用的许多示例已经不复存在,或者需要跳过很多圈才能开始工作(比我愿意跳的还要多)。
我终于发现 DBeaver SQL 客户端有一个“生成模拟数据”工具,可以用示例数据填充表格。它可以处理各种数据类型,您可以为其提供用于文本的字符串,并且它可以处理外键。您可以配置大量行(例如 900,000 行)进行插入,并且它与数据库无关,因此它应该适用于 mySQL、SQL Server 等。
Many of the examples referenced here or in other places are defunct or require a good number of hoops to jump through to get working (more than I was willing to jump).
I finally discovered that the DBeaver SQL client has a "Generate Mock Data" tool that can fill in tables with sample data. It can handle various data types, you can give it strings to use for text, and it handles foreign keys. You can configure large numbers of rows (e.g. 900,000) for insert, and it is also DB agnostic so it should work for mySQL, SQL Server, etc.
我还基于 IMDb 制作了一个示例 PostgreSQL 数据库。我还尝试更新示例练习,以便初学者可以学习和练习。
链接:PostgreSQL 示例数据库。
I also made a sample PostgreSQL database based on IMDb. I also tried to update the sample exercises, so that a beginner can learn from it and practice on it.
Link: PostgreSQL Sample Database.
我发现:
http://www.postgression.com/
但是 pgfoundry 的 dbsamples 主页消失了......
我重新发现了 http://pgfoundry.org/frs/?group_id=1000150
I have found:
http://www.postgression.com/
But the dbsamples main page from pgfoundry disappeared...
I have rediscovered http://pgfoundry.org/frs/?group_id=1000150
您可以在 https://databasesample.com/databases 中找到示例数据库架构。
您还可以导出到 PostgreSQL,但遗憾的是没有数据示例。
You can find sample database schemas in https://databasesample.com/databases.
You can also export to PostgreSQL but unfortunately there is no data sample.