Viewing 15 posts - 1 through 15 (of 23 total)
You should keep track on SQL Server storage and performance to avoid this type of problem
If the capacity management of sql server is up to the mark then sql...
March 25, 2013 at 6:43 am
Check out the below threads to find out the poor performing query
February 12, 2013 at 4:26 am
First you should check few things before moving a table
1. You cannot change the data type of the partitioning column once the table is partitioned.
2. You can move...
January 9, 2013 at 4:59 am
You can set some alert through an utility like after the successful completion of job you will receive a mail
Use some monitoring software like this
January 3, 2013 at 5:49 am
Here is an excellent difference between rebuilding the indexes & reorganising the indexes
Eg.
Index Rebuild : This process drops the existing Index and Recreates the index.
USE AdventureWorks;
GO
ALTER INDEX ALL ON...
December 28, 2012 at 3:39 am
Also you need to check your disk space and the future growth of your disk size & memory utilisation by query
December 24, 2012 at 5:31 am
Its may be a performance related issue ...
check you CPU usage and memory usage for the sql server
If its taking much percentage as expected ..you should reorganize the indexes...
December 19, 2012 at 5:37 am
if you have too many indexes, the insert and update performance of your application suffers.
You have to find a balance between the indexing needs of the writes and reads that...
December 19, 2012 at 3:44 am
I will suggest to use a third party tool it will monitor the performance of SQL Server, the future growth of your database size,
which in turn improve the performance...
November 21, 2012 at 3:29 am
1.what is the difference between DB server and Report Server?
Answer:
The report server is the central component of a Reporting Services installation. It consists of a...
November 20, 2012 at 5:58 am
Simplest solution is to use a WITH. e.g.
WITH results ( <select> ) DELETE FROM results –
November 8, 2012 at 2:02 am
For shrinking,fragmentation and forecast the future database space growth u should use a dedicated tool that will fulfill your requirements regarding SQL SERVER STORAGE .....there are many tool fall in...
November 8, 2012 at 12:37 am
Scalability shows the dependency of performance on factors like the data volume i.e. data stored in a database
The response time of an SQL query depends on many factors. The data...
November 6, 2012 at 10:31 pm
Its not a certification topic , it is related to troubleshooting of SQL SERVER reporting service as askesd by umashankar
November 6, 2012 at 10:24 pm
in that case u should follow this link ..
http://msdn.microsoft.com/en-us/library/ms156468(v=sql.100).aspx
November 6, 2012 at 3:29 am
Viewing 15 posts - 1 through 15 (of 23 total)