在 Z/OS 上的 db2 的 JDBC URL 中设置默认表空间?
是否可以通过向 JDBC URL 传递参数来强制所有创建表语句使用特定的database.tablespace?例如,
CREATE TABLE Message (id INTEGER NOT NULL, created TIMESTAMP, message VARCHAR(255),PRIMARY KEY (id)) in DATABASE.TABLESPACE
我不想按如下方式手动指定它,而是想在连接 URL 中指定“database.tablespace”并执行
CREATE TABLE Message (id INTEGER NOT NULL, created TIMESTAMP, message VARCHAR(255), PRIMARY KEY (id))
Is it possible to force all create table statements to use a specific database.tablespace by passing a parameter to the JDBC URL? For example instead of manually specifying it as follows
CREATE TABLE Message (id INTEGER NOT NULL, created TIMESTAMP, message VARCHAR(255),PRIMARY KEY (id)) in DATABASE.TABLESPACE
I'd like to specify "database.tablespace" in the connection URL and execute
CREATE TABLE Message (id INTEGER NOT NULL, created TIMESTAMP, message VARCHAR(255), PRIMARY KEY (id))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DB2 完全缺乏您需要的概念。它将用户有权访问的第一个表空间作为“默认”处理:
因此,实现您所需要的方法是从除一个表空间之外的所有表空间中删除访问权限,即。
当然,这需要你很好地计划你的行动,但这种方法是有效的。
DB2 lacks entirely the concept you require. It handles the first tablespace the user has access rights to as "the default":
Thus the way to achieve what you require is to remove access privileges from all but one tablespace, ie.
Naturally this requires that you plan your actions well, but the approach works.