Viewing 15 posts - 7,756 through 7,770 (of 22,213 total)
This question gets asked a lot. You can search out the answers. In fact, I'd practice learning how to look up stuff on the internet. Don't assume that you need...
July 10, 2014 at 6:44 am
And Loops Join.
But what's the real question? Is this an interview question, or are you looking to solve a problem?
July 10, 2014 at 4:55 am
I don't think that will help. Most of those errors are not from tempdb, they're from another database. And, everything is from drive F. It looks like that drive is...
July 10, 2014 at 4:54 am
I am not an Access person, but Access absolutely can call stored procedures within SQL Server and based on what you're describing, that's what you want, not a view. Or,...
July 10, 2014 at 4:52 am
Chowdary's (7/10/2014)
Thank you Mr.Gail Shaw for giving the reply.If All the Differential Backups got corrupted means in that case what will be the resolution to restore the data.
Regards
Jagadeesh...
If all the...
July 10, 2014 at 4:47 am
It sounds like you're trying to capture some enormous execution plan or an execution plan on a cursor or something like that. SET STATISTICS XML OFF is just turning off...
July 10, 2014 at 4:36 am
Maybe caching at the client, try a refresh... grasping at straws here. I've only ever seen it work.
July 9, 2014 at 11:57 am
It's not something I've tried before, but you'll have to restore all the database at least once before you can access it. In a partial restore operation, you're only moving...
July 9, 2014 at 11:55 am
Not sure where you're pulling that information from, but it looks like a session is rolling back a transaction and is waiting on the disk.
July 9, 2014 at 11:53 am
The only thing about replication in the Books Online is about disabling indexes. I've never heard you couldn't rebuild indexes because of replication. I know I used to use the...
July 9, 2014 at 11:52 am
GilaMonster (7/9/2014)
Personally I still schedule index rebuilds on all servers. But I schedule targeted ones that rebuild just what needs rebuilding and only larger tables.
+1
July 9, 2014 at 9:07 am
I'm pretty mixed on index fragmentation. Unfortunately, I've seen it cause problems, so, if I can defragment indexes for little or no cost, I'm going to do it. If the...
July 9, 2014 at 8:14 am
I am not a fan, but you should at least take a look at the built-in functionality for auditing.
July 9, 2014 at 7:48 am
Koen Verbeeck (7/9/2014)
Grant Fritchey (7/9/2014)
Where does my data come from?Well the mommy data and the daddy data loved each other very much so....
He's being a tad lazy now.
I'll move 'em...
July 9, 2014 at 7:45 am
I'd suggest going to the link I provided and just following the instructions there. Here's a sample:
CREATE EVENT SESSION [QueryMetrics] ON SERVER
ADD EVENT sqlserver.rpc_completed(
WHERE ([sqlserver].[equal_i_sql_unicode_string]([sqlserver].[database_name],N'AdventureWorks2012'))),
ADD...
July 9, 2014 at 7:43 am
Viewing 15 posts - 7,756 through 7,770 (of 22,213 total)