Viewing 15 posts - 901 through 915 (of 1,251 total)
Hi Jagadeesh,
welcome to the forum. I'm not sure what your question is there. If you read the article in my signature it will make it much easier to...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 24, 2014 at 3:17 am
Do you mean how do you show a rounded time in the end date column?
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 24, 2014 at 3:12 am
I looked at the question and thought that was a lot to do for first thing in the morning. Then I looked at it again and saw what the...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 24, 2014 at 1:11 am
What Sean says.
It'll be much easier to suggest which to use if you can give us some sample data and tell us what you want to do with it.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 23, 2014 at 7:32 am
That really depends on what you're trying to achieve. Both could be correct (or incorrect).
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 23, 2014 at 7:23 am
Hide
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 23, 2014 at 4:44 am
girl_bj (9/23/2014)
I get this error:The data types time and datetime are incompatible in the greater than or equal to operator.
Which answer are you getting the error on?
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 23, 2014 at 2:53 am
SELECT
SampleDate,
CAST(SampleDate AS time),
SampleID
FROM
DateTimeQuery
WHERE
CAST(SampleDate AS time) >= dateadd(hh, datediff(hh, 0, getdate()) - 1, 0)
AND
CAST(SampleDate AS time) < dateadd(hh, datediff(hh, 0, getdate()), 0)
That will return the data...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 23, 2014 at 2:43 am
Ed Wagner (9/22/2014)
TomThomson (9/22/2014)
GilaMonster (9/22/2014)
Koen Verbeeck (9/22/2014)
Eirikur Eiriksson (9/22/2014)
There are some other topics missing, some points also went missing, all happened more or less at the same time.😎
Iek, now that...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 6:47 am
There's a function called InstRev that might do it. I've never used Access in my life though so I can't be more helpful than that I'm afraid.
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 5:22 am
There would have to be some kind of memorial service.
I'd love to be a fly on the wall for the conversation when somebody explained that it wasn't backed up...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 5:04 am
If you can create and alter tables then you're halfway there. You'll need to do both to get this done. The most important thing you need to do...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 5:02 am
declare @String as varchar(20) = 'Rambla, Tony G.'
select left(@string,len(@string)+1-charindex(' ',reverse(@string)))
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 4:10 am
I was worried my membership had been revoked and there was something somebody wasn't telling me!
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 4:01 am
Hi Tuan,
welcome to the forums. What you're asking to do is theoretically straightforward but there are a couple of traps for the unwary. The principal difficulty is the...
How to post a question to get the most help http://www.sqlservercentral.com/articles/Best+Practices/61537
September 22, 2014 at 3:56 am
Viewing 15 posts - 901 through 915 (of 1,251 total)