Since SQL Server 2005, schemas are acting as root namespaces for objects (tables, views, etc).
My question is: are there equivalents in other DBMS'? I'm particularly interested in:
- PostgreSQL, Oracle, SQL Server
- Schemas are Supported
- MySQL:
- No support for schemas;
create schema ...
is a synonym forcreate database ...
.
- No support for schemas;
- SQLite
- No support for schemas;
create schema ...
causes an error.
- No support for schemas;
Edit: I used OMG Ponies' answer to update above.