![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I'm using SSMS Express to feel my way around SQL Server 2005 Express as a beginning admin. I'm using Microsoft Press's "SQL Server 2005 Administrator's Pocket Consultant" as a reference, and it doesn't match up with my SSMS Express interface. For example, right-clicking on a table object in Object View should display a "Modify" choice according to the book, but in this installation it does not. If you anyone can tell me how to get the more powerful SSMS interface, I'd appreciate it. The version I have is: Microsoft SQL Server Management Studio Express 9.00.3042.00 Thanks |
#3
| |||
| |||
|
|
I don't know much about the express version of SSMS but in any case you probably want to be on the latest service pack at the very least. But I would suggest looking into getting the developer edition of SQL Server. It is very inexpensive and is the equivalent to the enterprise Edition of SQL Server so it will have all the features available. -- Andrew J. Kelly SQL MVP Solid Quality Mentors "BruceD" <BruceD (AT) discussions (DOT) microsoft.com> wrote in message news:F8122B17-7492-4259-AB61-8C1B2F0C8AF5 (AT) microsoft (DOT) com... I'm using SSMS Express to feel my way around SQL Server 2005 Express as a beginning admin. I'm using Microsoft Press's "SQL Server 2005 Administrator's Pocket Consultant" as a reference, and it doesn't match up with my SSMS Express interface. For example, right-clicking on a table object in Object View should display a "Modify" choice according to the book, but in this installation it does not. If you anyone can tell me how to get the more powerful SSMS interface, I'd appreciate it. The version I have is: Microsoft SQL Server Management Studio Express 9.00.3042.00 Thanks . |
#4
| |||
| |||
|
|
I'm using SSMS Express to feel my way around SQL Server 2005 Express as a beginning admin. I'm using Microsoft Press's "SQL Server 2005 Administrator's Pocket Consultant" as a reference, and it doesn't match up with my SSMS Express interface. For example, right-clicking on a table object in Object View should display a "Modify" choice according to the book, but in this installation it does not. |
#5
| |||
| |||
|
|
Good idea, but the Developer Edition of SQL Server 2005 seems to be no longer available. "Andrew J. Kelly" wrote: I don't know much about the express version of SSMS but in any case you probably want to be on the latest service pack at the very least. But I would suggest looking into getting the developer edition of SQL Server. It is very inexpensive and is the equivalent to the enterprise Edition of SQL Server so it will have all the features available. -- Andrew J. Kelly SQL MVP Solid Quality Mentors "BruceD" <BruceD (AT) discussions (DOT) microsoft.com> wrote in message news:F8122B17-7492-4259-AB61-8C1B2F0C8AF5 (AT) microsoft (DOT) com... I'm using SSMS Express to feel my way around SQL Server 2005 Express as a beginning admin. I'm using Microsoft Press's "SQL Server 2005 Administrator's Pocket Consultant" as a reference, and it doesn't match up with my SSMS Express interface. For example, right-clicking on a table object in Object View should display a "Modify" choice according to the book, but in this installation it does not. If you anyone can tell me how to get the more powerful SSMS interface, I'd appreciate it. The version I have is: Microsoft SQL Server Management Studio Express 9.00.3042.00 Thanks . |
#6
| |||
| |||
|
|
BruceD (BruceD (AT) discussions (DOT) microsoft.com) writes: I'm using SSMS Express to feel my way around SQL Server 2005 Express as a beginning admin. I'm using Microsoft Press's "SQL Server 2005 Administrator's Pocket Consultant" as a reference, and it doesn't match up with my SSMS Express interface. For example, right-clicking on a table object in Object View should display a "Modify" choice according to the book, but in this installation it does not. Well, that would be a good thing. That particular function is completely broken. And particulary if you aim to be an admin. It could be possibly be considered to be OK for a developer who is just playing around, but to use that function in a production environment would be no less than criminal. Unfortunately, though, the functionality is available to you. The book was apparently written for the RTM version of SQL 2005, where indeed it said "Modify" in the context menu. But you have SP2, and in SP2 it says "Design" instead. But again, beweare that the function is broken and buggy. What is really devious is that you may not notice if you just fiddle around and press Save. If you don't understand what it takes to change a table schema with regards to preserving data integrity, you may not even realise how dangerous it is. -- Erland Sommarskog, SQL Server MVP, esquel (AT) sommarskog (DOT) se Links for SQL Server Books Online: SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx SQL 2000: http://www.microsoft.com/sql/prodinf...ons/books.mspx . |
#7
| |||
| |||
|
|
A quick search and I found multiple copies available from Amazon, Google, etc... Since you are learning how to administer the system, SQL Server 2008 Developer Edition would work just as well. But, it also would not match up appropriately with the book you are following as this version has changed some features and includes additional features not covered in the book. "BruceD" <BruceD (AT) discussions (DOT) microsoft.com> wrote in message news:CB19CC3A-A134-4997-B28F-5FEBF4BFE21D (AT) microsoft (DOT) com... Good idea, but the Developer Edition of SQL Server 2005 seems to be no longer available. "Andrew J. Kelly" wrote: I don't know much about the express version of SSMS but in any case you probably want to be on the latest service pack at the very least. But I would suggest looking into getting the developer edition of SQL Server. It is very inexpensive and is the equivalent to the enterprise Edition of SQL Server so it will have all the features available. -- Andrew J. Kelly SQL MVP Solid Quality Mentors "BruceD" <BruceD (AT) discussions (DOT) microsoft.com> wrote in message news:F8122B17-7492-4259-AB61-8C1B2F0C8AF5 (AT) microsoft (DOT) com... I'm using SSMS Express to feel my way around SQL Server 2005 Express as a beginning admin. I'm using Microsoft Press's "SQL Server 2005 Administrator's Pocket Consultant" as a reference, and it doesn't match up with my SSMS Express interface. For example, right-clicking on a table object in Object View should display a "Modify" choice according to the book, but in this installation it does not. If you anyone can tell me how to get the more powerful SSMS interface, I'd appreciate it. The version I have is: Microsoft SQL Server Management Studio Express 9.00.3042.00 Thanks . |
#8
| |||
| |||
|
|
Thank you for the feedback. Are you saying that SSMS should not be used to modify schemas? Should schema changes be made in code? |
|
I'm a developer who will be babysitting a small but very important server while its DBA is on vacation. I believe I will be expected to make structural changes. The last thing I want to do is break something! |
|
As an FYI, the version of SSMS I have displays "Properties" when a selected table object is right-clicked. |
#9
| |||
| |||
|
|
BruceD (BruceD (AT) discussions (DOT) microsoft.com) writes: Thank you for the feedback. Are you saying that SSMS should not be used to modify schemas? Should schema changes be made in code? Yes. And definitely in a production system. There are several reasons for this. One is tracability. Store the scripts somewhere, so that you can keep track of what you made. Preferrably CREATE TABLE scripts should be under version control. Schema changes also may also require careful planning, particularly if there is a 24/7 requirement. I'm a developer who will be babysitting a small but very important server while its DBA is on vacation. I believe I will be expected to make structural changes. The last thing I want to do is break something! I don't know how long vacation your DBA takes, but if it's a regular vacation, there is all reason to defer changes until he comes back. Schema changes is nothing you should do at whim, but which should be deployed at defined maintenance windows. As an FYI, the version of SSMS I have displays "Properties" when a selected table object is right-clicked. Yes, that is on the bottom of the context menu. -- Erland Sommarskog, SQL Server MVP, esquel (AT) sommarskog (DOT) se Links for SQL Server Books Online: SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx SQL 2000: http://www.microsoft.com/sql/prodinf...ons/books.mspx . |
#10
| |||
| |||
|
|
Thank you again for the feedback. It may or may not be possible to defer changes, but I'll keep what you have said in mind. Is there a book, not necessarily from MS Press, that you would recommend? |
![]() |
| Thread Tools | |
| Display Modes | |
| |