DB Solo 3.5 Beta 2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News DB Solo 3.5 Beta 2 (Default branch)
# 1  
Old 08-22-2008
DB Solo 3.5 Beta 2 (Default branch)

Image DB Solo is a powerful database development and management tool for developers and DBAs. It has an intuitive user interface that allows you to explore and manage your database objects as well as execute ad-hoc queries. It supports Oracle, MySQL, Sybase, DB2, Solid, PostgreSQL, and MS SQL Server. In addition to viewing and managing objects such as schemas, tables, indexes, views, tablespaces, users, roles, sessions, and stored procedures, you can view, edit, print, and export data from tables or the results of queries. You can also graphically view foreign key relationships. License: Shareware Changes:
This release adds support for disk-based table data comparison, allowing one to compare tables with millions of rows.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DROP 
OWNED(7) PostgreSQL 9.2.7 Documentation DROP OWNED(7) NAME
DROP_OWNED - remove database objects owned by a database role SYNOPSIS
DROP OWNED BY name [, ...] [ CASCADE | RESTRICT ] DESCRIPTION
DROP OWNED drops all the objects within the current database that are owned by one of the specified roles. Any privileges granted to the given roles on objects in the current database and on shared objects (databases, tablespaces) will also be revoked. PARAMETERS
name The name of a role whose objects will be dropped, and whose privileges will be revoked. CASCADE Automatically drop objects that depend on the affected objects. RESTRICT Refuse to drop the objects owned by a role if any other database objects depend on one of the affected objects. This is the default. NOTES
DROP OWNED is often used to prepare for the removal of one or more roles. Because DROP OWNED only affects the objects in the current database, it is usually necessary to execute this command in each database that contains objects owned by a role that is to be removed. Using the CASCADE option might make the command recurse to objects owned by other users. The REASSIGN OWNED (REASSIGN_OWNED(7)) command is an alternative that reassigns the ownership of all the database objects owned by one or more roles. Databases and tablespaces owned by the role(s) will not be removed. COMPATIBILITY
The DROP OWNED statement is a PostgreSQL extension. SEE ALSO
REASSIGN OWNED (REASSIGN_OWNED(7)), DROP ROLE (DROP_ROLE(7)) PostgreSQL 9.2.7 2014-02-17 DROP OWNED(7)