Viewing 15 posts - 16 through 30 (of 121 total)
Amy.G (4/8/2013)
Ok I was assuming the data was already in two tables that could be indexed. My bad!!!
Oops, I think I misunderstood something. The data are in two separate tables...
April 8, 2013 at 11:14 am
EasyBoy (4/5/2013)
I have dropped the statistics using scriptdrop statistics table_name.statistics_name.
And check again using
sp_helpstats table_name.
Anyway this problem has been resolved.
Thanks for your time.
Wait! What? LOL, what was the...
April 5, 2013 at 7:16 am
shubham.saxena67 (4/2/2013)
like fn_compress(@imagebyte image) also need to decompress the same.
could you help me to...
April 2, 2013 at 1:58 pm
rajarshi_ghosh_05 (4/2/2013)
April 2, 2013 at 1:46 pm
Jeff Moden (3/1/2013)That's why I almost always expect the code to be used on a huge number of rows. There are a whole lot of developers that don't know...
March 1, 2013 at 8:20 am
amy26 (2/26/2013)
I...
February 27, 2013 at 12:44 pm
Without knowing the specifications of this design, the moment I see columns numbered numerically, I cringe. Then I cry. This design pattern usually indicates a bad design.
I would...
February 27, 2013 at 12:40 pm
Is the physical network layer between the 2 agencies private? Is it a VPN, or some tunnel variant?
If so, then the encryption layer/privacy layer is in place and I...
February 26, 2013 at 8:29 am
I prefer mine undocked. With dual screen, I keep my SSMS in the right screen, email in the left (or Visual Studio) and keep the OE undocked in the...
February 21, 2013 at 6:57 am
Jay-246689 (2/20/2013)
Is CASTing cost an additional overhead to the query? I need to optimize our database initialization and i reviewing some of the sql scripts and found out that there...
February 21, 2013 at 6:49 am
vchauhan_me (2/21/2013)
February 21, 2013 at 6:38 am
I whipped this up quick, and looking at it you would probably want to combine all the EXACTSinto one UNION etc... but I broke them out so you can see...
February 19, 2013 at 5:43 am
I would have used a multi step UNION, with one of the columns returned the rank value you need. That would be more optimal than the UDF. I...
February 19, 2013 at 5:26 am
Saw this snippet somewhere and thought it was a good solution:
DECLARE @Year INT
SET @Year =2012
SELECT months,MAX(dates) AS DT_MONTH
FROM (SELECT MONTH(DATEADD(DAY, number-1, DATEADD(YEAR, @Year-1900, 0))) AS MONTHS,
DATEADD(DAY, number-1, DATEADD(YEAR,...
February 12, 2013 at 1:12 pm
asco5 (2/8/2013)
select top 100 cause i need only the 100 first people who have the most entry
so i did
select top 100 ID,
count (*)
from [database].
.
group by...
February 8, 2013 at 7:48 am
Viewing 15 posts - 16 through 30 (of 121 total)