Initial commit

This commit is contained in:
2025-11-28 10:59:10 +01:00
commit 14b3e965d0
540 changed files with 784121 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# GET_USERS_LIST
## Colonne
| Colonna | Tipo |
|---------|------|
| USERS | VARCHAR2(100) |
## Definizione
```sql
CREATE OR REPLACE VIEW GET_USERS_LIST AS
select user_name as users
from APEX_WORKSPACE_APEX_USERS
where workspace_name = USER
```