Oracle vocabulary, what is the mysql/SQL Server equivalent of a database
Posted
by jeph perro
on Stack Overflow
See other posts from Stack Overflow
or by jeph perro
Published on 2010-04-22T16:22:04Z
Indexed on
2010/04/22
16:43 UTC
Read the original article
Hit count: 441
Hi,
I need some help with vocabulary, I don't use Oracle that often but I am familiar with MySQL and SQL Server.
I have an application I need to upgrade and migrate, and part of the procedure to do that involves exporting to an XML file, allowing the installer to create new database tables, then import to the new database tables from the XML file.
In Oracle, my database connection specifies a username, password, and an SID.
Let's call the SID, "COMPANY-APPS". This SID contains tables belonging to several applications, each of which connects with a different user ( "WIKIUSER", "BUGUSER", "TIMETRACKERUSER" ).
My question is: Can I re-use the same user to create the new tables ( with the same names ).
In MySQL or SQL Server, I would create a new database and grant my user privileges to create tables in it.
OR, do I need to create a new database user for my upgraded tables?
© Stack Overflow or respective owner