Viewing 15 posts - 8,521 through 8,535 (of 22,214 total)
Just remember that a clustered index is the table, so it may look very large, but that's because it's storing all the data.
March 28, 2014 at 5:57 am
You're posting in the 2008 forum.
Not sure what you mean by batch delete. SET ROWCOUNT just limits the rows returned, but the query plan and the access of the data...
March 28, 2014 at 5:39 am
The key is to make your queries run as fast as possible and keep the transactions as short as possible. So, if you're running an UPDATE statement, make sure it's...
March 28, 2014 at 4:37 am
Instead of using SET ROWCOUNT, actually filter the data using some other criteria. SET ROWCOUNT is deprecated anyway and removed from the product in SQL Server 2014.
March 28, 2014 at 4:33 am
You've restarted the server, which rebuilds tempdb, and you're still seeing this? I strongly suspect hardware issues then.
March 28, 2014 at 4:31 am
Cody K (3/27/2014)
Grant Fritchey (3/27/2014)
It can actually cause performance problems.
From what I've seen where people actually tested this out, it's no more than 10%. I guess there are environments where...
March 28, 2014 at 4:06 am
jcrawf02 (3/27/2014)
We have a written test we use to weed out people who don't know the first thing about SQL (report writing position, not DBA stuff), it's pretty basic, but...
March 27, 2014 at 3:52 pm
Came over here to answer your question and I find that Barry has already covered it better than I can. I'm out!
March 27, 2014 at 12:46 pm
robin.pryor (3/27/2014)
Oh I understand that part. I liken a schema to a namespace or interface in OOP. My question is implementation-related
Sorry, I'm missing something then. I don't see a question...
March 27, 2014 at 11:15 am
robin.pryor (3/27/2014)
I'm a SQL DBA and I've never given a crap about schemas. I know what they...
March 27, 2014 at 11:08 am
robin.pryor (3/27/2014)
Sean Lange (3/27/2014)
robin.pryor (3/27/2014)
MarkusB (1/7/2009)
SQL DBA (1/7/2009)
I need differences between Roles, Schemas, Users and Logins. Can anyone help me. Thanks in advance
You call yourself SQL DBA and ask such...
March 27, 2014 at 10:17 am
If you're going to use sys.dm_exec_requests to monitor, you'll have to capture it over and over again then write a query that shows the changes over time. As far as...
March 27, 2014 at 6:20 am
I think Igor largely nails it. I'd concentrate the aggregations into the view. That's the stuff that is going to be the most costly in your queries, so doing that...
March 27, 2014 at 4:33 am
I don't that Profiler is the best tool. In fact, Profiler, the GUI, is a somewhat dangerous tool to point at a production server. It can actually cause performance problems.
My...
March 27, 2014 at 4:30 am
Assuming you're trying to replicate the production environment, I'd have whatever type of fragmentation management you have in production in place on the test machine. Same with statistics maintenance and...
March 27, 2014 at 4:22 am
Viewing 15 posts - 8,521 through 8,535 (of 22,214 total)