在 AIX 中使用 Mailx 通过电子邮件发送 SQLPlus 查询结果的 Shell 脚本
我有我需要的命令。如果我在提示符下执行这些命令,一切都会按预期进行。 SQLPlus 运行查询,将结果导出到文件,然后 Mailx 将该文件通过电子邮件发送给我。
sqlplus username/pwd@instance
SPOOL /home/sadmin/sqlmail/spool.out
set linesize 2000
set wrap off
@/home/sadmin/sqlmail/query.sql
SPOOL OFF
exit
mail -s "Subject" [email protected] < /home/sadmin/sqlmail/spool.out
但是,我一生都无法弄清楚如何将它们放入 .sh 文件中以便我可以安排它。帮助!?预先感谢,我确信这是非常愚蠢的。
I have the commands that I need. If I execute these commands at the prompt, everything works as expected. SQLPlus runs the query, exports the result to a file and then Mailx emails that file to me.
sqlplus username/pwd@instance
SPOOL /home/sadmin/sqlmail/spool.out
set linesize 2000
set wrap off
@/home/sadmin/sqlmail/query.sql
SPOOL OFF
exit
mail -s "Subject" [email protected] < /home/sadmin/sqlmail/spool.out
But, I can not, for the life of me, figure out how to put these in an .sh file so that I can schedule it. Help!? And thanks in advance, I'm sure this is very silly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 shell 'Here' 文档是通常的解决方案,即
您需要设置 PATH env 以包含 sqlplus 可执行文件的路径。
然后您需要一个能够访问 cron 工具的用户 ID。你知道如何使用“vi”编辑器吗?当您调用 crontab 时,您将查看当前用户计划的作业,并且需要使用“vi”命令操作该文件。 (也许可以覆盖使用哪个编辑器,但不推荐)
您需要阅读 cron 的手册页,即
man cron
,然后您将调用上面的完整脚本。 cron 条目看起来像日期/时间的值可以是逗号分隔的列表 (0,15,30,45)、连字符分隔的范围 (4-6) 或 * 来指示所有有效值。
这会将 myCommand 的 1 次运行中的所有输出(包括 stderr)捕获到 tmpDir 中的文件中。
上述的最低版本是
,然后任何输出都会发送到用户的本地邮箱。
我希望这有帮助。
Using a shell 'Here' document is the usual solution, i.e.
You'll need to set your PATH env to include the path to you sqlplus executable.
Then you need a userID with access to the cron facility. Do you know how to use the 'vi' editor? When you call
crontab
, you will be looking at the current users scheduled jobs and you will need to manipulate the file with 'vi' commands. (It may be possible to override which editor to use, but not recommended)You need to read the man page for cron, i.e.
man cron
, and you will be call the above a a complete script. A cron entry will look likevalues for date/times can be comma separated lists (0,15,30,45), hyphen separated ranges (4-6) or * to indicate all valid values.
This captures any output including stderr, from the 1 time run of myCommand into the file in the tmpDir.
The bare minimum version of the above would be
and then any output is sent to the user's local mailbox.
I hope this helps.