Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jorgermduarte/isec-aabd


https://github.com/jorgermduarte/isec-aabd

Last synced: about 22 hours ago
JSON representation

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 up

docker 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)