0
可否請告訴我,如果有更好的方式如何與sqlplus交互?廚師使用sqlplus的替代方法?
bash 'create user' do
user node[:oracle][:user]
code <<-EOH
#{node[:sqlplus][:path]}/sqlplus system/#{node[:sqlplus][:SystemPassword]} <<-SQLEOH
create user #{node[:sqlplus][:user]} identified by #{node[:sqlplus][:user]}
default tablespace #{node[:sqlplus][:UserTablespace]};
exit;
SQLEOH
EOH
end