Viewing 15 posts - 16 through 30 (of 34 total)
I could see some answers in below links...have a try
http://www.sqlteam.com/article/notes-from-an-upgrade-to-sql-server-2005
http://www.sqlservercentral.com/Forums/Topic1027752-146-1.aspx
http://www.mssqltips.com/tip.asp?tip=1230
suggest you to
1. rebuild indexes, update statistics of all user tables
2. run...
March 1, 2011 at 11:41 am
Kevin,
as Server is running in 32 GB RAM, I forgot the possibility of keeping/reading all pages from memory irrespective of hard disk and fusion-io.
As you suggested, I 've done a...
February 15, 2011 at 8:11 am
Great answer Kevin.
got few inputs to investigate further.
I have asked server management team to provide specification details of both disk and fusion-io and asked them to perform stress test on...
February 14, 2011 at 10:02 am
Thanks for your reply.
in Brent's Fusion-io review post,
(http://www.brentozar.com/archive/2010/03/fusion-io-iodrive-review-fusionio/)
He has mentioned some hardware level details to get maximum performance out of Fusion-io
like,
1. In order to get your money’s...
February 13, 2011 at 8:00 pm
Roi,
Forgot to mention one point.
guess you know the fact that, most of the DMV statistics are cumulative, meaning you cant filter last 1 or 2 hr performance statistics from most...
January 7, 2011 at 12:34 am
Thanks Koen for the quick response.
We get the same error ever after changing querytimeout of DB2 client to 0.
is there any property to be configured in DB2 Server? any...
January 5, 2011 at 3:30 am
Some extensive set of DMV's are present in below url to cover statistics of every part of hardware and sql server db, object level.
first create reporting tables for...
January 5, 2011 at 1:57 am
Question is not having more details on issues to narrow down the issue.
if performance issue is with few queries:
1. check execution plan and address pain points
2. update statistics
3. check server...
January 5, 2011 at 12:55 am
SQL Iron Chef,
Here is simple excercise to test this scenario.
create a table name tEmployee,
create table tEmployee(
intEmpCode int,
strName varchar(100),
strCity varchar(100))
create NCI on intEmpCode,
CREATE NONCLUSTERED INDEX NCI_tEmployee_intEmpCode ON tEmployee(intEmpCode)
Insert 100 dummy records...
January 3, 2011 at 8:57 pm
here is another try. this query combines both sys.dm_db_index_usage_stats (for index usage) and sys.system_internals_allocation_units (for collecting pages allocated)
select si.name IndexName, OBJECT_NAME(si.object_id) ObjectName, si.type_desc, internals.total_pages, ius.*
from sys.indexes si
inner join sys.dm_db_index_usage_stats ius...
January 3, 2011 at 5:45 am
I couldnt see any response for my query.
can any SSIS expert have any idea abt this error?
or can u pls tell me the right place to ask this query?
September 13, 2010 at 5:05 am
Thanks David BAFFALEUF and Gila Monster for your reply.
August 22, 2010 at 11:30 pm
hey here is my comments
if your key tables are huge and query returns huge number of records
or too many non unique values in keys, u really cant control...
March 2, 2010 at 4:21 am
here is few points i got from sqlmag
sql 2005 arch. enhancements
1. statement level recomiples - (in sql 2000 its batch level recompile)
2. Parallal query option (PQO) enhancement
3. enhancement in memory...
July 29, 2009 at 8:10 am
Viewing 15 posts - 16 through 30 (of 34 total)