Viewing 15 posts - 1 through 15 (of 210 total)
Stewart "Arturius" Campbell (9/30/2016)
Just a point of confusion in the options:
a table variable, a table in the table, or a temp...
September 30, 2016 at 3:50 am
/*(1)*/ SELECT COUNT(*) FROM #TmpCounts; -- 6 rows
/*(2)*/ SELECT COUNT(1) FROM #TmpCounts; -- 6 rows
/*(3)*/ SELECT COUNT(Column1) FROM #TmpCounts; -- 5 rows
/*(4)*/ SELECT COUNT(ALL Column1) FROM #TmpCounts; -- 5...
July 12, 2016 at 4:33 am
HappyGeek (6/22/2016)
Good question thanks Steve.
+1
June 23, 2016 at 1:34 am
webrunner (4/18/2016)
Toreador (4/18/2016)
Currently showing a 99% success rate?!?
How could someone get the question wrong? There is only one choice.
I guess maybe they clicked Submit without clicking the radio button first?
-...
April 19, 2016 at 4:08 am
CREATE SECURITY POLICY rls_CustomerFilter
ADD FILTER PREDICATE dbo.rls_customer_check(customerid)
ON dbo.CustomerAccessList;
GO
the above is not included "WITH (STATE=ON)". I thought security policy is not enabled yet and insert succeeds.
March 17, 2016 at 3:28 am
Stewart "Arturius" Campbell (2/10/2016)
Nice one, thanks SteveGiven that SETUSER is deprecated, and the last two were obviously incorrect, that left only one choice...
+1
February 11, 2016 at 12:12 am
As per my understanding, the site name is coming from #count table only,
So we can avoid the loop by writing the single select statement. to get @deep value try...
February 10, 2016 at 2:25 am
learnt something new today. thanks for the question steve.
February 10, 2016 at 12:15 am
Never used this parameter before while detaching a Database.
Learnt something new. Thanks for the question.
August 25, 2015 at 6:35 am
Koen Verbeeck (8/20/2015)
Nice question. I have to admit I prefer the UI 🙂
+1
Recently we have changed the job schedule to run for every 1 hour, so it's been little easy.
Thanks...
August 20, 2015 at 5:10 am
HI,
The below given link has very good information, please try if this can help you.
http://sqlserver-help.com/2014/07/08/help-how-to-find-cause-of-login-failed-for-user-error/
August 17, 2015 at 11:59 pm
Viewing 15 posts - 1 through 15 (of 210 total)