Viewing 15 posts - 16 through 30 (of 636 total)
October 23, 2018 at 2:05 pm
October 23, 2018 at 2:03 pm
October 23, 2018 at 1:39 pm
October 23, 2018 at 1:29 pm
EXEC sp_MSforeachdb 'SELECT ''?''...
October 23, 2018 at 12:25 pm
Oh hey, i found my own answer.... DONE !
EXEC sp_MSforeachdb 'SELECT ''?'' + ''.'' + S.name + ''.'' + P.name as...
October 23, 2018 at 12:13 pm
Thank you Folks! No further help needed .... This solution works.. Run and see
IF Object_id('tempdb..#t') IS NOT NULL
DROP TABLE #t;...
October 1, 2018 at 11:20 am
October 1, 2018 at 11:18 am
WITH xSeptember 28, 2018 at 2:02 pm
September 5, 2018 at 12:06 pm
August 1, 2018 at 1:00 pm
Done! Finally!
I tested against single spans as well... Works beautifully
If object_id('tempdb..#DLT') IS NOT NULL DROP TABLE #DLT;
CREATE TABLE #DLT( emp VARCHAR(13), St...
August 1, 2018 at 11:57 am
bmg002 - Wednesday, August 1, 2018 11:13 AMWas my solution no good? It seemed to work with the data you provided...
That was...
August 1, 2018 at 11:14 am
Viewing 15 posts - 16 through 30 (of 636 total)