Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)

  • RE: SSAS Role not working for all memberships

    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...

  • RE: Clustered index in uniqueidentifiers column

    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...

  • RE: Need help pivoting tables

    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....

  • RE: SQL DBA high ended question (5+ years’ experience)

    Koen Verbeeck (8/7/2014)


    jonidotcodotuk (8/7/2014)


    Jeff Moden (8/6/2014)


    Ed Wagner (8/6/2014)


    How about a very simple one?

    Please write the T-SQL code to count from 1 to 10.

    There are many correct answers and how they...

  • RE: SQL DBA high ended question (5+ years’ experience)

    Jeff Moden (8/6/2014)


    Ed Wagner (8/6/2014)


    How about a very simple one?

    Please write the T-SQL code to count from 1 to 10.

    There are many correct answers and how they answer can tell...

  • RE: 20 day count

    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....

  • RE: Update FIELD from Select Aggregated Statement on second table

    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...

  • RE: Proper index for indexed view

    Tell me about it. I'd love to use them more but they're so prohibitive

  • RE: Duplicate records on a join.

    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 "...

  • RE: Duplicate records on a join.

    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...

  • RE: Proper index for indexed view

    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...

  • RE: Duplicate records on a join.

    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...

  • RE: A Questionable Trigger

    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...

Viewing 13 posts - 1 through 13 (of 13 total)