Viewing 15 posts - 20,521 through 20,535 (of 59,072 total)
oliver.morris (5/29/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 30, 2015 at 1:21 pm
Also, the TABLOCKX hint is valuable even on Temp Tables. It prevents the need for any lock escalation, which can take a bit of extra time depending on other...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 30, 2015 at 11:55 am
Jason A. Long (5/30/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 30, 2015 at 11:53 am
pspkshah (5/29/2015)
thanks, I have just made slite change in that, in place of minute, I take hour.
You really do need to heed Sean's warning on this. Do the DATEDIFF...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 30, 2015 at 11:47 am
TheSQLGuru (5/30/2015)
--Jeff Moden
Change is inevitable... Change for the better is not.
May 30, 2015 at 9:04 am
Nah... I think it's because you're a relative newbie to SSC and anything with an outside link is getting squashed. Of course, that didn't work on that bloody super-busy...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 30, 2015 at 12:26 am
Steve Jones - SSC Editor (5/22/2015)
phegedusich (5/22/2015)
One problem with SQL Audit: it's exposed to the sysadmin. This doesn't fly with our Audit department, so we use Guardium instead.
I agree with...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 10:00 pm
I'll also asked then if there were a way to hide you from the automatic spam-delete and to restore your other previously deleted posts.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 9:47 pm
Jason A. Long (5/29/2015)
If anyone w/ admin privileges can find my last post on this thread (index test w/ results), please de-spam it... Because, I'm not...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 9:42 pm
I was just taking exception to the "Far better than" statement. Coming from such an intelligent and well known person, people might actually believe that rather than "It Depends".
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 3:37 pm
sarath.tata (5/29/2015)
DECLARE @StartDate DATE
DECLARE @EndDate DATE
DECLARE @RotationDays INT
SET @StartDate = '01/01/2015'
SET @EndDate = '12/31/2015'
SET @RotationDays = 4
;WITH result AS
(
SELECT DATEADD(DAY, (ROW_NUMBER()...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 9:43 am
pspkshah (5/29/2015)
how can I get time difference of the following record please help,
STARTTIME ENDTIME
3:30 PM 4:30PM
7:30 PM 8:30PM
I have tried it by below query,
SELECT CONVERT(TIME,STARTTIME,108) - CONVERT(TIME,ENDTIME,108)...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 8:35 am
Rob de Vos (5/29/2015)
I use the | symbol as field seperator which is a regex special char, so the...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 7:57 am
Thanks, lshanahan. That's one of the nicer compliments I've ever had on the subject. I appreciate it.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 29, 2015 at 12:07 am
Solomon Rutzky (5/28/2015)
Now be vewy, vewy qwiet, and let's see if he takes the bait.I hope that adds some clarity. Take care, Solomon..
More than you know.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 28, 2015 at 11:36 pm
Viewing 15 posts - 20,521 through 20,535 (of 59,072 total)