如何使用替代Oracle SQL丢弃属于SYS中的模式用户的表
我试图放下Shema Tom在Sys中拥有的餐桌表面。
我能够通过声明
drop table tom.tableA
不确定如何使用替换来实现这一目标。不使用以下语句。
define schema='tom'
drop table &schema.tableA
I tried to drop a table tableA owned by schema tom in sys.
I was able to achieve that with the statement
drop table tom.tableA
Not sure how to use substitution. Not working with the following statements.
define schema='tom'
drop table &schema.tableA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
From the
在您的情况下,您需要两个阶段,并且还要删除围绕该架构名称的字符串文字报价:
From the "Using Substitution Variables" documentation:
In your case, you need two periods and also to remove the string literal quotes around the schema name: