Viewing 15 posts - 31 through 45 (of 119 total)
you can use dmv
sys.dm_db_log_space_usage will give the log file usgae.you will be getting similar information when you retrive the data using DBCC SQLPERF('logspace').However this dbcc command will give you...
September 2, 2011 at 9:18 am
In order to resolve the issue, please refer to the following steps:
1. Login to the MSSQL Server Management Studio with Windows Authentication.
2. In SQL Server Management Studio Object Explorer,...
August 24, 2011 at 1:48 am
you can configure through LiteSpeed.Lite Speed Provide
Compresses backups up to 85% more than competing full backup solutions
Analyzes for the best compression options for databases
Provides automatic recovery from I/O issues
Performs...
August 24, 2011 at 1:37 am
ya you can setup principle servers in one instan e and mirror dabases in one instane
August 24, 2011 at 1:33 am
.NET connection string
"Data Source=ServerA;Failover Partner=ServerB;Initial
Catalog=AdventureWorks;Integrated Security=True;"
August 18, 2011 at 9:43 am
Truncate
Delete
TRUNCATE is a DDL command
DELETE is a DML command
TRUNCATE TABLE always locks the table and page but not each row
DELETE statement is executed using a row...
August 17, 2011 at 3:43 am
Activity Monitor,Audit, Backup Compression, Central Management Servers,Data Collector and Management Data Warehouse, Policy-Based Management, Predictable Performance and Concurrency, Resource Governor, Transparent Data Encryption (TDE)
August 9, 2011 at 5:44 am
LOCKING occurs when connection needs access to a piece of data in database and it’s necessary for SQL Server when managing multiple connections
BLOCKING occurs when two connections need access to...
August 9, 2011 at 5:30 am
1.DBCC CHECKALLOC
DBCC CHECKALLOC checks page usage and allocation in the database. Use this command if allocation errors are found for the database. If you run DBCC CHECKDB, you do not...
August 9, 2011 at 5:20 am
by using this we can see the drives space EXEC xp_fixeddrives
sp_helpdb 'DatabaseName' By using we can see the datbase sie
August 9, 2011 at 3:21 am
check the frgamnetion of the table after that if fragmentation of table is more than 40% you need to go for the rebuild the index .
August 2, 2011 at 9:09 am
we can using perfmon and any other way to check
August 2, 2011 at 9:07 am
A)Database Mirroring
B)Log-shipping
A1)Database mirroring is functionality in the SQL Server engine that reads from the transaction log and copies transactions from the principal server instance to the mirror server...
August 2, 2011 at 3:37 am
Viewing 15 posts - 31 through 45 (of 119 total)