SitePoint Sponsor |
|
User Tag List
Results 1 to 8 of 8
Thread: Administering Microsoft SQL
-
Feb 2, 2006, 09:47 #1
- Join Date
- Oct 2005
- Posts
- 12
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Administering Microsoft SQL
I would like to know what's the best tool for administering my local Microsoft SQL Server. Currently I'm using the Database Explorer which is integrated into Visual Web Developer 2005 Express and a seperate program, Microsoft SQL Server Management Studio Express. However I had some problems:
1) I could not figure out how to insert a new line into a dataset. (Pressing enter moves the cursor down to the next row, other combinations like Ctrl+Enter, Shift+Enter don't work either)
2) I want to be able to export/import data (for example CSV or XML files), but could not find such a function.
-
Feb 2, 2006, 10:12 #2
I use SQL Server's enterprise manager. It comes with the SQL server install if you choose to install the client tools (though the name of the app may have changed for SQL 2005, I'm not sure).
-
Feb 2, 2006, 11:30 #3
In SQL Server 2005 there is no Enterprise Manager any more and you cant use SQL 2000's version of enterprise manager to connect either.
I've been using Visual Studio 2005 and creating new database projects for the little work that I've done with SQL Server 2005 and that seems to work fine.
Have you tried clicking on the last line of the table ("dataset") or the line below that to add new values?
-
Feb 2, 2006, 12:18 #4
- Join Date
- Oct 2005
- Posts
- 12
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Originally Posted by niardica
-
Feb 3, 2006, 11:29 #5
The only way I know to do that would be to run in insert or update query on the record that you want to change the text in..
Something like:
Code:INSERT INTO mytab (myID, myText) VALUES (1, 'some text ' + char(13) + ' more text');
Code:UPDATE mytab SET myText = 'some text ' + char(13) + ' more text' WHERE myID = 1
-
Feb 3, 2006, 12:21 #6
- Join Date
- Oct 2005
- Posts
- 12
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Thanks for your advice, this approach works.
However, I'm pretty used to the phpMyAdmin interface where you can do the most common operations (browsing, inserting, deleting, importing, exporting etc.) without writing any SQL statements. Is there anything similar for MSSQL?
-
Feb 3, 2006, 12:58 #7
Check out myLittleAdmin for SQL Server http://www.mylittletools.net
-
Feb 3, 2006, 18:39 #8
- Join Date
- May 2003
- Location
- Washington, DC
- Posts
- 10,653
- Mentioned
- 4 Post(s)
- Tagged
- 0 Thread(s)
Use Sql Server Integration Services for import/export.
To add a new row into a table, just scroll to the bottom and look for the row labeled * with all the null values. Or for a quick and dirty front end to enter data into a table raw style, you can use MS Access.
Bookmarks