Viewing 15 posts - 946 through 960 (of 1,640 total)
Thanks.
I created this as a view, based on this view I create a another view that joins some other tables, performance wise the second method and third one runs a...
May 3, 2012 at 12:04 pm
Thank you, I tried 3 methods, I like the first one best. then 2nd, then 3rd.
I can understand them, but just cannot think of how to make it like this...
May 3, 2012 at 10:12 am
Sorry, I didn't notice the schema.txt change the format. I did try the script to create the tables, and then I save it, but it didn't allow the file...
May 3, 2012 at 9:08 am
Ok, here is the reduced size sample data.
May 2, 2012 at 5:04 pm
Thanks, I just added the attachment.
May 2, 2012 at 4:50 pm
Thank you, ColdCoffee,
It works perfectly.
The function seems a very useful one
May 1, 2012 at 4:37 pm
I wish I have created the tables.
But the tables have already existing there like that given to us, I just help with a query.
I cannot change the table structure in...
May 1, 2012 at 4:21 pm
Thank you, I will give it a try, might need to upgrade the report in visual studio and redeploy it.
May 1, 2012 at 11:33 am
I found out the report runs fast on a 2005 reporting server, but when the same report is on a in-place upgrade 2008r2 server, it runs slow.
May 1, 2012 at 10:38 am
Or it only refreshes schema-bound view, but do not refresh non-schema bound view?
April 26, 2012 at 5:24 pm
Thank you very much, that helps a lot.
April 24, 2012 at 2:59 am
GilaMonster (4/23/2012)
April 23, 2012 at 4:58 pm
Here is the query:
SELECT OBJECT_NAME([object_id]),index_id,SUM(record_count),SUM(page_count)
FROM sys.dm_db_index_physical_stats(DB_ID(),NULL,NULL,0,'DETAILED')
GROUP BY OBJECT_NAME([object_id]),index_id
ORDER BY 3 DESC
My question: do the record_count and page_count mean for both data and index, or for index only?
Thanks,
April 23, 2012 at 4:38 pm
Viewing 15 posts - 946 through 960 (of 1,640 total)