Viewing 15 posts - 16 through 30 (of 63 total)
update statistics with fullscan on all the table from which I get data didn't make a difference.
I ran my code in small pieces to see if I could find where...
March 9, 2011 at 11:34 am
GilaMonster (3/9/2011)
Update stats (with full scan) on the real tables and consider switching to a temp table
I've already changed the procedure to use temp tables, that is no longer a...
March 9, 2011 at 10:47 am
First, thank you all for helping, I knew I was asking at the right place 🙂
I'm a self-taught DBA and tbh, I really don't know much about statistics, I never...
March 9, 2011 at 10:36 am
I've been doing my homework the last 2 days and got some information over a 48 hours period from Perfmon. Some numbers are encouraging while others raise some concerns.
Available...
December 25, 2010 at 8:30 am
I think I haven't been clear or maybe my original post was too long and this got lost in it.
We are not looking into this because we want...
December 23, 2010 at 11:19 am
Yes of course, I should have posted the link. It's about SQL 2008 but I'm sure it's good for 2005 as well.
December 23, 2010 at 6:28 am
LutzM (12/22/2010)
Gagne (12/22/2010)
Regarding your transaction log: you might want to perform a transaction log more frequently (the setting on our production system is 15 minutes...). But that's a different story....
December 22, 2010 at 5:22 pm
David, Lutz,
Thank you both for sharing your thoughts on this. I agree that checking out I/O performance is the first thing I should do, if that is as "bad"...
December 22, 2010 at 3:46 pm
Should I take the lack of answers as an indication that virtualizing SQL Server isn't popular and may not be a good idea ?
December 22, 2010 at 2:19 pm
I really don't know much on database security and permissions but while reading your post I wondered if adding user2 to the db_owner role is enough, I would try adding...
February 5, 2010 at 11:33 am
lmu92 (1/28/2010)
For the first part: You're very welcome. 🙂
Regarding "I already have a few [tally table]": would you mind sharing why you have more than one?
Just as a safety net...
January 28, 2010 at 10:01 am
Lutz thanks for the reply. I've learned about Tally tables here in the forum and I already have a few but the "Cross Apply" is new to me. ...
January 28, 2010 at 9:24 am
SwePeso is right and I should I mentioned this, the first example will put a null value in all the records that don't have rows for the same employee in...
January 25, 2010 at 7:07 am
Assuming table names to be Employee and Salary.
Update Employee set TotalSalary = (Select sum(Salary) from Salary where EmployeeID = Employee.EmployeeID)
or
Update Employee set TotalSalary = a.TotalSalary
from (Select EmployeeID, SUM(Salary) as TotalSalary...
January 25, 2010 at 5:25 am
SQLPirate (1/20/2010)
Instead, open your 2008 Management Studio.
In Object Explorer, right click on the server name > select facets
In the window that opens up, select...
January 20, 2010 at 7:16 pm
Viewing 15 posts - 16 through 30 (of 63 total)