Viewing 15 posts - 5,716 through 5,730 (of 22,226 total)
It's also possible that in addition to the client not keeping up, the client is asking for too much data. In addition to looking to the client coding, 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
August 13, 2015 at 5:41 am
Hello,
Disclosure: I work for Redgate
Thanks for the kind words.
We have a web site that has a ton of articles on how to automate your deployments using our tools. The samples...
"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, 2015 at 5:39 am
caojunhe24 (8/12/2015)
#temp is much more useful than @temp
Really? What about in the case of recompiles?
"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, 2015 at 5:13 am
Here's an example of a Powershell script that will do this. You should probably still plan on exporting to a file first and then import from that file for 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
August 12, 2015 at 11:05 am
mlorek (8/12/2015)
"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 12, 2015 at 10:58 am
Hard to say. I've driven my career by interest and opportunity. What am I interested in and what do I have the opportunities to do. So far, that's by and...
"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 12, 2015 at 9:37 am
Brandie Tarvin (8/12/2015)
YAY! The forums are back!I was worried they'd be down all day.
Me too. I sent an email to RG support. Maybe someone did something.
"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 12, 2015 at 5:53 am
I'd say neither.
Instead, I'd suggest normalizing the scores/marks out to their own table. Then, store them as the correct decimal values. Rounding and prettying can occur on the application/reporting side...
"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 12, 2015 at 5:51 am
For unstructured or semi-structured data within the Microsoft sphere, you're looking at HDInsight[/url], they're version of Hadoop, or DocumentDB[/url]. If you want to stay within the Microsoft stack, and I...
"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 12, 2015 at 5:50 am
You can use DBCC FREEPROCCACHE to target a single execution plan. Something like this:
SELECT @PlanHandle = deqs.plan_handle
FROM sys.dm_exec_query_stats AS deqs
CROSS APPLY sys.dm_exec_sql_text(deqs.sql_handle) AS dest
WHERE dest.text LIKE 'CREATE PROCEDURE dbo.MergeSalesOrderDetail%'
IF...
"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 12, 2015 at 5:46 am
WayneS (8/11/2015)
"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 12, 2015 at 5:40 am
Full disclosure, I work for Redgate.
There are really two tools on the market that provide everything you need for database build and deployment. The first is Redgate SQL Source Control...
"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 12, 2015 at 5:32 am
The SQL Server Database Tools (SSDT) can do most of the work it sounds like you're doing manually. You just have to use the CREATE PROCEDURE syntax to put 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
August 12, 2015 at 5:26 am
JManuelN (8/12/2015)
Have you tried to attach a SQL Server Profiler so you can see what is doing while you open the restore window? It maybe give you some hint.
Sorry 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
August 12, 2015 at 5:20 am
Something must be wrong with your SQL Server Management Studio then. I just validated that it does exactly the same thing on my system as it has always done, open...
"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 12, 2015 at 5:18 am
Viewing 15 posts - 5,716 through 5,730 (of 22,226 total)