April 20, 2015 at 8:59 am
Hi All,
what would be the Full script if I want to run against 'AdventureWorks' database?
April 20, 2015 at 9:13 am
Tac11 (4/20/2015)
Hi All,what would be the Full script if I want to run against 'AdventureWorks' database?
EXECUTE dbo.IndexOptimize
@databases = 'AdventureWorks',
@FragmentationLow = NULL,
@FragmentationMedium = 'INDEX_REORGANIZE,INDEX_REBUILD_ONLINE,INDEX_REBUILD_OFFLINE',
@FragmentationHigh = 'INDEX_REBUILD_ONLINE,INDEX_REBUILD_OFFLINE',
@FragmentationLevel1 = 5,
@FragmentationLevel2 = 30,
@SortinTempdb = 'Y'
Lowell
April 20, 2015 at 9:16 am
Tac11 (4/20/2015)
Hi All,what would be the Full script if I want to run against 'AdventureWorks' database?
You really should start a new thread. By hijacking a different thread, you run a greater risk of your question being ignored or missed.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
April 20, 2015 at 10:59 am
I'll add to that by saying that people shouldn't really be posting for help on Ola's stuff here. His documentation on his code is very well written and if someone spends the same amount of time looking through that document as they do posting questions about it, they'd have all the answers. To be completely honest, SSC isn't a support system for such fine offerings. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
April 20, 2015 at 3:44 pm
Jeff Moden (4/20/2015)
I'll add to that by saying that people shouldn't really be posting for help on Ola's stuff here. His documentation on his code is very well written and if someone spends the same amount of time looking through that document as they do posting questions about it, they'd have all the answers. To be completely honest, SSC isn't a support system for such fine offerings. 😉
+1
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
Viewing 5 posts - 16 through 19 (of 19 total)
You must be logged in to reply to this topic. Login to reply