Link to home
Start Free TrialLog in
Avatar of Xetroximyn
XetroximynFlag for United States of America

asked on

Tool to easily view and tweak data in a DB table... kind of like editing a spreadsheet

I have some small tables in a DB that would be nice to be able to tweak more or less manually... without having to write an SQL statement manually every time I want to update a single thing.

Are there any tools that load a DB table for display and I could edit individual cells easily by say, right clicking the cell, saying "change value" and then being given a box to enter the new value, and it will write and execute the sql for me?  Or something similar?
Avatar of Jerry Miller
Jerry Miller
Flag of United States of America image

SQL Server Management Studio allows you to right-click on a table, choose design. From there you can edit the columns as long as the data integrity doesn't change. For example you change varchar(10) to varchar(5) and you have existing data longer than 5. It will warn you that you are truncating some data.

http://www.microsoft.com/en-us/download/details.aspx?id=7593
Avatar of Chris Stanyon
Avatar of Xetroximyn

ASKER

Will these work with DB2?
Probably not.

You posted this in the MSSQL and MySQL Zones, so the links provided are specifically for those 2
have you considered MS Access and using table links... that would allow quick and dirty ability to display and change the data values....

or di you mean you want to be able to change the table structures?
ASKER CERTIFIED SOLUTION
Avatar of Scott Pletcher
Scott Pletcher
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I actually prefer to write update statements when doing object updates. This way I can save it so I know exactly what was changed, when, and who did it. But then I am a bit of a control freak and want to be able to easily reverse and changes.