如何在 SQL PLUS 中纠正这个问题?
我在 SQL PLUS 中插入脚本时遇到问题。在我的插入脚本中,数据包含“&”就像这个“Rat&CAT”。当我使用 SQL PLUS Batch 文件运行我的脚本文件时。它总是提示此消息“输入 CAT 的值:”。有人能告诉我如何解决这个问题吗?
I have a problem with insertion scripts in SQL PLUS.In my insert scripts data contains '&' like this 'Rat&CAT'.When am run my script file using SQL PLUS Batch file .It is always promting this message "Enter the Value of CAT:".Could any one tell me how to solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在脚本开头添加此命令:
它将关闭变量替换。
Add this command at the start of your script:
It will turn off variable substitution.