Viewing 15 posts - 121 through 135 (of 186 total)
If you have LOBs, you won't be able to rebuild indexes online. Also keep in mind that online index rebuilds will lock the table at the beginning and end...
April 26, 2011 at 8:35 am
You can do a search on that topic as there are a lot of articles/blogs people have written. It essentially allows SQL Server to 'lock pages in memory' instead...
April 26, 2011 at 6:26 am
Another thing I just thought about is if your cache hit ratio is low. Perhaps the performance dashboard/Perfmon can assist in diagnosing the server. Sorry, I'm just thinking...
April 25, 2011 at 9:20 am
Just to get the ball rolling, I would run Perfmon to find out where the bottlenecks are. It doesn't look like it's memory, but perhaps it could be IO?...
April 25, 2011 at 6:55 am
Then perhaps you can take a look at the execution plan and go from there...
April 22, 2011 at 12:51 pm
Ahh, that's what it was... OFFLINE/ONLINE after the modify file... Thanks!
April 22, 2011 at 10:26 am
Perhaps SQL Server is consuming all of the server's memory. Can you verify that SQL Server has a max/min memory limit? Also, there are some things you may...
April 22, 2011 at 8:54 am
Thanks for correcting my previous "answer"! 😀
April 22, 2011 at 8:49 am
I have never encountered that error, but these questions may help...
Have you looked in the SQL Security tab and verify your account has the necessary permissions?
Perhaps verify that...
April 22, 2011 at 8:46 am
Please verify this, but I believe you can do a modify file to the new location, then do a restart on SQL service via the Configuration Manager.
April 22, 2011 at 8:21 am
Perhaps SQL Service Account doesn't have permissions to the folder? What is the error message when you try to do a restore?
April 22, 2011 at 8:17 am
Do you have an index that will satisfy the query? Do you need to select all of the columns?
April 21, 2011 at 9:05 am
Nevermind... I found out the answer which is to use the partitioning function. I was like 'Duh'... It's been that kinda week for me... 😛
April 21, 2011 at 8:42 am
An idea came to my head... Surprising, I know...
I will be using Gail's idea of moving data into a temp table incrementally into the new FileGroup. Is there...
April 21, 2011 at 8:20 am
Hehe, I never really thought of that as an option! I feel silly now... 😛
Thank you once again, Gail!
April 20, 2011 at 12:34 pm
Viewing 15 posts - 121 through 135 (of 186 total)