Viewing 15 posts - 871 through 885 (of 1,243 total)
My main current outstanding prediction is that the EU will crumble under infighting by 2050
You give it that long do you Gaz? I'm thinking at least 20 years sooner...
October 6, 2014 at 6:19 am
'$' + cast(floor(Price*DollarPrice) as varchar)
This will give you $xx. You won't be able to do any calculations on that though. If you need to do anything...
October 6, 2014 at 5:49 am
You could use a Multicast Transform from the derived column. This lets you send the data multiple ways.
The attached image shows what I mean.
October 6, 2014 at 3:26 am
I'll be heading back North tomorrow after a very informative five day BI course in London town. I'm not entirely sure whether I'll be more excited to see my...
October 2, 2014 at 3:19 pm
Sean Lange (10/2/2014)
Ed Wagner (10/2/2014)
whereisSQL? (10/2/2014)
SQLRNNR (10/2/2014)
Ed Wagner (10/2/2014)
djj (10/2/2014)
Ed Wagner (10/2/2014)
SQLRNNR (10/2/2014)
sinewTendon
Bone
Bad
Sheep
Wool
Warm
Fuzzies
October 2, 2014 at 1:27 pm
Well done Jason and Jack.
Thanks to those of you who had a look over the website for me, particularly Tom and Luis for taking the time to give such helpful...
October 1, 2014 at 12:56 pm
Luis Cazares (9/30/2014)
These are some comments with no interest on diminishing your effort.
- Design could improve, but I can't give specific ideas.--I know, it's definitely a work in progress....
September 30, 2014 at 4:47 pm
Lynn Pettis (9/30/2014)
How silver spoon can you get???
Four thousand plus points....
Anyway, could I possibly prevail upon the folks around here to do a little testing for me please. I've...
September 30, 2014 at 3:30 pm
If you enter the code above without the " you get
To just post the link enter it as below
""http://dba.stackexchange.com/questions/77016/how-to-obtain-sql-feature-list-from-the-command-line""
September 26, 2014 at 8:26 am
Now I really am confused, I'm definitely misunderstanding something.
I thought CreatedOn was in the format yyyy-mm-dd hh:mm:ss.ttt. Where does the string come from?
September 26, 2014 at 8:16 am
spectra (9/26/2014)
>>>>Remove the CONVERT and you'll be doing the date range check you want.how do you convert 26/09/2014 to Date ?
If your dates are stored as
2014-09-26 14:25:51.310
2014-09-26 12:46:42.647
2014-09-24 14:49:35.190
2014-09-24...
September 26, 2014 at 8:05 am
Good spot Chris. I'd mentally accounted for it but forgot to actually write it in.
September 26, 2014 at 7:50 am
create table #Test
(
CreatedOn datetime
,ID int identity(1,1)
)
insert into #test
select '2014-09-26 14:25:51.310' union all
select '2014-09-26 12:46:42.647' union all
select '2014-09-24 14:49:35.190' union all
select '2014-09-24 12:39:21.150' union all
select '2014-09-19 15:22:36.233' union all
select '2014-09-19...
September 26, 2014 at 7:38 am
I'm struggling to understand what you need. Is that the only row you need returning? Can you post some sample data please.
September 26, 2014 at 7:15 am
What exactly is the problem? You need to be very careful using BETWEEN with datetime. You're much better using >= and <=.
September 26, 2014 at 6:53 am
Viewing 15 posts - 871 through 885 (of 1,243 total)