Viewing 15 posts - 6,826 through 6,840 (of 22,219 total)
That's tough to say. It really depends on the type of search we're talking about. Is it across a single data set that could be encapsulated in a partitioned view...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 12:59 pm
If the agencies are going to be doing regular searches across the entire data set, I would consider putting it all into a single database (it does depend on the...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 12:21 pm
Knock wood, I never had to restore a Sharepoint farm. But, what we were doing to protect it was point in time backups with the knowledge that we'd have to...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 12:18 pm
Sioban Krzywicki (2/2/2015)
SQLRNNR (2/2/2015)
Ed Wagner (2/2/2015)
I only have Standard Edition, but I can't imagine running a production instance on SQL Express. Maybe I'm just spoiled.
I have to agree. ...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 12:11 pm
Use the dynamic management views to gather better information. Sys.dm_exec_requests will show you the processes. That will let you more easily see what the query is of the blocking process:
SELECT...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 7:41 am
Like Gail says. It sounds like something, unknown at this point, is wrong on your server. I'd get the consistency checks on all the databases, including the master, gets run...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 5:02 am
jacksonandrew321 (2/2/2015)
Hi ExpertsWhich one is best, efficient and cost effective recovery plan among these log shipping, database mirroring, replication, fail-over clustering and backup and restore.
Thanks
Regardless of other choices, you should...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 4:57 am
Weird duplicate post. Edited this to remove the repeated statements.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 4:00 am
It won't change the IDs on a reboot, no.
It sounds like you have a corrupt database. Do you regularly run DBCC CHECKDB on your databases? If not, I'd strongly suggest...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 4:00 am
Maintenance plans are there so that you do actually maintain your databases, which must be done. But, as you get more sophisticated, yes, you're probably going to stop using maintenance...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 3:57 am
Is the connection issue to Azure? That could be network latency because you're going out to the cloud.
If it's just local... I'm not sure. I'd suggest using standard troubleshooting approaches,...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 3:56 am
I think this is down to clarity of code versus actual functional differences. I'd go with the ISNULL and/or COALESCE over a CASE statement.
But, as with anything, test it yourself....
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 2, 2015 at 3:53 am
I'm going to be at SQL Rally at the end of February. I'll fly from there to SQLBits on Wednesday. I'm presenting two sessions at Bits. I'll also be at...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 1, 2015 at 3:32 am
I like Ola's scripts and Michele's. I recommended them both in my book.
There is another option to look into. Minion Reindex by Sean & Jen McCown. I wrote a review...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 1, 2015 at 3:30 am
Just so you're clear on terminology.
A backup is a page-by-page copy of the database including all the database objects and the data inside the database.
You're asking for a script for...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
February 1, 2015 at 3:28 am
Viewing 15 posts - 6,826 through 6,840 (of 22,219 total)