vote up 3 vote down star
  1. Is there a way to do this with SQL Server tools?
  2. If not, is there a 3rd party tool that does this?

There doesn't seem to be a good way to edit longer text columns in the SQL Server Managers for SQL Server 2000 or 2005. While SQL Server Manager is really not for editing data in your db, what other tool does Microsoft provide that would normally allow you to do this? Every other field is pretty easy to edit, except long text fields. In Access, you could hit shift-f2 and it would pop up a nice dialog to edit your text in.

alt text

flag

Smartass comment: Export it to Access and hit shift-f2? ;) – Sung Meister Mar 20 at 4:09

6 Answers

vote up 2 vote down check

Generally, SQL Management Studio is an administrative tool for your database and not meant for data entry other than a quick edit here or there. Generally you would script the data or it would be entered by an application that uses the database for persistence.

(Although I have pointed Access to my SQL Server DB for a better quick and dirty UI.)

link|flag
vote up 1 vote down

This may fight your bill - SQL LOB Editor.

The other option you might want to look at is EMS SQL Studio for SQL Server.

Marc

link|flag
vote up 1 vote down

If you are specifically after a nice big multi-line edit dialogs, then yes you definitely need to look outside of the Microsoft SSMS line of tools. They don't support it.

link|flag
vote up 0 vote down

In the Management Console, isn't it possible to do an "Open Table" context-menu action and then edit the data from there?

link|flag
Long multiline text fields cannot be edited this way by a normal human. – Michael Pryor Nov 19 '08 at 22:12
vote up 0 vote down

I totally recommend DBVisualizer. The nice thing about it is, it supports a long list of databases and generic all JDBC Drivers (since it is written in Java). You can browse your various databases, change data and explore schema in nice graphs. It comes as a free and a personal edition for 149 $ and is totally worth it! Look at this matrix for a comparison.

You'll be able to edit text and ntext in SQL Server 2000, 2005 and surly for upcoming versions as well.

link|flag
vote up 0 vote down

If I had to make the edits only occasionally I would probably use SQL Query Analyzer and just script the UPDATE command.

If that was too inconvenient I would next look at linking to the database in Access, and to really quick and dirty ease of use I would just use an AutoForm to generate a UI for the table. If you don't have Access I believe OpenOffice Base can connect through ODBC and has similar form building functionality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.