Viewing 15 posts - 796 through 810 (of 1,250 total)
I'm looking at this from a very different angle. This is my first tech job, to which I came 18 months ago on a long route through tourism, retail,...
December 12, 2014 at 6:49 am
Ed Wagner (12/12/2014)
SQLRNNR (12/12/2014)
BWFC (12/12/2014)
Ed Wagner (12/12/2014)
richxs (12/12/2014)
SQLRNNR (12/11/2014)
Stuart Davies (12/11/2014)
Ed Wagner (12/11/2014)
Stuart Davies (12/11/2014)
SQLRNNR (12/11/2014)
curmudgeonScrooge
Humbug
Mint
Forge
Steel
Panther
Pink
Purple
Deep
December 12, 2014 at 5:46 am
Ed Wagner (12/12/2014)
richxs (12/12/2014)
SQLRNNR (12/11/2014)
Stuart Davies (12/11/2014)
Ed Wagner (12/11/2014)
Stuart Davies (12/11/2014)
SQLRNNR (12/11/2014)
curmudgeonScrooge
Humbug
Mint
Forge
Steel
Panther
December 12, 2014 at 5:12 am
Carlo Romagnano (12/11/2014)
Extremely easy!The answer is in the title!
😀
The answer might be in the title, but as a newbie I went through my usual process of reading the question, picking...
December 11, 2014 at 1:16 am
Have a look at this page[/url] it'll point you in the right direction. We can't do much else without some input from you though. Can you post some...
December 8, 2014 at 4:10 am
The script file works fine and exporting to a csv works fine for the other columns I tried it on, it just seems not to like the binary data for...
December 5, 2014 at 8:40 am
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
Viewing 15 posts - 796 through 810 (of 1,250 total)