Viewing 15 posts - 5,806 through 5,820 (of 5,842 total)
1) Raid 5 is HORRIBLE for the boot (C) drive. I assume your OS page file is there, as well as tempdb. RAID 5 is suboptimal for both of those.
2)...
April 1, 2007 at 6:13 pm
I would recommend either reading a book covering these topics or hiring a professional to come in and give you a review and written suggestions using your systems and requirements. ...
April 1, 2007 at 6:04 pm
Lock pages in memory only works for the Enterprise version of SQL Server 2005.
64bit processors will be faster for given clock rates because they move larger amounts of data/instructions through...
April 1, 2007 at 5:55 pm
I have a GREAT implementation for you. Use Binary Encoding. With this mechanism, a single tiny/small/int field can represent multiple states at once. Take a smallint. Limit is +-32765. Powers...
April 1, 2007 at 5:51 pm
I have never yet been at a client that didn't have at least a half-dozen people with SA priviledges, so that (locking out db create permission) wouldn't work in any...
March 26, 2007 at 10:14 am
I agree with Noel and Scott. I too have gotten all of my consulting clients via word-of-mouth referrals and also haven't had to update my resume in about 10 years. ...
March 23, 2007 at 5:13 pm
I'm all for cross-over training! One it can open your eyes to different methods you can use in your own domain and two it saves the company from the classic...
March 22, 2007 at 9:27 am
Loner, IMHO using an Oracle expert to bring up Hyperion on SQL Server (or do ANY consulting on SQL Server platforms) is a bad idea. I am extremely good at...
March 22, 2007 at 8:37 am
I do some teaching as well as consulting so I come across a lot of people who work with SQL Server in some fashion or another, so I have a...
March 22, 2007 at 5:14 am
Do you really execute the DELETE with no WHERE clause? That simply can't be good/right. And if it is, then you certainly don't...
March 20, 2007 at 10:06 am
Be careful with dbcc dbreindex. If you turn it loose against all tables/indexes you could wind up with a transaction log the size of Texas! Check BOL and various other...
March 20, 2007 at 10:04 am
1) Be VERY careful comparing time runs between query executions. You must flush both the RAM cache and Procedure cache between each execution (or do a few runs first if...
March 19, 2007 at 1:08 pm
1) Run it on a different box.
2) Add another disk.
3) Create more free space on existing drive (delete files, esp IE crap and temp files, reconfigure recycle bin (this is...
March 19, 2007 at 1:01 pm
1) To address your original issue of the sort taking so long to respond, indexing won't help unless it is clustered, and that would then only help when sorting THAT...
March 19, 2007 at 12:52 pm
Continuing with Journeyman's post, try forcing the optimizer to use only non-parallel query plan on the INSERT by using the optimizer hint MAXDOP (I think it is called - check...
March 19, 2007 at 5:15 am
Viewing 15 posts - 5,806 through 5,820 (of 5,842 total)