DB Solo 3.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News DB Solo 3.5 (Default branch)
# 1  
Old 09-09-2008
DB Solo 3.5 (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:
Stored procedure editors for MS SQL Server and Sybase were added as well as a stored procedure editor and debugger for Oracle. Numerous enhancements to the schema and data compare tools were also added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Line works in solo but not in program?

Now I am just getting frustrated and confused... if anyone has some advice on how this anomoly is occurring I would greatly appreciate it. cat helpme.txt | awk 'NR<5{printf("%-20s %-20d %-20d %-20.1f\n","hello",$1,$2,$3)}' | sort -rk4 This line works fine in solo - reads the three fields from... (4 Replies)
Discussion started by: nortypig
4 Replies
Login or Register to Ask a Question
REASSIGN 
OWNED(7) SQL Commands REASSIGN OWNED(7) NAME
REASSIGN OWNED - change the ownership of database objects owned by a database role SYNOPSIS
REASSIGN OWNED BY old_role [, ...] TO new_role DESCRIPTION
REASSIGN OWNED instructs the system to change the ownership of the database objects owned by one of the old_roles, to new_role. PARAMETERS
old_role The name of a role. The ownership of all the objects in the current database owned by this role will be reassigned to new_role. new_role The name of the role that will be made the new owner of the affected objects. NOTES
REASSIGN OWNED is often used to prepare for the removal of one or more roles. Because REASSIGN OWNED only affects the objects in the cur- rent database, it is usually necessary to execute this command in each database that contains objects owned by a role that is to be removed. The DROP OWNED [drop_owned(7)] command is an alternative that drops all the database objects owned by one or more roles. The REASSIGN OWNED command does not affect the privileges granted to the old_roles in objects that are not owned by them. Use DROP OWNED to revoke those privileges. COMPATIBILITY
The REASSIGN OWNED statement is a PostgreSQL extension. SEE ALSO
DROP OWNED [drop_owned(7)], DROP ROLE [drop_role(7)] SQL - Language Statements 2010-05-14 REASSIGN OWNED(7)