windows下bat启动oracle服务

由于工作涉及,笔记本装了oracle服务,为了避免每次开启自动启动服务造成资源浪费,因此需要

按需手动启动服务,为了便于执行,特整理bat进行启动


具体bat文件如下

net start OracleServiceORCL
net start OracleTNSListenerLISTENER1
sqlplus / as sysdba @start.sql

其中start.sql内容如下

startup;
quit;

同理,通过bat执行sql语句也可以此方式搞定.

完.

你可能感兴趣的:(oracle,bat,启动)