Popular Posts
javax.net.ssl.SSLHandshakeException: Connection closed by peer in Android 5.0 Lollipop Recently, there is a error occurs when access website via ssl connection like below although it worked fine several days ago. // Enable SSL... Enable SSL connection for Jsoup import org.jsoup.Connection; import org.jsoup.Jsoup; import javax.net.ssl.*; import java.io.IOException; import java.security.KeyManagement... Build an OpenVPN server on android device Preparation An android device, in this case, Sony xperia Z is used Root permission required Linux Deploy for deploy i...
Stats
Start/stop oracle
  1. REM This batch file is used to start/stop the oracle instance
  2. REM Simply invoke oracle.bat start/stop
  3. cls
  4. @ECHO off
  5. REM ******************************************************************
  6. REM ** Batch file used to stop/start oracle services
  7. REM ******************************************************************
  8.  
  9. SET _db_=10g_home1
  10. SET _sid_=CCIMES
  11.  
  12.  
  13. if(%1)==(start) GOTO START
  14. if(%1)==(stop) GOTO STOP
  15. echo Invalid use. Usage is oracle.bat stop/start
  16. GOTO END
  17.  
  18.  
  19. :START
  20. REM ** START the oracle services
  21. echo Starting Oracle Services
  22. REM change the instance/listener names to match what is in your services list
  23. NET START OracleCSService
  24. NET START OracleOraDB%_db_%iSQL*Plus
  25. NET START OracleOraDb%_db_%TNSListener
  26. NET START OracleService%_sid_%
  27. NET START OracleDBConsole%_sid_%
  28. REM NET START OracleJobScheduler%_sid_%
  29. REM NET START "Oracle INNOVATEST VSS Writer Service"
  30. echo Oracle Services Started
  31. GOTO END
  32.  
  33.  
  34. :STOP
  35. echo Stopping Oracle Services
  36. REM change the instance/listener names to match what is in your services list
  37. REM NET STOP "Oracle INNOVATEST VSS Writer Service"
  38. REM NET STOP OracleJobScheduler%_sid_%
  39. NET STOP OracleDBConsole%_sid_%
  40. NET STOP OracleOraDb%_db_%TNSListener
  41. NET STOP OracleService%_sid_%
  42. NET STOP OracleOraDB%_db_%iSQL*Plus
  43. NET STOP OracleCSService
  44. echo Oracle Services Stopped
  45. GOTO END
  46.  
  47.  
  48. :END