Viewing 13 posts - 1 through 13 (of 13 total)
I have managed to answer my own question. There were accounts that were local admins that had implied admin access. These were not being blocked out by the builtinAdminsAreServerAdmins...
October 7, 2014 at 2:09 am
I would say yes. but it depends on Index maintenance.
the yes is because an ideal clustered index should be small, unique, static and ever increasing(in a sequence). Unique identifiers are...
August 8, 2014 at 1:07 am
Hi Dave,
Luckily SQL holds a Pivot and unpivot function that will do the trick nicely.
if you follow this link then it will give you the details that you need....
August 7, 2014 at 2:58 am
Koen Verbeeck (8/7/2014)
jonidotcodotuk (8/7/2014)
Jeff Moden (8/6/2014)
Ed Wagner (8/6/2014)
Please write the T-SQL code to count from 1 to 10.
There are many correct answers and how they...
August 7, 2014 at 2:37 am
Jeff Moden (8/6/2014)
Ed Wagner (8/6/2014)
Please write the T-SQL code to count from 1 to 10.
There are many correct answers and how they answer can tell...
August 7, 2014 at 2:01 am
Hi Duncan,
you first need to decide which days are weekend by using the datepart function and create a list of every day between the 2 stating which is a weekend....
April 10, 2014 at 5:33 am
Hi Steve,
it looks to me as though you are trying to update the QTY column using a sub query that brings back more than one column. Change the select to...
April 10, 2014 at 5:10 am
Tell me about it. I'd love to use them more but they're so prohibitive
April 9, 2014 at 2:04 pm
The error message is because i forgot to give the max column a name, each column in a temp table needs a name. replace it with "max(discount) as Discount "...
April 9, 2014 at 5:18 am
looking at the code is the exhibit table used in the select? i could see one column sectioned out if thats not needed you might be best getting rid of...
April 9, 2014 at 4:01 am
Hi Pbaldy,
unfortunately there are quite hefty restrictions on what can't be included in an indexed view an a union is one of them, please see the books online article below...
April 9, 2014 at 3:01 am
Hi Grasshopper,
this very much looks like a join problem, if you've looked in your data and found that there are multiple discounts for a single part you are on the...
April 9, 2014 at 2:05 am
4/5 isn't bad. especially when the last one was the trick question. There was no set showplan on the query and nothing to say that you were trying to bringing...
April 2, 2014 at 1:25 am
Viewing 13 posts - 1 through 13 (of 13 total)