How can I create a oracle database programmatically in ADO.NET and a schema for it with userId + password so I can just go to my non-favorite tool the sql oracle developer tool where I just create a connection entering:
- connectionstring name
- UserId(schema)
- password
I’ve done it with SQL before but never tried with ADO.NET …
Use the ADMIN/DBA account on the connection string.
Set oracleDataPath with the path where your Oracle keeps its data files.
Let me know if it works 🙂