December 9, 2009 at 8:47 am
Alvin Ramard (12/9/2009)
Bru Medishetty (12/9/2009)
Grant Fritchey (12/9/2009)
I always forget this one. How do you flip the "run faster" switch to the on position in SQL Server?I see 4 Switches on my Server,
1. Run 2 times faster
2. Run 4 times faster
3. Run 4 times faster
4. Run ar normal speed - recommended
😛 😛 😛
I've seen some with 2 switches:
Run Slow
Run Slower
🙂
If you have not found these 2 slow running switches and want to add that capability, try this.
To make the Server run Slow -- Add triggers on all tables in all databases
To make the Server run Slower -- Modify all the stored procedures and do updates, deletes using cursors.
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
December 9, 2009 at 8:50 am
Grant Fritchey (12/9/2009)
I'm honestly trying to help the guy, but man... could you make it more difficult?
Post the questions in Sanskrit? 😉
December 9, 2009 at 9:00 am
Grant Fritchey (12/9/2009)
I always forget this one. How do you flip the "run faster" switch to the on position in SQL Server?
exec sp_configure 'Run SQL Faster',1
I've actually given that to someone because they were insisting there was a setting that made SQL faster.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 9, 2009 at 9:09 am
GilaMonster (12/9/2009)
Grant Fritchey (12/9/2009)
I always forget this one. How do you flip the "run faster" switch to the on position in SQL Server?
exec sp_configure 'Run SQL Faster',1
I've actually given that to someone because they were insisting there was a setting that made SQL faster.
Just to be safe, you run this one first.
exec sp_configure 'Turn Server On',1
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
December 9, 2009 at 9:27 am
GilaMonster (12/9/2009)
exec sp_configure 'Run SQL Faster',1
Wow! Thanks Gail, I'm trying immediately on my production server. :hehe:
Would you also recommend (as a fellow expert) turning on these switches?
exec sp_configure 'Auto Pilot',1
exec sp_configure 'AI mode',1
-- Gianluca Sartori
December 9, 2009 at 9:31 am
I'd watch out for the AI mode personally. It's pretty experimental and who knows what will happen if you give your server autonomy.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 9, 2009 at 9:37 am
GilaMonster (12/9/2009)
I'd watch out for the AI mode personally. It's pretty experimental and who knows what will happen if you give your server autonomy.
And here I thought that's what Larry Gonick's Raw Materials strip was attempting to chronicle.
-Luke.
December 9, 2009 at 9:45 am
GilaMonster (12/9/2009)
I'd watch out for the AI mode personally. It's pretty experimental and who knows what will happen if you give your server autonomy.
I'm sorry, Gail, I can't execute that query...
-- Kit
December 9, 2009 at 9:46 am
Gianluca Sartori (12/9/2009)
GilaMonster (12/9/2009)
exec sp_configure 'Run SQL Faster',1
Wow! Thanks Gail, I'm trying immediately on my production server. :hehe:
Would you also recommend (as a fellow expert) turning on these switches?
exec sp_configure 'Auto Pilot',1
exec sp_configure 'AI mode',1
My favorite is the
exec sp_configure 'You come do it for me',1
Reconfigure
Though it could be just as dangerous as the AI setting.
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
December 9, 2009 at 9:56 am
CirquedeSQLeil (12/9/2009)
My favorite is the
exec sp_configure 'You come do it for me',1
Reconfigure
Potentially a very expensive setting. In terms of money, not server performance. 🙂
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 9, 2009 at 10:01 am
Anyone see the spoon? 😛
December 9, 2009 at 10:12 am
GilaMonster (12/9/2009)
CirquedeSQLeil (12/9/2009)
My favorite is the
exec sp_configure 'You come do it for me',1
Reconfigure
Potentially a very expensive setting. In terms of money, not server performance. 🙂
Thus, the reason why it could be my favorite 😀
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
December 9, 2009 at 10:16 am
Lynn Pettis (12/9/2009)
Anyone see the spoon? 😛
Someone needs feeding? 😀
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
December 9, 2009 at 10:30 am
Alvin Ramard (12/9/2009)
Lynn Pettis (12/9/2009)
Anyone see the spoon? 😛Someone needs feeding? 😀
Our friend of the vague questions.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
Viewing 15 posts - 9,811 through 9,825 (of 66,815 total)
You must be logged in to reply to this topic. Login to reply