Viewing 15 posts - 2,176 through 2,190 (of 15,381 total)
Luis Cazares (10/27/2015)
October 27, 2015 at 12:55 pm
David 76709 (10/27/2015)
That doesn't quite do it. I am still getting a NULL where the values of date_serial are not present in both tables:
date_serial ...
October 27, 2015 at 10:11 am
David 76709 (10/27/2015)
October 27, 2015 at 9:20 am
Tara-1044200 (10/27/2015)
SELECT DISTINCT a.RevID, indexdate, transadate
FROM temp1 AS a
INNER JOIN temp2 AS d ON...
October 27, 2015 at 9:14 am
Jayanth_Kurup (10/26/2015)
just noticed most spam is in SQL Server 2008 - General forum , might help isolate the problem.
Seems to be moving around. A week or two ago it was...
October 27, 2015 at 7:23 am
pmb88 (10/26/2015)
October 26, 2015 at 2:37 pm
However many of the spammers are not posting here directly as you and I have. They are using some bug that lets them submit many posts, even as unapproved users.
Sheesh...
October 26, 2015 at 2:17 pm
Jeff Moden (10/25/2015)
October 26, 2015 at 7:36 am
jbalbo (10/21/2015)
I am using the following "MySortedRows" routine
...
select count(icd10)as counticd10 ,icd10
,ROW_NUMBER() over (order by count(icd10) desc) as Row
,case when ROW_NUMBER() over (order by count(icd10) desc) > 5 then...
October 22, 2015 at 7:55 am
Another highly likely issue for performance is the lack of normalization. You have to join to the same table over and over. If this was properly normalized that wouldn't be...
October 22, 2015 at 7:52 am
gentong.bocor (10/17/2015)
October 21, 2015 at 7:24 am
celticpiping (10/16/2015)
I'm trying to do the following:
update a tables value(a single column), based on a query of another database, using
a common column.
Here's what I've cooked up so far:
Declare @trackingNo nvarchar...
October 16, 2015 at 2:10 pm
gentong.bocor (10/16/2015)
Table1: MasterFormula
NoDescriptionFormula
1Occupancy
2Leased
3Rate Consumed
4Rate street lighting
5AVG Installed Capacity
6Consumed a: Minimum Charges
7Consumed a:...
October 16, 2015 at 7:38 am
Koen Verbeeck (10/16/2015)
Easy one. Got it wrong though because I wasn't paying attention. Time for the weekend!
Same here. Oops!!
October 16, 2015 at 7:33 am
SQLPain (10/15/2015)
I read it somewhere merge statement has a less complicated code to write. which would be better in my case, merge or update? merge is getting...
October 15, 2015 at 3:00 pm
Viewing 15 posts - 2,176 through 2,190 (of 15,381 total)