Viewing 15 posts - 8,041 through 8,055 (of 8,760 total)
Roust_m (6/10/2014)
Just installed standard editon, put tempdb on SSD and configured buffer pool extension to SSD. Ran some production replay trace. Very slow. Eats a lot of...
June 11, 2014 at 12:34 am
Evil Kraig F (6/10/2014)
What performance concerns are you worried about from the concatonation technique? You should see little to no performance difference for a concatonation technique vs. a more...
June 11, 2014 at 12:18 am
SQListic (6/10/2014)
How to create insert statements of the data from a table for top 'n' rows. I know we can create using generate scripts wizard, but we can't customize the...
June 10, 2014 at 10:31 pm
From the top of my head, it would be
😎
EXEC dbo.sp_update_job @job_name = N'Job_Name',@enabled = 0
GO
From the command line
sqlcmd -S server -d database -Q "EXEC dbo.sp_update_job @job_name = N'Job_Name',@enabled =...
June 10, 2014 at 10:15 pm
TomThomson (6/10/2014)
Eirikur Eiriksson (6/10/2014)
Somehow I struggle with accepting the justification for zero division used for projection (Riemann) when it counts for a fraction of a permille in terms of application.😎
a...
June 10, 2014 at 2:24 pm
The Dixie Flatline (6/10/2014)
When I set statistics time,io on for the JOIN solution, it gives the following results:
Table '#B558B379' Scan count 0, logical...
June 10, 2014 at 1:58 pm
below86 (6/10/2014)
June 10, 2014 at 1:46 pm
TomThomson (6/10/2014)
Koen Verbeeck (6/10/2014)
What? You are not by default talking about the Riemann sphere? 😀
As neither SQL nor T-SQL supoprts a complex number type, it's quite clear that the extended...
June 10, 2014 at 1:44 pm
N_Muller (6/10/2014)
June 10, 2014 at 12:36 pm
subbubally (6/9/2014)
Thanks for your reply, i already tried this solution too, if we go by concatenation, there may be performance in future, that's the reason, i avoided...
June 9, 2014 at 11:11 pm
You need a little bit of trickery here.
😎
USE tempdb;
GO
SELECT
(
SELECT
...
June 9, 2014 at 10:40 pm
rockstar283 (6/9/2014)
IMHO, the simplest way is to restore a backup of production over the dev with replace unless the size is an issue. The second bird you hit with this...
June 9, 2014 at 10:11 pm
Thanks for the explanation:-)
There is not much difference in the actual work though, the matching "old" values must be selected from the existing set, based on which ever matching criteria....
June 9, 2014 at 10:06 pm
rockstar283 (6/9/2014)
June 9, 2014 at 10:27 am
Viewing 15 posts - 8,041 through 8,055 (of 8,760 total)