We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a way that i can connect to sqlplus as a sysdba?
The text was updated successfully, but these errors were encountered:
You can run the sqlplus command explicitly which allows you to specify the connect string however you like:
docker run --rm -i sflyr/sqlplus /bin/bash -c '/instantclient_11_2/sqlplus "user/pass@//server:1521/xe as sysdba"'
Just be careful of the quotes so the whole connection string becomes a single argument.
Sorry, something went wrong.
docker run -e URL="$user/$password@//$server:1521/$sid as sysdba" -ti sflyr/sqlplus
The only time that doesn't work is if you're using environment variables to find the Oracle server. Mostly if you're using the --link option.
No branches or pull requests
There is a way that i can connect to sqlplus as a sysdba?
The text was updated successfully, but these errors were encountered: