Viewing 15 posts - 151 through 165 (of 447 total)
Christian Buettner (8/7/2009)
Try...
August 7, 2009 at 8:38 am
WOW....WOW.....
Discussion board is much more interesting and knowledgeable than the article. Rarely we come across a thread where discussion lasts so long. Truly a good thread to start...
August 7, 2009 at 8:30 am
You created RemoteUser on both the servers. But on ServerA is this user mapped to the database you are trying to look data into.. Check if this RemoteUser...
August 6, 2009 at 9:48 am
Kaushik Kumar (8/6/2009)
Changing compatibility is not an option in most cases especially...
August 6, 2009 at 9:42 am
Thanks for the Article Steve. Very well explained. Was looking for this kind of article for some time where all information could be found in one place. ...
August 6, 2009 at 9:36 am
Schadenfreude-Mei (8/6/2009)
August 6, 2009 at 9:26 am
Schadenfreude-Mei (8/6/2009)
CPU usage script can be found by reading ssc thread: http://www.sqlservercentral.com/Forums/Topic611107-146-1.aspxHave also attached some scripts that may help your cause. 😉
Enjoy.
Good scripts Adam. Thanks.
August 6, 2009 at 9:19 am
I had the same kind of request from users couple of months back to change Collation SQL_Latin1_General_CP1_CI_AS to Latin_general_BIN on a particular database.
Directly changing collation with Alter database command won't...
August 6, 2009 at 9:08 am
Try this. Works good on both 2000 and 2005.
set nocount on
declare @name sysname
declare @sql nvarchar(600)
/* Use temporary table to sum up database size w/o using group by */
create...
August 5, 2009 at 7:49 am
you can create it by using sp_attach_db command. Read BOL for more info.
Example here from BOL:
EXEC sp_attach_db @dbname = N'AdventureWorks',
@filename1 = N'c:\Program Files\Microsoft SQL...
August 4, 2009 at 2:54 pm
Use this query to fill all orphan users on any database.
BEGIN
DECLARE @username varchar(25)
DECLARE fixusers CURSOR
FOR
SELECT UserName = name FROM sysusers
WHERE issqluser = 1 and (sid is not null and sid...
August 4, 2009 at 2:51 pm
Agreed with Matt. Rule of thumb: Never use like operator on a very large table. It kills.
August 4, 2009 at 2:47 pm
Artur Sokhikyan (8/4/2009)
- Name?- Abu Dalah Sarafi.
- Sex?
- 3 times a week!
- No, no. Male or Female?
- Male, female, sometimes camel...
ROFL .... Your signature made my day.
August 4, 2009 at 8:49 am
2 Tim 3:16 (7/31/2009)
Go to Security - Login and look at the porperties for the login and see if the user...
July 31, 2009 at 9:02 am
Viewing 15 posts - 151 through 165 (of 447 total)