Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DBI 包中是否有获取有关数据库模式的信息的功能?
我正在使用 DBI 包和 odbc 驱动程序连接到 SQL Server。这些dbListTables函数允许使用参数显示特定模式中的表schema,但我找不到查询存在哪些模式的方法。
dbListTables
schema
您可以使用下面的 SQL 查询。
all_schemas <- DBI::dbGetQuery(conn, "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA")