Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgermduarte/isec-aabd
https://github.com/jorgermduarte/isec-aabd
Last synced: about 22 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/jorgermduarte/isec-aabd
- Owner: jorgermduarte
- License: mit
- Created: 2023-03-03T18:32:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-08T12:09:12.000Z (over 1 year ago)
- Last Synced: 2024-05-28T21:19:51.431Z (6 months ago)
- Language: Shell
- Size: 1.49 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ISEC - AABD
A simple xe oracle database instance to study PL/SQL.
## how to start the oracledb
```
docker-compose updocker exec ./setPassword.sh
```## connecting to the oracledb
```
SID: XE
username: system
password:
host: localhost
port: 1521
```## database scripts
```
every script inside the sql folder are pl/sql scripts for oracle db.
feel free to check them out since they are divided by topics.
```## Oracle Manager Database Express
> you can access via: localhost:5500/em/
```
if you acess via website use the following container name:
CDB$ROOT
``````
GRANT DBA TO ANONYMOUS;
ALTER USER anonymous ACCOUNT UNLOCK;
ALTER USER ANONYMOUS IDENTIFIED BY 123456;
```## Attachments
![image](https://user-images.githubusercontent.com/45755132/225426113-9c270bac-ac94-464d-9d04-c19c71a01289.png)
![image](https://user-images.githubusercontent.com/45755132/225426275-54cc94de-8700-4b1c-b556-a182adb2b9b4.png)