Viewing 15 posts - 76 through 90 (of 163 total)
I don't have Italian Windows / Sqlserver settings, so it's a bit of guessing, but ...
I think the problem could be in the dot in the timepart.
Did you try...
August 2, 2007 at 2:16 am
In the Netherlands the tax credit is EUR 6000 (ca $8000) for a Prius !!
But we pay much more tax on our cars. And also a lot of tax on gas ($8...
May 30, 2007 at 2:07 am
OK, you are right.
The smalldatetime values still has a time part, set to 0 (00:00:00.000).
April 2, 2007 at 7:11 am
If you want the day only, without the time part you could use:
convert(char(8), getdate(), 112)
There are other solutions, but I like this one.
April 2, 2007 at 1:11 am
The purple color is back again. Thank you for the fast implementation.
March 29, 2007 at 10:14 am
You may use "convert" to get a date in the new format.
e.g.
SELECT convert(CHAR(8), getdate(), 112)
(gives 20070122)
When you want the date quoted then you could use:
SELECT quotename(convert(CHAR(8), getdate(), 112),'''')
(gives '20070122')
January 22, 2007 at 3:46 am
Mohammed, thank you for your help.
I'll look in BOL.
December 15, 2006 at 2:32 pm
Mohammed, thank you for your answer.
I thought that maybe there is a "hidden" sql agent somewhere, and that I didn't found the way to activate the sql agent.
So I have to...
December 14, 2006 at 12:39 pm
Found out what my problem was (it's solved now): the correct codec wasn't installed. The commercial has another format then the movie. Thus, after the known format of the commercial,...
November 3, 2006 at 5:10 am
I have also problems viewing the presentations. It stops after the commercial. I tried more then once.
I'm sick of looking at a man buying sanitary napkins for his daughter,...
September 21, 2006 at 1:58 am
At a beginners level you could look at:
http://www.w3schools.com/sql/default.asp
It's regular Sql, not TSQL, but for a beginner there is not so much difference.
BOL is always good, but it is not so easy...
August 10, 2006 at 1:54 am
Chinn,
Thank you for your answer.
My problem is that after the commercial I see nothing. I waited for 20 minutes, and nothing hapend (I have fast internet, the commercial is loaded in...
August 2, 2006 at 8:33 am
As a software developer I will use SQL Server 2005 Express for a update of a Paradox database from 1998 with 30 users (its amazing that this is possible). In this...
July 21, 2006 at 7:21 am
I remember the days we had to stay inside. The Tsernobyl cloud came over. Nothing to see, but it was dangerous outside (as it was inside the house, but they...
June 1, 2006 at 2:46 am
OK, that is precise what I meant with my second solution.
But it gives a problem when the string is empty, or contains no backslash.
So,...
March 2, 2006 at 2:30 am
Viewing 15 posts - 76 through 90 (of 163 total)