Viewing 15 posts - 316 through 330 (of 516 total)
If you just need to know the name of the jobs, use the query below (replace name_of_your_database):
SELECT js.job_id,
name
FROM msdb.dbo.sysjobsteps js
...
October 4, 2012 at 3:47 am
demonfox (10/4/2012)
Lokesh Vij (10/3/2012)
SELECT c.Cnum,c.D1,c.D2,c.D3,c.D4
FROM #cnums c JOIN #dnums d
ON c.D1 = d.D OR c.D2 = d.D OR...
October 4, 2012 at 1:09 am
One more way to achieve the result:
SELECT c.Cnum,c.D1,c.D2,c.D3,c.D4
FROM #cnums c JOIN #dnums d
ON c.D1 = d.D OR c.D2 = d.D OR c.D4 = d.D
GROUP...
October 3, 2012 at 10:57 pm
kapil190588 (10/3/2012)
How in case ofLEN(CONVERT(VARCHAR,@a)) AS 'Converted'
, LEN(CAST(@a AS VARCHAR)) AS 'Cast'
It is returning 30?
Can you plz exlpain.
Please check my previous post, Praveena has the same question..
October 3, 2012 at 4:48 am
Praveena-487125 (10/3/2012)
October 3, 2012 at 3:55 am
Interesting question Dwain..Kept me thinking for a while π
October 2, 2012 at 10:14 pm
Thanks for this easy point Ron in the middle of the week π
October 2, 2012 at 10:05 pm
L' Eomot InversΓ© (9/25/2012)
Good question.Nice blg entry too, apart from "BACKUP/BACKUP" instead of "BACKUP/RESTORE".
Thanks Tom!
I have updated the blog now π
September 25, 2012 at 11:33 pm
Hugo Kornelis (9/25/2012)
However, I did find myself staring at the wording for a bit before answering - and hoping that my interpretation was the correct one. The...
September 25, 2012 at 2:52 am
A little attempt from me to make "DDL inside transactions" more informative. Hope you all like it π
http://sqlpathy.wordpress.com/2012/09/25/myth-truncate-cannot-rollback/
September 24, 2012 at 10:19 pm
CDC is a good option to work with in such scenario. Check the below link for details on what CDC is and how this can be implemented.
September 20, 2012 at 10:41 pm
Viewing 15 posts - 316 through 330 (of 516 total)