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.
寻找如何使用 Datajoint 的 Matlab 3.4 实现从 SQL 数据库服务器中删除整个 Datajoint 模式(相当于 Python 中的 schema.drop(True))
以及如何列出服务器上存在的所有模式(Python 中的 dj.list_schemas())。
有一个文档页面用于删除表及其依赖项,但不是整个模式。
MATLAB 还没有列出模式的完整实现,但有一个通过连接查询的解决方法:
connection = dj.conn; connection.query('SHOW DATABASES')
然后,您可以删除列出的任何项目: dropQuick(schema)
dropQuick(schema)