Page History: I need SPEED!!
Compare Page Revisions
Page Revision: 2008/02/26 05:44
Several things can increase your speed, try these!
- Purge those logs! Are your packages taking forever to start!
- Go to Tools ->
- Options ->
- Maintenance Tab ->
- Purge Log (Make sure no packages are running, doing this will screw them up!)
- Create this index if your fiending for faster packages.
USE ProvidusDB
GO
CREATE NONCLUSTERED INDEX Idx_doc_id_entity_id ON dbo.task_inst_doc_results_by_ent
(
doc_id ASC,
entity_id ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = OFF) ON PRIMARY
- Also, there's an old wives tale that keeping the Web Scraper Console open makes downloads go faster. Try it!