Viewing 15 posts - 796 through 810 (of 1,243 total)
Grant Fritchey (12/5/2014)
I didn't know we had...
December 5, 2014 at 8:10 am
It all makes total sense now. The biggest problem I had was missing the bit about setting the date one day forward. As soon as I spotted that...
December 5, 2014 at 1:12 am
Thanks Don, I'm completely with you now. We do a lot of date\time queries here and most of the time we either include the time or cast values as...
December 4, 2014 at 8:49 am
I'm really not following you here.
declare @startdate datetime = '2014-12-04'
declare @enddate datetime = '2014-12-05'
create table #EventHeader(
HistoryIDint primary keynot null
,DateTimeHappened datetimenot null
)
insert into #EventHeader
select 100001, '2014-12-01' union all
select 100002, '2014-12-01'...
December 4, 2014 at 8:27 am
Thanks Grant. It's not massively obvious but you need to generate an interactive html report to see the differences. It's actually pretty straightforward when you know that!
December 4, 2014 at 5:36 am
I've just returned to a project I was working on some months ago about comparing stored procs and everything I found brought me to Red Gate Compare.
@Grant, seeing...
December 4, 2014 at 4:25 am
ScottPletcher (12/3/2014)
BWFC (11/27/2014)
One other thing, be careful using BETWEEN for date range queries. You're usually better using
where
[Date] >= @startdate
and
[Date] <= @enddate
December 4, 2014 at 1:36 am
Gary Varga (12/3/2014)
ccd3000 (12/2/2014)
December 3, 2014 at 6:18 am
Ed Wagner (12/3/2014)
Jim_K (12/2/2014)
djj (12/2/2014)
Ed Wagner (12/2/2014)
djj (12/2/2014)
Ed Wagner (12/2/2014)
whereisSQL? (12/2/2014)
Ed Wagner (12/2/2014)
SQLRNNR (12/2/2014)
Ed Wagner (12/2/2014)
SQLRNNR (12/2/2014)
Stuart Davies (12/2/2014)
Ed Wagner (12/2/2014)
crookj (12/1/2014)
SQLRNNR (12/1/2014)
Sean Lange (12/1/2014)
Steve Jones - SSC Editor (12/1/2014)
WorkAvoidance
No...
December 3, 2014 at 5:38 am
I'm using BIDS but I probably should have said before that I'm actually working on a jumpbox. Everything's hunky-dory when I build cubes locally but I'm trying to build...
December 3, 2014 at 5:11 am
Are you modifying the view or updating the source tables?
If you're just modifying the results returned in the view, and assuming the the phone column is a varchar the code...
December 2, 2014 at 9:04 am
Fair enough, I was just wondering if'd missed something 🙂 I think that QUOTENAME is going to be something that will make my life easier though.
December 2, 2014 at 8:57 am
select yearMonth
,BariatricSurgery
,BISurgeries
,EDTransfersToBI
,GYNOncProcedures
,GYNOncVisits
,InpatientTransfersToBI
,OPVisitsByBI
,PercentAdmitsFromED
,ThoracicSurgery
from
(
select
YearMonth
,metric
,data
from
dbo.test t
) p
pivot
(
max(data)
for metric
in (
BariatricSurgery
,BISurgeries
,EDTransfersToBI
,GYNOncProcedures
,GYNOncVisits
,InpatientTransfersToBI
,OPVisitsByBI
,PercentAdmitsFromED
,ThoracicSurgery
)
) pvt
A common or garden pivot will do the same too. As a genuine question on...
December 2, 2014 at 8:44 am
If you can post some sample data and examples of what you've already tried it'll be easier to see want you want and give you an answer. Have a...
December 2, 2014 at 3:46 am
I'm really not sure what you mean by 'doing it in one select'. As far as I can see you'll have to check the preceding row in order to...
December 1, 2014 at 7:52 am
Viewing 15 posts - 796 through 810 (of 1,243 total)