|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Tuesday, June 19, 2012 8:38 AM
Points: 55,
Visits: 122
|
|
"improve they're typing skills" Not to nitpick, but that's a pretty funny clause to have a typo in.
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Yesterday @ 11:03 AM
Points: 1,853,
Visits: 485
|
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Tuesday, December 04, 2012 11:21 AM
Points: 31,
Visits: 78
|
|
> Never mind the features, why is SQL Management Studio so pathetically slow! > Even if you put the -nosplash switch on the SQLWB.EXE it takes an age to load.
Is it just loading you find is slow? I've found actual interaction with database to be faster, in particular things like right clicking on a server to select connect from the context menu - in enterprise manager you would be waiting quite a few seconds beofore the context menu appeared (presumably it was interrogating the server??!?), but in SSMS the menu is there straight away. Other operations seem to be as fast or faster.
> How the hell do you show the contents of a system stored procedure?
Am I missing something? Don't you just locate it under the system stored procedures subfolder of stored procedures, and right click on it and select Modify? Bit of a misnomer if all you want to do is look at it, but it still has the same effect?
Does anyone know how to add a column to a table in a merge publication? You used to bring up the properties of the publication, go to filter columns, find the table and click the add column button, but filter columns seems to have disappeared. Can obviously do it via sp_repladdcolumn, but it would be nice to have the option to do it via the GUI as well.
|
|
|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Tuesday, September 11, 2007 5:42 PM
Points: 46,
Visits: 1
|
|
Just to nitpick a bit (it was a nice article), but last I heard the systables are being depricated, as well, in favor of the system views. As such you would want to do away with the calls to sysobjects:
SELECT name FROM sysobjects should be SELECT name FROM sys.objects
and
Select crdate as DateCreated From dbo.sysobjects should be Select create_date as DateCreated From sys.objects
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Sunday, March 01, 2009 1:56 PM
Points: 125,
Visits: 4
|
|
Alex, I certainly agree that SQL 2005 is a new product, and a shift in paradigm. I even agree, at the risk of being strangled by other dbas, with doing away with some of the old commands and features that arn't terribly useful. I guess what I was trying to get at is: why take away something that's useful, and not replace it with anything? Like bookmark, for example... But that's another story
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Sunday, March 01, 2009 1:56 PM
Points: 125,
Visits: 4
|
|
John, I was talking about connecting to sql 2000, in which case sys tables are still there. U r right, in 2005 you'd want to use DMVs. Just to nitpick a bit (it was a nice article), but last I heard the systables are being depricated, as well, in favor of the system views. As such you would want to do away with the calls to sysobjects:
SELECT name FROM sysobjects should be SELECT name FROM sys.objects
and
Select crdate as DateCreated From dbo.sysobjects should be Select create_date as DateCreated From sys.objects
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Sunday, March 01, 2009 1:56 PM
Points: 125,
Visits: 4
|
|
| I'm the gui one, will benifit from it the most I guess
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, October 09, 2008 9:25 AM
Points: 23,
Visits: 62
|
|
Nice article. External tools also don't work the same in sql2k5. Managing 100+ sql server environments, using the [SRV] parameter in enterprise manager's external tools is handy for accessing explorer, server manager & event viewers on current sql server environments. Even though sql2005 books online says it works the same, it doesn't work in management studio. Polling is controllable in sql 2k enterprise manager, but no control in sql2k5 management studio. With several DBAs having management studio open with 100+ servers registered = a lot of clutter in security event logs, unneccessary network traffic & overhead on workstations.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, August 28, 2012 5:13 AM
Points: 2,
Visits: 75
|
|
Has anybody found an easy way to migrate registered servers between 2K and 2005 ? - i have a couple of hundred servers plus groups and i am not looking forward to setting them up by hand...
|
|
|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Tuesday, January 25, 2011 9:16 AM
Points: 316,
Visits: 4
|
|
This is easy.
Open the Registered Servers window in SSMS Right-click on "Database Engine" and choose "Previously Registered Servers" It will ask you some questions and pull in any SEM registered servers you have on the same computer.
-- J.T.
"I may not always know what I'm talking about, and you may not either."
|
|
|
|