如何使用替代Oracle SQL丢弃属于SYS中的模式用户的表

发布于 2025-01-22 11:45:55 字数 204 浏览 0 评论 0原文

我试图放下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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡墨 2025-01-29 11:45:55

From the

如果您想在替换变量名称后立即附加一个期限,请一起使用两个时期。例如,如果“ myfile”定义为“报告”,则命令:

  sql>线轴& myfile..log
 

与:

相同

  sql> Spool Reports.log
 

在您的情况下,您需要两个阶段,并且还要删除围绕该架构名称的字符串文字报价:

DEFINE schema=tom
DROP TABLE &schema..tableA

From the "Using Substitution Variables" documentation:

If you want to append a period immediately after a substitution variable name, then use two periods together. For example, if "myfile" is defined as "reports" then the command:

SQL> spool &myfile..log

is the same as:

SQL> spool reports.log

In your case, you need two periods and also to remove the string literal quotes around the schema name:

DEFINE schema=tom
DROP TABLE &schema..tableA
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文