Viewing 15 posts - 136 through 150 (of 491 total)
Create Clustered index and check the result
Clustered Index seek must be there in the execution plan
May 31, 2011 at 5:15 am
check all IPs and port of all instances should be different and not default(for the security reason) , you can check these stuff in the SQL Server Configurations Tools
Instance Protocols
Client...
May 31, 2011 at 5:10 am
there is no any SQL Cluster,In the installation of SQL Server Cluster,it use the windows cluster,so you will create first Windows cluster and then install the SQL Server on Cluster...
May 31, 2011 at 5:04 am
Create new FG and create 1 File in it and then move all non-clustered indexes in this FG then your master file and file group size will be reduce also.
You...
May 30, 2011 at 11:00 pm
For 100% surity then you have to test the backup file to restore on the test server
May 30, 2011 at 10:51 pm
Avoid shrinking the database if possible as Gila mentioned and follow this dynamic management function
For Rebuild Indexes
==============
Select * from sys.dm_db_index_physical_stats(db_id('your database'),null,null,null,null)
where avg_fragmentation_in_percent > 30 and page_count > 1000
apply rebuild indexes...
May 30, 2011 at 10:48 pm
Same version will be work for the logshipping and what are errors in replication
Why do you not come to the new version with these steps,if you want to come...
May 30, 2011 at 10:39 pm
Own unlimited Log shipping process
http://aureus-salah.com/2011/05/10/sql-server-logshipping-issue/
May 30, 2011 at 10:30 pm
What's that got to do with the number of log files?
If both cores access the same file at a time second core will be on wait,if you have multiple...
May 30, 2011 at 5:47 am
If Node 1 running max memory parameter setting is 32 GB and Node 2 max memory setting also 32 GB
If Node 2 down and second instance move on Node 1...
May 30, 2011 at 5:40 am
Use SQLCMD then create a batch script with SQLCMD and then schedule with Operating System Scheduler,SQLCMD is available with Express edition also
Usage of SQLCMD
May 30, 2011 at 5:21 am
select * from sys.dm_os_performance_counters
where counter_name like 'page life%'
Result of this query?
May 30, 2011 at 5:08 am
Are you using packages to take the Tlog Backups and how many drives not partition you have and how many cores of CPU you have in a machine
May 30, 2011 at 5:04 am
Its mean your IO system is busy and delays provide me result of this query
use [your database name]
Go
select DB_NAME(database_id) DB_NAME, di.file_id,df.name,io_stall_read_ms ,num_of_reads
,cast(io_stall_read_ms/(1.0+num_of_reads) as numeric(10,1)) as 'avg_read_stall_ms'
,io_stall_write_ms,num_of_writes
,cast(io_stall_write_ms/(1.0+num_of_writes) as numeric(10,1)) as...
May 30, 2011 at 5:02 am
another solution is Stop the Agent Service if jobs are not critical and you can restrict the SQL Agent service account to access the replace database
May 30, 2011 at 4:48 am
Viewing 15 posts - 136 through 150 (of 491 total)