Viewing 15 posts - 1,291 through 1,305 (of 1,999 total)
I'd also suggest that you have a carefull look in books online at the reference material for
set concat_null_yields_null on
set concat_null_yields_null off
these change the default behaviour of string concatenation involving...
May 4, 2012 at 9:38 am
SELECT l.Id
, MAX(CRM.dbo.fn_ConvertSFDateTime(e.CreatedDate)) AS lastevaluationdate__c
, e.ProductId__c AS lastevaluationproduct__c
FROM Customers.dbo.Evaluation__c AS e
INNER JOIN Customers.dbo.Lead AS l...
May 4, 2012 at 9:10 am
so the format of your query is
select x,y,max(z)
from mytable
where x<5
GROUP BY x,y
you must include all columns (except those you are aggregating) into the group by clause
May 4, 2012 at 9:06 am
oh - also if you have the budget for in house training then you might want to talk to a company based in Nottingham called "Quantix"
I worked for them for...
May 4, 2012 at 9:04 am
if you're planning to learn then aim for the OCP qualification, you'll pick up a lot more if you aim at passing the exam
May 4, 2012 at 9:01 am
littlelisa1111 (5/4/2012)
SELECT l.Id, CRM.dbo.fn_ConvertSFDateTime(e.CreatedDate) AS lastevaluationdate__c, e.ProductId__c AS lastevaluationproduct__cFROM Customers.dbo.Evaluation__c AS e INNER JOIN
...
May 4, 2012 at 8:50 am
capn.hector (5/4/2012)
Eugene Elutin (5/4/2012)
Jeff Moden (5/3/2012)
michael vessey (5/2/2012)
does the following count as a loop?INSERT INTO dbo.yourTable default values
go 100
??:-P??
BWAAAA-HAAAA!!!!! Ask that question on the receiving end of an interview...
May 4, 2012 at 8:30 am
Steve Thompson-454462 (5/3/2012)
I think thats fine if you are only storing the role and thats as far as you go with it, so I'm ok with this. If you are...
May 4, 2012 at 2:18 am
rabisco (5/3/2012)
<p style="text-align: justify;">Embedded link <a class="productLink href=";" macro="productLink" code1="1055288" uid="_13360741834971941">code1</a>sku</p>
I'm trying to detemine the position of "<a class="productLink" working backwards from the position of "code1="
Thanks
...
May 4, 2012 at 2:03 am
nice - not sure it's got too many practical implementations other than showing a junior how to run and correct checkdb, but it's still nice to have in your arsenal
May 4, 2012 at 1:48 am
Cadavre (5/2/2012)
michael vessey (5/2/2012)
May 2, 2012 at 8:25 am
mohan.bndr (5/1/2012)
If the current buffer hit cache ration is consistently above 99% then, Is it benefit to adding RAM to a server to boost hardware performance of sql server? why?
And...
May 2, 2012 at 8:22 am
to find the first instance of a character in a string use "charindex"
to find the last instance use a combination of charindex and REVERSE
select LEN(col3) - CHARINDEX('A',REVERSE,col3)) as last_a, CHARINDEX('B',col3))...
May 2, 2012 at 8:16 am
does the following count as a loop?
INSERT INTO dbo.yourTable default values
go 100
??:-P??
May 2, 2012 at 8:09 am
Viewing 15 posts - 1,291 through 1,305 (of 1,999 total)