Viewing 15 posts - 1 through 15 (of 15 total)
The way this question is asked it would be 11 hours, but I do get the confusion: that's what happens when British people try to Americanize the question, LOL. 17:05pm...
May 24, 2023 at 2:51 pm
Email had "Select @sql" on the site it said "EXEC (@SQL). In first case you get 2 statements concatenated into one, in second case you get 2 separate...
October 15, 2021 at 1:29 pm
How about this: You like the job you currently have but even though you liked your original salary after 3 years of 2.5 - 3% raises you now feel that...
April 2, 2019 at 2:00 pm
WOW! 10% got it right. Congrats! LOL
September 29, 2017 at 7:42 am
June 2, 2017 at 7:58 am
I usually first create an HTML document using some WYSIWYG (what you see is what you get) tool apply all the formatting I want through the interface and then look...
August 25, 2015 at 2:21 pm
I've never had a problem with any of the email clients. Simple HTML is recognized by all of them.
June 20, 2013 at 8:17 am
This subject is very dear to my heart - I had to do so many projects that send emails to customers. One thing I always do is create HTML templates...
June 20, 2013 at 8:15 am
skyline666 (8/27/2008)
Yes thats a good point, temporary tables only exist for the life of the stored procedure (when prefixed with one #), I temporarily forgot about that ;).
That's not exactly...
August 27, 2008 at 7:36 am
skyline666 (8/26/2008)
ian treasure (8/26/2008)
Shouldnt this beSELECT C.CATID, COUNT(*)
FROM #DATA DINNER
JOIN #CATEGORY C ON (C.VAL1 = DINNER.VAL1) OR (C.VAL1 IS NULL)
GROUP BY C.CATID
(was ON C.VAL1 = D.VAL1)
Nope, its this:
SELECT...
August 26, 2008 at 10:39 am
"Format C:\ COMPLETE" Takes me back to DOS days pranks. Nowadays we just add couple of zeros to the end of daily sales numbers. π
July 14, 2008 at 8:08 am
Simon Facer (5/27/2008)
declare @C nvarchar(max)
set @C = N'hello' + CAST(replicate('-',8000)...
May 27, 2008 at 3:27 pm
About size of nvarchar(max)
I tried this:
declare @C nvarchar(max)
set @C = N'hello' + replicate('-',8000)
print len(@c)
the result was still 4000. Can someone explain why it wasn't more since...
May 27, 2008 at 11:32 am
Another alternative to drag-and-drop is click on word Columns then Ctrl+C to copy then in query window position your coursor where it should go and Ctrl+V to paste. This way...
April 30, 2008 at 8:01 am
That reminds me of an old joke:
Whatβs the difference between mechanical engineer and computer geek?
Mechanical engineer thinks Kilobyte is 1000 bytes.
And computer geek thinks kilometer is 1024 meters. π
April 4, 2008 at 7:57 am
Viewing 15 posts - 1 through 15 (of 15 total)