Viewing 11 posts - 1 through 11 (of 11 total)
TheSQLGuru (2/4/2015)
February 9, 2015 at 3:35 am
I use the following code to monitor our Alwayson group.
SELECT ar.replica_server_name,
DB_NAME(dbr.database_id) AS [DBName] ,
dbr.database_state_desc,
dbr.synchronization_state_desc,
dbr.synchronization_health_desc,
...
February 9, 2015 at 3:29 am
first, you should find the query, and confirm with your client, then kill them.
I often find the most longest query first, and check if there is any optimization I can...
February 9, 2015 at 3:02 am
My build is SQL SERVER 2012 SP2(10.0.5058.0) and there are 128 GB or 256GB on my servers, the "TokenAndPermUserStore" used more than 17 GB memory, we meet the non-yield...
February 5, 2015 at 2:29 am
Bru Medishetty (2/17/2010)
On the Server, when opening the SSMS, right click and choose Run as Administrator
Also check with your System Admin to...
February 20, 2010 at 6:38 pm
Try to use report 'Disk usage by top table' to find which table use so big space, and then analysis this table.
January 24, 2010 at 7:34 pm
USE [master]
GO
--Change DB recovery mode
ALTER DATABASE [DATABASENAME] SET RECOVERY SIMPLE WITH NO_WAIT
GO
USE [DATABASENAME]
GO
-- Shrink DB LOG
DBCC SHRINKFILE (N'DATABASELOGFILENAME' , 0, TRUNCATEONLY)
GO
USE [master]
GO
--Change recover mode back
ALTER DATABASE [DATABASENAME] SET RECOVERY FULL...
January 24, 2010 at 6:56 pm
Maybe you can try to use a virtual machine to run the three database, and use another vm to run the others database, and allot appropriate memory to each VM
January 24, 2010 at 6:44 pm
Dave Ballantyne (12/29/2009)
If so you should be able to duplicate the poor performance using variables.
In any case you will need to post the...
December 29, 2009 at 3:59 am
sheppc1214 (6/7/2009)
Ok, to be more specific, I'll take backing up VLDBs. If my database is 1TB, how do I perform backup with files/filegroups?Thanks,
sheppc1214
I haven't meet that large database, maybe you...
June 8, 2009 at 11:52 pm
randy wen (8/6/2007)
Registering these 2 DLLs should fix your problem.
regsvr32 msxml6.dll
regsvr32 msxml3.dll
Randy
How to register?
May 15, 2009 at 1:54 am
Viewing 11 posts - 1 through 11 (of 11 total)