Viewing 15 posts - 556 through 570 (of 928 total)
Similair to the wood-carving device - rou-ted.
September 4, 2012 at 3:11 am
ChrisM@Work (9/4/2012)
BrainDonor (9/4/2012)
ChrisM@Work (9/4/2012)
David Burrows (9/4/2012)
Fal (9/3/2012)
Quick poll: how would you pronounce the word "Route"?I'll explain why later, if I'm not too embarrassed. :blink:
Steve.
I am English so naturally /ru?t/
Likewise...
September 4, 2012 at 2:44 am
ChrisM@Work (9/4/2012)
David Burrows (9/4/2012)
Fal (9/3/2012)
Quick poll: how would you pronounce the word "Route"?I'll explain why later, if I'm not too embarrassed. :blink:
Steve.
I am English so naturally /ru?t/
Likewise - but...
September 4, 2012 at 2:25 am
DECLARE @Version char(40)
SET @Version = 'fiesta zetec 1.2';
SET @Version = CAST(@Version AS Char(38)) + 'BT';
SELECT @Version;
One method - there will be others.
September 3, 2012 at 4:40 am
DECLARE @Version Varchar(50)
SET @Version = 'fiesta zetec 1.2';
SET @Version = @Version + ' BT';
SELECT @Version;
Or have I misunderstood the question?
September 3, 2012 at 3:16 am
Just to clarify laurie-789651's statement - you'd need to add a column with a default value of GetDate(). This would be a time-stamp, as oppose to a timestamp, which is...
August 30, 2012 at 7:54 am
Me too - quite a bit of hunting to get the right answers. Thanks for the interesting question.
August 30, 2012 at 1:20 am
GilaMonster (8/22/2012)
Nitpicking I can take, this is getting well beyond that.
I have to say Gail that it was a fascinating thread up to a point, and your examples and explanations...
August 22, 2012 at 4:15 am
Thanks for letting me know the cause, I wouldn't have thought of that particular scenario!
August 21, 2012 at 7:17 am
Correct, and the OP has already discovered that - http://www.sqlservercentral.com/Forums/Topic1347590-1292-1.aspx#bm1347662.
August 21, 2012 at 7:16 am
Cannot perform a differential backup for database "ReportServerTempDB", because a current database backup does not exist
Have you taken a FULL backup of this database?
August 21, 2012 at 1:15 am
Also known as a Compound Operator, and there are several:
August 16, 2012 at 10:21 am
Although a bit dated (no pun intended) there is an interesting article by Robyn Page for various date and time conversions - http://www.simple-talk.com/sql/learn-sql-server/robyn-pages-sql-server-datetime-workbench/.
August 16, 2012 at 1:25 am
The easiest way is probably to use the CSV Splitter function, by Jeff Moden (with some assistance from others) - http://www.sqlservercentral.com/articles/Tally+Table/72993/.
August 16, 2012 at 1:17 am
Viewing 15 posts - 556 through 570 (of 928 total)