Viewing 15 posts - 391 through 405 (of 928 total)
GilaMonster (7/13/2015)
Yes, yes, yes, yes!!!!!!!!Congratulations. You have complied with the requirements prescribed for your degree, and are cordially invited to the graduation ceremony
Congratulations indeed.
July 13, 2015 at 3:34 am
Yes, PASS UK isn't well organised. I found out about by chance, having decided to search on the PASS website for anything in trhe UK.
July 8, 2015 at 6:04 am
Out of idle curiosity - is anybody else from the SSC clan attending the Manchester SQL Saturday http://www.sqlsaturday.com/418/eventhome.aspx?
July 8, 2015 at 3:14 am
GilaMonster (7/2/2015)
Do you get the feeling that IT people, especially ones at the top-end of the field, are...
July 3, 2015 at 2:01 am
DECLARE @where_clause VARCHAR(100);
DECLARE @CurCaptureDate DATETIME;
SET @CurCaptureDate = GETDATE();
SET @where_clause = '';
SET @where_clause = @where_clause + CHAR(10) + ' AND CD.CaptureDate = ''' + CONVERT(VARCHAR(25),@CurCaptureDate ) +''''
SELECT @where_clause
Look at the number...
July 2, 2015 at 2:17 am
Brandie Tarvin (6/29/2015)
Someone pass the internet cookies. They don't affect bloodwork, right?
Bleargh. Feed...
June 29, 2015 at 6:11 am
Professor of Lego, anyone?
http://www.iflscience.com/environment/university-cambridge-recruiting-professor-lego
June 24, 2015 at 1:32 am
GilaMonster (6/23/2015)
WayneS (6/23/2015)
Brandie Tarvin (6/23/2015)
Click it and you'll...
June 24, 2015 at 1:28 am
For those that have an interest in martial arts - specifically the Katana.
An intersting video of Machii Isao, assisting in the configuration of an industrial robot, so it can demonstarte...
June 15, 2015 at 5:46 am
Thanks Gail, it will be a day or two before I have it written up.
June 1, 2015 at 8:42 am
Back in February Paul Randal decided it would be interesting to mentor 54 people at the same time. Like he doesn't have enough to do. http://www.sqlskills.com/blogs/paul/mentoring-class-2015/
One of those individuals was...
June 1, 2015 at 8:12 am
ramana3327 (5/17/2015)
We have installed 2014 sql server. We have currently 2008r2. We have to run the real time report. So we need to set up transactional replication b/n those two...
May 18, 2015 at 1:23 am
Yes, although you may have to play with the format file, depending upon the differences.
Have a look at this article on using the format file - http://www.sqlservercentral.com/articles/BCP+(Bulk+Copy+Program)/105867/
May 15, 2015 at 1:18 am
Luis Cazares (5/12/2015)
SELECT STUFF( CONVERT( char(11), GETDATE(), 0), 5, 5, '')
,STUFF( CONVERT( char(11), GETDATE()), 5, 5, '')
It took me a few seconds to understand that one...
May 13, 2015 at 1:32 am
SELECT LEFT(DATENAME(MONTH,GETDATE()),3) + ' ' + RIGHT('00' + CAST(YEAR(GETDATE()) AS VARCHAR),2)
May 12, 2015 at 5:28 am
Viewing 15 posts - 391 through 405 (of 928 total)