Viewing 15 posts - 76 through 90 (of 99 total)
I think the point made stands. There are too many things that can affect the performance of a query for good or bad, even a simple query.
Best to test...
January 22, 2014 at 4:03 am
jitendra.padhiyar (1/21/2014)
We have around 47 MSSQL Servers and have around 1400 databases in it. We are monitoring them manually and runnig backup check script manually. It consumes almost 3-4...
January 21, 2014 at 9:30 am
DataMinder (1/15/2014)
January 20, 2014 at 8:53 am
I believe SQL Server Data Tools (SSDT) has in built schema and data compare as well.
It's not as extensive as Red Gate's Tool but it may well be all...
January 15, 2014 at 6:35 am
The "AddIns" check suggested is a good idea.
I have had occasions where an AddIn significantly slowed or froze Management Studio.
If memory serves me correctly, ApexSql Intellisense was one of them.
January 15, 2014 at 6:20 am
Post the error if you want it more specific.
January 14, 2014 at 9:35 am
What exactly are you using to do this deployment? Is it SSDT with a Database Project?
As has already been suggested, unless you are planning to set up some automated...
January 13, 2014 at 2:46 am
I think it's the column alias causing the error.
Try it like this:
Select
SUM(Case when CTE1.Status = 'No' Then 1
when CTE1.Agent_Status= 'Aged' Then 1
when CTE1.Platform = Production Then 1
When CTE1.Critical =...
December 19, 2013 at 5:14 am
I would use the OUTPUT Parameter approach suggested.
It's more appropriate given the circumstances you describe.
December 18, 2013 at 9:32 am
kanala.madhu (12/12/2013)
i had 1000 employees... each employee i paid every month salary.i.e.03/13 ,04/13....Each employee have some employee id .i.e.unique number..
I want to retrieve the particular employee id and every...
December 13, 2013 at 7:07 pm
Maybe a Full Text Index might help?
December 9, 2013 at 8:58 am
farrukhhameed786 (12/7/2013)
I have a data sheet attached as a sample...
In column B dates are placed, Column C having data, column D average data of last 5 days and...
December 9, 2013 at 4:26 am
I doubt there is an "elegant" way to do this via TSQL.
You might be better off trying the SQL CLR, I would imagine you could code against the Excel Object...
December 9, 2013 at 4:04 am
domleg (12/5/2013)
SELECT dbo.HemAnimal.AniUserNumber, dbo.HemAnimal.AniResponderNumber, dbo.PrmDeviceVisit.DviStartTime, dbo.PrmDeviceVisit.DviEndTime,
...
December 5, 2013 at 7:49 am
rightontarget (12/4/2013)
I was asked to create a test environment for one of our apps that is supported by 3 databases.
I can restore latest backup of production version of each,...
December 5, 2013 at 6:52 am
Viewing 15 posts - 76 through 90 (of 99 total)