Viewing 15 posts - 10,561 through 10,575 (of 22,219 total)
I've mostly used SQL and it works great on 2012. You can even use the Availability Groups to do log backups or COPY_ONLY backups in addition to the normal backup...
"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
August 15, 2012 at 7:42 pm
That number does seem high, but only because I've primarily worked on systems with stored procedures. If you're working with lots of dynamic or ad hoc SQL, then that number...
"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
August 15, 2012 at 7:40 pm
Also, if the NOLOCK hint is applied to any kind of data modification queries, SQL Server just ignores it. It has to do locks in order to modify data.
"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
August 15, 2012 at 6:20 pm
SQLRNNR (8/15/2012)
WayneS (8/15/2012)
SQLRNNR (8/15/2012)
For the Rhode Island SQLSat, how about we all wear kilts?Is that for speakers, attendees, or all?
Speakers - definitely.
Attendees would be good too!!
I'll try. I might be...
"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
August 15, 2012 at 12:44 pm
Oops. Missed the missing 'IO' & responded too quickly.
"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
August 15, 2012 at 10:42 am
You might want to take a look at Central Management Servers. It's a way to control & report back on multiple servers from a single location. Here's the BOL entry:...
"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
August 15, 2012 at 7:49 am
User the value here, request_owner_id , to look at sys.dm_exec_requests. From there you can join to sys.dm_exec_sql_text or whatever else you need to understand what's happening with that lock.
"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
August 15, 2012 at 7:19 am
Normally, I completely prefer a side-by-side upgrade. Get 2012 on a different server then move things to it. I find it to be a much safer and more consistent operation....
"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
August 15, 2012 at 7:12 am
You're experiencing I/O waits during I/O operations... The only way to speed that up is to get faster/more disks.
"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
August 15, 2012 at 7:10 am
I've been very happy (mostly) with my Toshiba tablet. But if the Surface comes out at $199, and it's a good form factor, plenty of memory, I think I'll upgrade...
"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
August 15, 2012 at 7:09 am
After you run RECOVERY, SQL Server rolls forward or rolls back transactions and puts the database into normal state. You can't then start applying transaction logs again. You need 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
August 14, 2012 at 4:52 am
Same answer as Anthony, but since you're on 2008, I'd strongly suggest using extended events instead of trace. They cause much less impact on the server and you can do...
"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
August 14, 2012 at 4:48 am
Full backups and transaction log backups are disconnected after the very first time you run a transaction log backup. You can pick any given full backup and use any set...
"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
August 14, 2012 at 4:41 am
To get an ERD diagram and do it automatically, I'd take a look at Embarcadero DBArtisan. It has a command line utility, reporting mechanisms, and a scripting language, that will...
"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
August 13, 2012 at 12:26 pm
Plan on restoring them one at a time. You can open multiple windows and start multiple restores, but you'll see very poor performance. Better to know the order that you...
"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
August 13, 2012 at 12:24 pm
Viewing 15 posts - 10,561 through 10,575 (of 22,219 total)