About 28,500 results
Open links in new tab
  1. Run Oracle SQL script and exit from sqlplus.exe via command …

    Apr 17, 2017 · I would like to run an Oracle script through SQL Plus via a Windows command prompt. The script does not contain an "exit" command, but I would still like SQL Plus to exit, …

  2. sqlplus CONNECT command with an '@' symbol in the password

    I'm trying to connect to an Oracle XE database using sqlplus.exe with the following command: CONNECT SYSTEM/password@ Yes that's right, the '@' symbol is the last letter of the …

  3. SQL Developer cannot connect but SQL*plus can - Server Fault

    Jan 15, 2018 · 0 First in SQL Plus, reset the SYS password by: ALTER USER SYS IDENTIFIED BY oracle ACCOUNT UNLOCK; In the SQL Developer In the connection box, enter user name …

  4. PL/SQL Plus script just gives me numbers - Server Fault

    When you create a PL/SQL block via SQL Plus, the '/' tells SQL Plus to run everything you've put into the buffer since the last command executed. The incrementing numbers you're getting is …

  5. Escape all characters that shell or sqlplus need escaped in any ...

    Feb 13, 2019 · This happens even before any command is executed. In fact we don't even have to call anything, just entering the quoted string to test is enough to verify (by comparing input …

  6. Executing Oracle SQLPlus in a Powershell Invoke-Command …

    We have a basic powershell script that attempts to execute SQLPlus.exe on a remote machine. The remote does not have Oracle Instant client installed, but we have bundled all the necesary …

  7. Oracle BLOB export via SqlPlus - Server Fault

    Unfortunately, BLOBs cannot be copied using the SQL*Plus COPY command (as they haven't done any work on that since Oracle8). Can you create a database link in either of the …

  8. Powershell execute Queries using SQLPLUS - Server Fault

    Feb 17, 2015 · I have imported Posh-SSH module and am able to connect to my RHEL server and execute commands using Invoke-SSHCommand however, i need help in executing …

  9. How can I tell if an Oracle database is mounted and activated?

    IANADBA, but I'm writing a script that will take action as long as the oracle standby database hasn't been activated. What I'm looking for is two queries (or sets of queries, if necessary). 1 - I...

  10. SQL, pl/sql, sqlplus: how to return a variable to DOS batch file?

    I have a DOS batch file which invokes sqlplus, which executes some basic SQL contained in another .sql file, and I want the last part of it to return a value back to the dos batch file.