Viewing 15 posts - 751 through 765 (of 972 total)
ssismaddy (3/30/2010)
March 31, 2010 at 8:20 am
david.ostrander (3/30/2010)
IF EXISTS (SELECT [object_id],[index_id],[avg_fragmentation_in_percent] FROM sys.dm_db_index_physical_stats(DB_ID(N'Backdrop'), OBJECT_ID(N'PJTRAN.PJTRAN0'), NULL, NULL , 'DETAILED')
WHERE [avg_fragmentation_in_percent] < 30)
BEGIN
ALTER INDEX ALL ON PJTRAN REORGANIZE
END
ELSE
ALTER INDEX ALL ON PJTRAN REBUILD
Well first are you trying this...
March 30, 2010 at 11:36 am
I usaully install the .NET framework prior to trying to install SQL Server. I will tend to install it and then Windows Update to patch it to current.
March 30, 2010 at 9:59 am
This is the MSDN (aka Books Online) that show the DMVs used in SQL Server 2005:
http://msdn.microsoft.com/en-us/library/ms188754.aspx
Then sys.dm_tran_locks will shows you the locks currently active (http://msdn.microsoft.com/en-us/library/ms190345.aspx)
March 29, 2010 at 7:58 am
mkuechler (3/29/2010)
Anyone know what the "SQL Server Process ID 1328" is?
sp_who
--OR
sp_who2
Executing one of these commands in query should give you pretty much what is shown in Activity Monitor
March 29, 2010 at 7:46 am
mkuechler (3/26/2010)
I have logged into the box as a domain admin and into the SQL instance with the sa account. Still same issue.MK
If you have Windows Authentication allowed...can you...
March 29, 2010 at 5:57 am
Attached the script, formated for those interested 😀
March 26, 2010 at 2:22 pm
Marios Philippopoulos (3/26/2010)
March 26, 2010 at 8:01 am
Not that his has the fix but it does mention to ensure the user account running Activity Monitor has permission in the "Performance Monitor Users" Windows group.
March 26, 2010 at 7:05 am
I don't recall ever having that problem. Have you checked to see what build number your management tools are at, may have gotten fixed in the service packs.
March 26, 2010 at 6:34 am
I like to check the logical name as well to make sure I have the MOVE statements correct:
RESTORE FILELISTONLY FROM DISK = 'D:\FullBackup.bak'
March 25, 2010 at 12:43 pm
Came across this post that he did it with Windows Vista
http://www.igregor.net/post/2008/01/Installing-SQL-Server-2005-Reporting-Service-on-IIS-7.aspx
March 24, 2010 at 9:11 am
To output to a file just create a SQL Agent job and then under "Advanced" for your step set the "Output File" to your desired location. Then you can...
March 24, 2010 at 9:02 am
Yeah...no luck here either without CTRL held down.
I found they that the option under Text Editor > Any Option > General, includes an "Enable single-click URL navigation". This was...
March 24, 2010 at 8:53 am
if that is the full script you are using. You must have a DECLARE statement for the @message. You could also just put the text straight on the...
March 23, 2010 at 10:19 am
Viewing 15 posts - 751 through 765 (of 972 total)