Viewing 15 posts - 1,021 through 1,035 (of 3,348 total)
I don't think this can be caught in a simple metric. How many rows are returned from those combined tables? How much logic has to be done in order to...
January 27, 2016 at 6:46 am
GilaMonster (1/27/2016)
ChrisM@Work (1/27/2016)
GilaMonster (1/27/2016)
ChrisM@Work (1/27/2016)
Two databases on the same "instance" isn't allowed or the two databases can't reference each other using three-part naming?
With Azure SQL DB, there's no such...
January 27, 2016 at 4:40 am
ajnubee (1/26/2016)
I have checked the query plan and index. All seem fine. Any help would be appreciated
Well, since the performance is bad they apparently are not as fine as they...
January 27, 2016 at 1:43 am
I think that it would help if you can post CREATE TABLE statements for all tables involved, INSERT statements with a few rows of sample data, and the expected result....
January 27, 2016 at 1:33 am
Oh, and a second reason for allowing multiple instances is that they can be different versions. So if you have SQL 2012 and you want to upgrade to SQL 2014...
January 27, 2016 at 1:27 am
I tihnk the main reason is to enable companies to better utilize their hardware. If a database server was underutilized, adding a second instance allowed for better utilization of the...
January 27, 2016 at 1:25 am
Google for "FOR XML PATH String concatenation", then read some of the hits you'll find.
If you feel you need help piecing together the actual code, then post CREATE TABLE statements,...
January 27, 2016 at 1:20 am
Those schemas are out of the box owned by the principals of the same name, so you are correct that the ALTER AUTHORIZATION you ran sets it back to default.
The...
January 27, 2016 at 1:12 am
Based on the title of the question, the answer is good. However, specifically for the text in the question (which explicitly limits the query type to backup and restore), I...
January 27, 2016 at 12:29 am
Bruce Dow (1/26/2016)
I disagree with the answer.
COMPRESS can return a GZip compressed version of the string, but...
January 26, 2016 at 2:47 pm
Grant Fritchey (1/25/2016)
Hugo Kornelis (1/25/2016)
Grant Fritchey (1/25/2016)
What blockers are you...
January 26, 2016 at 2:13 pm
Pseudo-code is for procedural programming, and should only be in the design document. Not in the comments. That's not what comments are for, they should clarify.
My commenting style is to...
January 26, 2016 at 1:59 pm
If you force a new plan every time (which might or might not be a good idea, but using the DBCC FREEPROCCACHE sledgehammer is definitely not right), then the most...
January 26, 2016 at 1:54 pm
Aggregate functions that do not use ORDER BY in the OVER clause (so that would be OVER(PARTITION BY ...) or just OVER (), which implies a single partition for the...
January 26, 2016 at 12:59 pm
Manic Star (1/26/2016)
Luis Cazares (1/26/2016)
Manic Star (1/26/2016)
January 26, 2016 at 12:52 pm
Viewing 15 posts - 1,021 through 1,035 (of 3,348 total)