How to determine who is and change the owner of database?


Use the following query:

SELECT DISTINCT RDB$OWNER_NAME AS DATABASE_OWNER
FROM RDB$RELATIONS
WHERE (RDB$SYSTEM_FLAG = 1);

Please note that in order to change the owner, it is not enough (or even advisable) to change this column only, as many other metadata fields are involved (there are multiple tables which have this field and SQL privileges need to be updated as well). There is a handy tool by Thomas Steinmaurer that can do this automatically, but you'll have to e-mail him directly to get it.

If you're interested in details, you can also check Thomas' paper from one of the Firebird Conferences:

http://www.ibphoenix.com/downloads/FirebirdConf2006/TECH-R01103-S/TECH-R01103-S.zip

There another, freely available tool called DBUSubst by Vítězslav Švejdar. You can get more details and download it from his website:

http://www1.cuni.cz/~svejdar/?s=oact

We also mirror the package here:

http://firebirdfaq.org/files/DBUSubst.zip

As always, please be careful when it. We haven't found any problems, but make sure you have a backup of your database before running the tool.


Do you find this FAQ incorrect or incomplete? Please e-mail us what needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird databases), before it enters the main FAQ database. If you desire so, the changes will be credited to your name. To learn more, visit our add content page.



All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.


Links   Firebird   News   FlameRobin   Powered by FB: Home Inventory   Euchre  
Add content   About  

Categories
 Newbies
 SQL
 Installation and setup
 Backup and restore
 Performance
 Security
 Connectivity and API
 HOWTOs
 Errors and error codes
 Miscellaneous