create or alter proc SP_CreateIndex as begin if exists(select * from sys.objects where name='execsql') begin drop table execsql; end create table execsql(id int identity(1,1),sqlstr varchar(1000),flag varchar(255));--创建索引insert into execsql(sqlstr,fl
近日在使用ssh命令ssh user@remote ~/myscript.sh登陆到远程机器remote上执行脚本时,遇到一个奇怪的问题: ~/myscript.sh: line n: app: command not found app是一个新安装的程序,安装路径明明已通过/etc/profile配置文件加到环境变量中,但这里为何会找不到?如果直接登陆机器remote并执行~/myscript.sh时,app程序可以找到并顺利执行.但为什么使用了ssh远程执行同样的脚本就出错了呢?两种方式