Timescale 是 PostgreSQL,它变得 强大
精选文章
用于工业物联网数据的 PostgreSQL
OpenSauced 如何使用 pgvector 和 Timescale 为 Git 历史记录构建 Copilot
AI 和向量
用于 AI 的 PostgreSQL。使用 pgvector、pgvectorscale 和 pgai 扩展无缝构建 RAG、搜索和 AI 代理。
pgai 文档pgvector 文档AI 和向量学习 PostgreSQL
Timescale 是 PostgreSQL,但更快。学习 PostgreSQL 基础知识,将您的数据库性能提升到新的高度
\password username
// 设置/重置 PostgreSQL 数据库用户密码 (psql)
例如:更改当前用户“postgres”的密码
\password postgres
Enter new password: xxxx
Enter it again: xxxx
select * from pg_user;
// 显示 PostgreSQL 数据库用户 (SQL)
\du
List of roles
Role name | Attributes | Member of
-----------+------------------------------------------------------------+-----------
testrole | | {}
postgres | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
// 显示 PostgreSQL 数据库角色 (psql)
$ psql -U testuser mytest
Password for user testuser: ......
psql (9.6.12)
Type "help" for help.
// 登录 PostgreSQL:psql -U 用户 数据库 (psql)