Viewing 15 posts - 211 through 225 (of 429 total)
'Microsoft OLEDB provider for Oracle' is not supported on 64-bit platforms. The Oracle driver should work fine though. The fact that you are getting "0 rows found"...
October 15, 2013 at 9:21 am
Making your user a member of db_datareader will grant the user read access to the entire database.
I think you want to remove any role memberships and grant select access just...
October 15, 2013 at 9:14 am
You should definitely read that article, it is very good but the solution presented there only works for integers.
I think something like this will get you close:
WHEN ISNUMERIC(Value) = 1...
September 27, 2013 at 11:04 am
IsNumeric indicates if the data can be converted to ANY numeric data type, not just Decimal(19,6).
For instance, IsNumeric returns a 1 for "2E7", as it could be considered exponential notation....
September 27, 2013 at 10:13 am
The problem with your approach is it doesn't account for the day rolling over to tomorrow when converting to UTC time (the hour goes past midnight).
I would approach the problem...
September 17, 2013 at 7:41 am
It appears to be adjusting for time zone.
I'm in Eastern Standard Time (during daylight saving), and the @Start and @End datetime being generated are offset by 4 hours.
Specifying...
September 16, 2013 at 2:27 pm
bitbucket-25253 (9/9/2013)
Now I known why I detest using triggers.
Yet another reason. What a horrible design decision. :blink:
September 10, 2013 at 8:08 am
crussell-931424 (8/8/2013)
August 8, 2013 at 11:19 am
Excellent question.
I'm definitely going to remember this in the future.
August 8, 2013 at 9:21 am
As far as I know both are taken into account, with denies taking priority over grants.
I had this happen accidentally once when I was testing the effects of removing the...
August 7, 2013 at 9:20 am
Whoo, I learned from the last TDE question and got this one right! 😀
July 18, 2013 at 6:38 am
OCTom (7/12/2013)
July 12, 2013 at 7:38 am
Carlo Romagnano (6/19/2013)
If the statement begins with
set dateformat ymd
,the qotd would be perfect.
and an order by in the select statement. 😉
June 19, 2013 at 7:17 am
Nice question Hugo!
Unfortunately I fell for the trap in the title.
Evidentally I have more studying to do of the RCS isolation level. :ermm:
June 12, 2013 at 8:25 am
Lokesh Vij (6/9/2013)
Thomas Abraham (6/8/2013)
Didn't notice the boxes were, well, boxes. So only selected one answer, which appears to be only half the correct answer.
+1
Same here, I also marked the...
June 10, 2013 at 7:19 am
Viewing 15 posts - 211 through 225 (of 429 total)