Viewing 15 posts - 76 through 90 (of 281 total)
YSLGuru (4/11/2010)
dmoldovan (4/9/2010)
Under which circumstances is it possible that several records exist in sys.dm_db_index_usage_stats for the same index?
I'm confused by your question, did you post this tothe wrong thread...
April 12, 2010 at 8:00 am
Under which circumstances is it possible that several records exist in sys.dm_db_index_usage_stats for the same index?
April 9, 2010 at 6:18 am
Do you execute the slow query against a remote server?
April 8, 2010 at 7:50 am
Is the database size your only concern? Can you give more details about the application and about the system you chose (i.e. 32 bits. 64 bits...)
April 8, 2010 at 6:38 am
See also if this helps
http://www.sql-server-performance.com/articles/per/temp_tables_vs_variables_p1.aspx
March 25, 2010 at 8:27 am
Alternatively you can try working with a temporary table, instead of a table variable. You can further index the temp table, also statistics will be available.
March 25, 2010 at 8:26 am
GRANT the DWH role the rights on the tables you need. Or use stored procedures to access the data and grant the EXECUTE right on these procedures.
March 25, 2010 at 6:17 am
Can you publish the 2 execution plans?
March 25, 2010 at 5:41 am
Talk to your host about it. Depending on your agreement, he may offer a backup / restore plan.
March 22, 2010 at 5:45 am
You're welcome.
Please share your solution with us, if you have time...
March 22, 2010 at 5:11 am
March 22, 2010 at 4:10 am
March 22, 2010 at 3:24 am
See if these help:
March 22, 2010 at 2:46 am
Here is a nice tip from Itzik Ben Gan's "Inside Microsoft SQL Server 2005— T-SQL Programming" - January 1st 1900 as a Monday. So this will return all the records...
February 19, 2010 at 2:34 am
See for example
http://blogs.msdn.com/sqltips/archive/2005/10/05/Top-N-costly-query-plans.aspx
You can also trace those queries with the profiler - for example the "duration" template may be a starting point.
February 18, 2010 at 2:08 am
Viewing 15 posts - 76 through 90 (of 281 total)