deployment - deploy pl sql .sql scripts with sqlplus in linux -
deployment - deploy pl sql .sql scripts with sqlplus in linux -
as of running(automated) sql scripts in windows cmd through sqlplus. example:
sqlplus username@sid/password @d:\path\emp.sql / @d:\path\emp_ins.sql / @d:\path\emp_func.sql / @d:\path\emp_proc.sql / @d:\path\emp_index.sql / as working fine windows, after connectivity established linux sqlplus. how impliment same functionality when connect through linux? tried giving path @path/emp.sql pls help. if need info pls comment.
this might not provide need if saving of scripts in same directory have found best practice navigate there before launching sql plus..
e.g. - launch terminal - cd /usr//mydirectory - launch sqlplus (sqlplus username/password@sid) - @myscript.sql
always works me.
if need help in terms of using terminal there lots online, found on cd in 1 search.. http://www.linfo.org/cd.html
hope helps!
sql deployment plsql sqlplus
Comments
Post a Comment