我在应用程序中有一个任务,它使用sql loader将数据加载到表中。但它没有发生并给予
无法运行程序“sqlldr”:错误= 13,权限被拒绝
。我尝试通过命令提示符手动加载文件,它按预期工作。
任何帮助都将受到高度赞赏。 感谢
答案 0 :(得分:0)
您必须为目录提供读取权限。
function searchCustomers()
{
..........................
html += '<div class="panel-heading">'+this.company+' '+this.firstname+' '+this.lastname;
html += '<span class="pull-right">#'+this.id_customer+'</span></div>';
html += '<span>'+this.email+'</span><br/>';
html += '<span>'+this.addresses+'</span><br/>';
此命令将授予完全权限
以root身份运行gui应用程序。 首先找到您的应用程序路径。
chmod -R 777 directory_name