Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pat718

    SQL Server 2012 Syntax Error

    I am trying to alter a table to add a column and than update that column with integer values from 0 to 5. I keep getting a syntax error near my WHERE clause. Here's is what I wrote: alter table aggregator_table add access_level integer WHERE access_level == 0 and access_level<=5 Can...
  2. pat718

    Excel 2013 Power Query

    SkipVought, I don't know how to be more clear. I said that I am trying to calculate a minimum value in Excel Power Query. Of course, the data is Excel. I am just trying to get the minimum values of a column of ages. If you need anymore clarification than that then just don't respond...
  3. pat718

    Excel 2013 Power Query

    I don't know. If Table.Min will work to get a minimum value than I guess so. I just don't know how to get the minimum value in Power Query.
  4. pat718

    Excel 2013 Power Query

    I don't have anything to post. I am simply trying to get the formula for deriving the minimum value in Power Query.
  5. pat718

    Excel 2013 Power Query

    Yes, with Power Query. What formula do I need for getting the minimum value in a column. The MIN that is used in Excel does not work.
  6. pat718

    Excel 2013 Power Query

    Hi, I have different ages of insurance customers. I need to get the minimum age of a group of customers from a specific insurance carrier. I hope that makes sense. There are several insurance carries that contract out to several "companies" in order to decide what insurance premium should a...
  7. pat718

    Excel 2013 Power Query

    I am trying to calculate a minimum value using Power Query. The MIN that can be used in Excel does not work in Power Query. Can some one help me? Thanks.
  8. pat718

    Excel 2013 Power Query

    I am trying to derive a minimum of numbers but the MIN that is used in Excel does not work for Excel Power Query. Does anyone else have any experience with Power Query for Excel 2013? thanks.
  9. pat718

    List Users and Roles of a table

    This is not working. I only get the column names with no rows of data. Just the column names when I run this query: select Grantee,'Granted Through Role' as Grant_Type, role, table_name from role_tab_privs rtp, dba_role_privs drp where rtp.role = drp.granted_role and table_name = 'DATA_MART'...
  10. pat718

    List Users and Roles of a table

    Thanks again Bill. Now I am only getting column names with no rows of data. The column names I am getting are GRANTEE, GRANT TYPE, ROLE, TABLE_NAME. I only need to see all the users and roles for the data_mart table. Thanks.
  11. pat718

    List Users and Roles of a table

    Hi Bill, Thanks for your help. But I need to see the users and roles that have access to my data_mart table. Thanks.
  12. pat718

    List Users and Roles of a table

    I have been trying to figure out how to do this for a few days. I thought this would be simple but I keep getting an error. I am trying to list all of the roles AND users that have access to a table in Oracle 11g. I am new to this but I tried this: SELECT * FROM all_users, dba_role_privs...

Part and Inventory Search

Back
Top