Viewing 15 posts - 9,391 through 9,405 (of 22,214 total)
I don't know of a specific resource.
A lot of people are scared (semi-justified) of data deduplication. It's a somewhat new technology and it can be a little sketchy, but...
October 26, 2013 at 4:22 am
You've got the function in place, but it's not comparing it to anything. That's why you're getting an error. Assuming you want exactly 30 days ago, you can do this;
SELECT...
FROM...
WHERE...
October 26, 2013 at 4:18 am
Assuming you're running on 2008 since this is a forum for that, I don't recommend trace. Instead, use extended events. The events to capture queries against the database are rpc_completed...
October 26, 2013 at 4:14 am
The compression for the backup will occur within SQL Server, so there's no issue there. I'll bet you don't get any additional compression on the drive since the file will...
October 25, 2013 at 5:49 am
I've never tried creating a plan guide for a system procedure. I'm not sure it will work.
But, the error suggests you might not be trying to create it in the...
October 25, 2013 at 5:47 am
Yeah, if you create a temporary table as a local temp table, using #temptablename, it's only for the connection using it. You can create a global temporary table using ##temptablename...
October 25, 2013 at 5:44 am
Check out my sig for a book on reading execution plans. You can even download it for free.
October 24, 2013 at 12:33 pm
I'm pretty sure the differences are in how the query is dealing with the DISTINCT statement. Look at the execution plan to see how that is resolving itself.
Since DISTINCT is...
October 24, 2013 at 12:29 pm
I'm with Gail. I can't think of anything that would lead me to regularly restart the instance because of something within TEMPDB.
October 24, 2013 at 8:10 am
From a core behavior stand point, there's no real difference between the two. Both are basically just deallocating the resource. But, you then have to go back and recreate the...
October 24, 2013 at 8:09 am
For just learning PowerShell, I'd suggest Don Jones book, PowerShell in a Month of Lunches. It'll give you most of what you need to learn it.
October 24, 2013 at 8:05 am
The EPM does all the work for you. But the other stuff is documented on Microsoft. It's very easy. Yes, for more complete direct control you'll do PowerShell scripting, but...
October 24, 2013 at 7:40 am
Just don't ever forget that all these types of tables from table variables, multi-statement UDF and table parameters, all of them lack statistics which can seriously, negatively, impact performance.
October 24, 2013 at 6:13 am
Sure. It's a part of PBM. You can make calls from Agent. Keep reading in the documentation. PBM is great.
October 24, 2013 at 6:08 am
All databases must have a transaction log, even on SQL Server 2000. Are you trying to remove a log file you are no longer using, but there will still be...
October 24, 2013 at 5:50 am
Viewing 15 posts - 9,391 through 9,405 (of 22,214 total)