Automatic Refresh of a Merged Power Query giving 'Table Not Registered' error

Scenario: I have 5 tables in my Azure VM SQL database associated with my ERP system. I have loaded all 5 tables into a 'Build Excel' workbook, merged the tables together and created a dataset that my users will be using.  From that 'Build
Excel' workbook - I published to the BI catalog a data set simply called 'Customer information and Statistics' - This is searchable by my users and they don't have to go through the effort of combining the 5 tables.
I have a published workbook that uses the 'Customer Information and Statistics' data set and nothing else.  I tried to schedule a refresh of the data and it failed (below is the error when I did a manual refresh):
OnPremise error: Sorry, the data source for this data connection isn't registered for Power BI. Ask your Power BI admin to register the data source in the Power BI admin center. An error occurred while processing table 'Customer Information and Statistics'.
The current operation was cancelled because another operation in the transaction failed.
So, going down that rabbit hole, I began the process of 'registering' this in Power BI - however, when I copied in the connection string it began walking me through a process of providing credentials to the 5 tables in my SQL server - that are already exposed
in my main data Sources.  I figured I would continue and tried to use the service account credentials that my main data sources use and it would not properly authenticate.
Taking a step back it prompted a few questions:
Why am I being asked to register these 5 merged data sources that are already exposed in my base data sources?
Is my approach of creating 'Friendly named' Merged datasets for my users an incorrect approach?
Is there a different method I should be using to establish autorefresh on Merged datasets in these published workbooks using Power Query?
Thanks for the help -
Tom Grounds

Tom, can you submit this as a bug in the UI via the Smile Frown button?
Thanks!
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • Refresh Pivot Bug in Power Query version 2.16.3822.242

    I have an Excel file with Power Query and several Pivot Tables built from the Power Query data. The Pivots are built from the table loaded to a worksheet, and there is a timeline date slicer connected to all those various Pivot Tables.
    In build 2.16.3822.242, refreshing the Pivot Table (either by right-click/Refresh, or programmatically via macro) causes the date timeline slicer to disappear (literally be deleted from the sheet).  The Pivot Refresh succeeds fine.
    This does not occur when using Power Query Version: 2.16.3785.242. So for the time being, my only workaround is to avoid installing the newer build.
    Any ideas what's causing it?  I told my coworker (the primary user of the file) that she could still use the file and go filter every pivot's date range separately, rather than the slicer, but that is laborious and for now she is just going to remote-desktop
    into a computer that doesn't have build 3822 installed yet.
    Shawn Keene

    Hey Ed, I apologize for un-proposing your answer so quick, I was on my Windows Phone but the forum loading spinner wouldn't leave the text entry field, so I couldn't input a reply until I got home.
    I actually found a solution just today. This may not be the 'only' solution, but it worked well.  When I had previously thought I had a solution, it only 'worked' because my subsequent refresh after making the table change didn't add any new rows of
    data (all the rows it would have returned that day were already there).  Today I made the change and then refreshed, and the new rows were formatted as the Power Query intended them to be.
    The settings I used were to set the table to "do not preserve formatting" and to "overwrite existing cells for new data, clear unused cells". Now my inserted Power Query table is plain white (no banded lines or colors), but I don't care
    because it's on a hidden sheet that no one will ever see.
    Here's the table settings that seemed to work well for me.
    And to be honest (although I haven't extensively tested), I think this was only a problem if the table was created using an old version of Power Query, then refreshed with the new version.  Anyway, now I can easily refresh my Query and then the Pivot
    from it without trouble.
    And since I suck at brevity:  I also think it'd be beneficial for me to re-create these workbooks and have the Power Query only add the data to the data model, and source the Pivot directly from that, rather than indirectly source the pivot from a populated
    table. Basically save a step, and then the Pivot will refresh together with the connection, rather than having to be refreshed separately after the query is done.
    In any case, I'm loving this tool and I'm practically a Power Query evangelist to every other department, because it empowers the knowledge worker to investigate data without waiting weeks for a DBA to have time to write a query and send results.  Plus
    we power this awesome real-time performance dashboard showing live KPIs of 15 metrics, and ditched our Domo.com account, saving upwards of 100k per year, just by using Power Query. Using nothing but plain Excel and Power Query, it publishes the graphics to
    our intranet and TVs around the builds live all day. It's amazing.
    Shawn Keene

  • Query remote table not working in PL/SQL

    I have a problem that is killing me to figure out. Basically we trying to query a remote table through PL/SQL and it comes back with invalid column name for the table. But the table exists in the remote database and has the column. The query works fine from the same database outside of PL/SQL, just not in PL/SQL. I'll setup a test case below.
    We have local database called DB1 and remote database called DB2. The table we are querying is called EMP.
    First we create database link:
    create database link DB2.WORLD connect to...
    Test the link:
    select ENAME from [email protected];
    ENAME
    SHAWN
    Works fine.
    Now we put this query inside a PL/SQL block:
    declare
    l_ename varchar2(20);
    begin
    select ename into l_ename from [email protected];
    end;
    This fails with the following error:
    select ename
    ERROR at line 274:
    ORA-06550: line 274, column 7:
    PL/SQL: ORA-00904: invalid column name
    ORA-06550: line 271, column 3:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 279, column 9:
    PL/SQL: ORA-00904: invalid column name
    ORA-06550: line 277, column 3:
    PL/SQL: SQL Statement ignored
    Now, I've tried changing how we select from the remote table, I've put the select statement in a cursor, tried creating a synonym which points to the remote table and selecting using the synonym in PL/SQL, it always returns the same error. But always works outside of PL/SQL.
    Now the user we are connecting to the remote database as, has select on the EMP table, through a role, along with 30 other tables, all the other tables are able to be selected through the database link, in PL/SQL, it's just this one table.
    Additionally I can go to another database, and create the same database link, and the query in PL/SQL works fine to the remote table. It's just this one table, from this one database, that doesn't work just in PL/SQL. Any ideas would be appreciated, I've exhausted everything.
    Also, creating a copy of the table using "create table as select * from..." we can select from the copy of the table using PL/SQL through the database link. The problem is this is a central warehouse table, and is used my multiple applications and updated constantly, so dropping a recreating this table is a last resort.
    Yes, this process did work, for over a year, then suddenly it stopped. Of course, no one made any changes to either database, that's always the case. I know the code didn't change though, it was still timestamped from a year ago.
    Thanks in advance.

    Could this be a variant on an old favourite, viz privileges being granted through roles. We cannot use objects in PL/SQL if our privileges are assigned through a role.
    Maybe what has changed is that instead of being granted privileges on EMP@DB2 directly the privileges have been re-organised so that your user has them granted through a role.
    Cheers, APC

  • Query Builder - Tables not Appearing

    Hi, I am encountering a problem when trying to use Query Builder.
    If I have a table that is joined to by more than one other object and wish to drag TWO instances of this table into Query Builder, it will not allow it to happen. It doesn't give any error message, just at the end of the drag operation, nothing appears.
    I've now tried it with a blank canvas and just tried to drag two instances of any table there. It will just not allow the second one to appear.
    I am using SQLDeveloper in the following environmeny
    OS Name Windows XP (version 5.1)
    java version 1.5.0_05
    java.vm.version 1.5.0_05-b05
    SQLDeveloper version 1.1.2.25
    and am connecting to a local version of Oracle Database XE.
    Am I doing something wrong or is this a known problem?
    Chloe

    Thanks. I've requested it as a missing feature, but it seems odd that this functionality is not already there. Using the ubiquitous EMPLOYEE table that all good examples seem to use, you would not even be able to join this table to itself to get the details of managers of employees.
    That's why I wondered if it was a bug on my laptop first.
    I have taken your advice and created views of the tables I need to have multiple joins to as a workround for now, but I may end up with multiple views of the same table which could get unwieldy.
    Thanks again though. :-)
    Chloe

  • Filter in query result table not populated by criteria previously selected.

    Hi Experts,
    I'm currently working on the the Upgrade of our BW production line from
    release 3.0b to 7.0:
    Configuration of target system
    BW system : Release 7.0
    BEx Analyser : Release 2004s, Support Package9, Patch 1, Revision 321
    Sap Gui 6.4
    We're especially trying to check the non-regression of the non-converted queries in the new system (release 7.0).
    And we get the following issue: After having selected the selection criteria in the selection window, the reminder of selected criteria is not done in the filter part of the target query result. Is it a normal behavior or not ?
    Indeed, in the previous system configuration (BW 3.0b), the user is accustomed to seeing just above his result table the selection criteria that he had previously filled in in the selection window.
    Please find herewith an example describing the problem.
    Thanks in advance for your help.

    In order to be more clear, hereunder an example:
    - I have a field untitled "Business Division"in the selection window.*
    - I fill in this field with the value "OND"
    - I execute the query with this value for this field.
    - The query result correclty appears.
    - I click on the "Filter" button to display the Filter table with the columns "Navigation pane" and "Filter criteria".
    - In the "Navigation pane", there is the field "Business Division".
    - For me, the corresponding "Filter criteria" should be the value "OND", but nothing is displayed...
    Thanks in advance foryour help.
    Regards,
    Steph

  • Facebook games keep giving draggable not defined error

    hi i keep getting draggable not defined when trying to click tab ( link ) pages on facebook games. both firexox and java are latest versions, this is a fresh install of vista 64 and i have tried it on my windows 7 also 64 bit. sorry im not java minded at all.
    Error: Draggable is not defined
    Source File: http://cdn1.kingdomsofcamelot.com/fb/e2/src/js/camelotmain.js?112233449900886
    Line: 1
    after evaluation i get
    Error: missing ; before statement
    Source File: javascript:%20Error:%20Draggable%20is%20not%20defined%20Source%20File:%20http://cdn1.kingdomsofcamelot.com/fb/e2/src/js/camelotmain.js?112233449900886%20Line:%201
    Line: 1, Column: 8
    Source Code:
    Error: Draggable is not defined Source File: http://cdn1.kingdomsofcamelot.com/fb/e2/src/js/camelotmain.js?112233449900886 Line: 1

    Hi Chief Mendenhall,
    It's really a Microsoft error, not a Acrobat error, but I know that doesn't make the inability to sign any less frustrating.  This probably has something to do with the communication bridge between Acrobat, Windows, and the CAC software. I know you're not responsible for software upgrades, but is there any chance you can download the free Adobe Reader (Adobe Reader Install for all versions). Even though Reader doesn't have the same editing capability as Acrobat Pro, it will allow you to sign a PDF file, and what I'm looking to see is if this is somehow related to the age of version 8.1, which is well past its end-of life. Even version 9 in longer supported.
    Thanks,
    Steve

  • Messages button giving "Service not configured" error

    Hi,
    I have created my voice mail ports, LG,HL and HP. I also created voice mail pilot and profile, assigning the pilot to profile and then assigning profile to the line of the IP Phone.
    I can dial the pilot number and voice mail port numbers, but when I push the "Messages" button on the IP Phone, I get service not configured. I looked at enterprise parameters for messages and noticed that the URL was missing. Can someone post what the URL should be for messages under enterprise parameters?
    Any other ideas as to why I am getting this error?
    Cheers

    Did anyone find the answer to this issue?
    I have a similar issue with a differrent service (one button login for ipcc).
    When I hit the services button on my physical 7965 phones it states no services are configured.
    If I press the services button on my CIPC softphone it works fine.
    The 7965 is connected to a 3560 switch and a 2811 router.
    The configuration is exactly the same for both phones and both phones are subscribed to the service.
    All help will be greatly appreciated.

  • Sharepoint 2013 support for power query

    Hi,
    I wanted to know whether SharePoint 2013 supports power query and can we refresh power query data from excel services.
    Thanks,
    Bhawna.

    Hi Bhawna.,
    According to your description, my understanding is that you want to know whether SharePoint 2013 support Power Query and refresh power query data from excel services.
    The  refresh of workbooks involving Power Query queries isn't currently available in SharePoint 2013.
    Here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/62b6384e-3120-40e2-9469-01c808530f55/does-sharepoint-2013-have-power-query-services-similar-to-power-pivot-and-power-view?forum=powerquery
    http://social.technet.microsoft.com/Forums/en-US/2da77984-5a97-4102-9119-97ecbc39f527/publish-power-query-workbook-to-sharepoint-2010?forum=powerquery
    In addition, I am not an expert for Power Query, you can create a new thread on the Power Query forum, more experts will assist you with this issue.
    Power Query forum:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=powerquery
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Can I update datas of Power Query after making relation tables in Power Pivot ?

    Can I update datas of Power Query after making relation tables in Power Pivot ?
    I want to update datas at day by day to viewing today's graph by Power View on Excel.
    Power Query use to transform web site to Power Pivot data model table.
    Power Pivot use to making relasing tables, and making measuers.
    Regards,
    Yoshihiro Kawabata.

    Hi Yoshihiro,
    Can you share an example of the things you are doing in Power Pivot? There are some operations that prevent the query from being refreshed in Power Query; this is not ideal so we are currently working on fixing it.
    Thanks for your feedback.

  • Power Query for Excel - Need Help with Oracle SQL Syntax

    Hello everyone,
    I am new to Power Query and am not able to figure this out.  I am trying to pull in data into my Excel spreadsheet using a specific Oracle SQL query.  While in query editor, how do I take the Oracle.Database function and add my SQL statement? 
    I already know what I want, I don't want it to download all the table names.  According to the help page, I should be able to do this but it does not provide a syntax example
    Also, I don't understand what "optional options as nullable record" means.
    Below is what function and arguments the help page notes.  How do I use this?
    Oracle.Database(server as text, optional options as nullable record) as table
    Any help is greatly appreciated.
    Thank you,
    Jessica

    When I try this, I get an error 
    DataSource.Error: Oracle: Sql.Database does not support the query option 'Query' with value '"Select * from Owner.View_Name"'. Details: null
    I'm trying to download oracle data from a view into power query - Power Query navigator does not list th eviews from my source, it lists only the tables. When I try write sql statements, it throws me the above
    error. This is what I tried
     Oracle.Database("Source/Service",[Query="Select * from Owner.View_Name"])
    Any ideas how to fix this? 

  • Error installing Power Query - Wrong edition of MS Office

    Hello Support,
    I am trying to install power query but it shows an error msg. I have checked everything but still shows an error msg.
    1) windows 8.1 - 64 bit
    2) office 2013 - 32 bit (home and small business)
    I had downloaded power query 32 bit but while installation it shows error msg -
    The product requires and edition of Microsoft Office or
    Microsoft Excel that is not currently installed on your
    computer.
    Kindly help me and sort out the issues.
    Regards,
    Vineet

    Hi Vineet,
    Your version doesn't meet the requirements. Read more
    here.
    The following Office versions are supported:
    Microsoft Office 2010 Professional Plus with Software Assurance.
    Microsoft Office 2013 Professional Plus, Office 365 ProPlus or Excel 2013 Standalone.

  • Power Query - How to format options for Web.Content()?

    I am trying to access a web api which can return data in either JSON or XML. When connecting with Power Query I get a "400, Bad request" error though and I suspect it could be due to Power Query not explicitly providing accepted Content-Types
    in the request. Anyone know how to add options to the Web.Content() request?
    http://office.microsoft.com/en-001/excel-help/web-contents-HA104112310.aspx
    Thanks!

    I believe the default reponse content-type is JSON. It doesn't serve Power Query with anything but an error response though and with the help of Network Monitor I caught a bit more details (in Swedish).
    Request:
    Http: Request, GET /platsannons/matchning, Query:lanid=1
    Command: GET
    + URI: /platsannons/matchning?lanid=1
    ProtocolVersion: HTTP/1.1
    Accept: */*
    UserAgent: Mozilla/5.0 (compatible; Microsoft.Data.Mashup; http://go.microsoft.com/fwlink/?LinkID=304225)
    Host: api.arbetsformedlingen.se
    Accept-Encoding: gzip, deflate
    Connection: Keep-Alive
    HeaderEnd: CRLF
    Response:
    HTTPPayloadLine: {"Error":{"statuskod":400,"titel":"Bad Request","beskrivning":"Felaktig headerparameter: [Accept-Language]"}}
    And the API can be found at:
    http://api.arbetsformedlingen.se/
    Would be great to be able to define custom headers to the request through options for cases like these. Thanks for the reply!
    Best regards,
    Daniel

  • Unable to connect Power Query to Salesforce through custom domain

    If I try a straight login / connection through Power Query, I get "Your company's authentication service is currently down.  Please contact the administrator at your company for more information".
    If I try to connect via the Custom Domain, new box will pop up, opening up an IE window in Excel, where I can log in and it does connect me to my default page, but the Power Query connection does not connect.
    You can see the successful connection but the Salesforce connection in Power Query isn't made.  Is this a custom domain connection issue, a company security issue or a Saleforce connection bug?

    First off, I can never undestand how Microsoft can have these forums operate efficiently if just about ever response is entered as a duplicate entry.  Across many different forum channel, for years, I continue to see multiple entries, regardless of
    browser I'm using.  It just seems unprofessional and so counter productive to the image that Microsoft is trying to project, but that's a different rant.
    I'm in the process of getting some information on how our system is set up.  Working for a large company, local IT is good for somethings but when it comes down to system settings for global salesforce roll-outs, the team can only answer so much. 
    Until I discover the settings at my side, it's a bit early to have some mark a solution as answered if not all the facts are in.  Someone have some sort of strange forum quota for closures going on?
    Just curious.  There's this add-in that is supposed to let you connect to Saleforce, but may not connect to Production or Sandbox environment or custom domain because there's a choice?  I realize this is the first iteration and the video and description
    look good but how long before it becomes more versatile and open to more users whom might be in a similar situation?
    Don't get me wrong guys (and girls).  I love that this product and these various forums do exist to flush out problems of users and I sincerely appreciate the time and effort everyone puts into helping out where/when they can, but it is very much a
    sour grapes situation for me.  It's a bit like 1 step forward and 2 steps back.  It will be nice when we get to the final destination, I just hope it happens sooner, rather than later.

  • CM14 BI Publisher - modifying an existing Data Model, the Graphic View in Query Builder does not display

    I am trying to edit the default forms/reports that come with CM14, trying to edit the data model, data set, (to get to the old Infomaker style graphic view) , the Query model does not display (error the list of tables is too long..) Oracle tell me the limit is 60,  there are not 60 tables referenced in any CM report.
    Does this Query builder view work at all on any report?
    (bigger question, we are moving from CM12, should we move to CM13 which works with infomaker?)
    Thanks,
    Paul L

    Kurt, thanks for your replies.
    A couple of notes/clarifications.
    1.     You are correct that BI works better in Firefox--I have observed issues with the BI display when using IE.  I would recommend using Firefox too.
    2.     You are correct about the way to get to the Query Builder to see a graphical view of data tables.  There are basically two issues with this that I mentioned, but will re-iterate:
    a.  If you have an EXISTING query in the data set, then click the "Query Builder" button, this will remove the existing query that's there, it will NOT display the existing query in the query builder.  Query Builder works only to create a NEW query from scratch.
    b.  Query builder is limited to selecting 60 fields max in your query.  If you are creating a large report with many tables, you may find that 60 fields is not enough.  For that you will have to work in the SQL edit screen rather than using the query builder.
    I would impress on anyone developing CM14 reports that they become familiar with the database schema and relationships to avoid problems when developing your BI reports.  You should be able to find the tables and joins documentation in the knowledgebase.

  • Synonym required to query custom tables from Oracle Apps database

    When creating an Answers report that queries from a table owned by a custom schema (not APPS), I cannot query the table and get error. Once I add a Synonym for APPS on this table, then OBIEE works normally.
    Since OBIEE is logging in as the APPS user, are Synonyms required for all non-APPS tables/views or is there another feature of the Administrator where it can store the table alias (our typical owner of custom tables is XXFI)?

    OK, well "compare" can mean one of two things: Compare structure or compare contents. Here is a quick script to compare column structures of two tables on one database:
    (select COLUMN_NAME,
    DATA_TYPE,
    DATA_LENGTH,
    DATA_PRECISION,
    DATA_SCALE,
    NULLABLE
    from dba_Tab_columns
    where owner=:OWNR1
    and table_name = :tablename
    minus
    select COLUMN_NAME,
    DATA_TYPE,
    DATA_LENGTH,
    DATA_PRECISION,
    DATA_SCALE,
    NULLABLE
    from dba_Tab_columns
    where owner=:ownr2
    and table_name = :tablename)
    union all
    (select COLUMN_NAME,
    DATA_TYPE,
    DATA_LENGTH,
    DATA_PRECISION,
    DATA_SCALE,
    NULLABLE
    from dba_Tab_columns
    where owner=:ownr2
    and table_name = :tablename
    minus
    select COLUMN_NAME,
    DATA_TYPE,
    DATA_LENGTH,
    DATA_PRECISION,
    DATA_SCALE,
    NULLABLE
    from dba_Tab_columns
    where owner=:ownr1
    and table_name = :tablename)
    If this query returns any rows, then these indicate that there are structural differences between the tables. We do a minus in both directions to ensure that an additional column in either schema will be returned in the query.
    If you are going across dblinks to remote tables then you have to amend the "dba_tab_columns" to "sys.dba_tab_columns@yourdblink"
    If you also want to compare indexes, triggers, etc then do the same sort of thing for the associated dba_ views for those objects.
    And if you want to compare table contents, then often the fastest way is also to check minuses in both directions, if the tables are not too big:
    e.g.
    (select * from schema1.table@dblink1
    minus
    select * from schema2.table@dblink2)
    union all
    (select * from schema2.table@dblink2
    minus
    select * from schema1.table@dblink1)
    local tables, of course, simply omit the "@dblink" issues.
    There are tools to help in such things. TOAD, for example, has a pretty good schema comparison tool, and there are plenty of other options out there. But if you need to script this yourself then the logic I've shown is a good starting point.
    Cheers,
    Mike

Maybe you are looking for

  • JUNIT in Oracle Forms 6i

    Hi We are using Oracle Forms 6i to develop Oracle Applications form extensions. Wanted to know if we use JUnit in Oracle Forms for testing? Thanks Rahul

  • Cs3 Photoshop filters read Error

    Hi, I recently had my logic drive replaced on my MacBook Pro. Now my Adobe Photoshop and Illustrator for CS3 give me an error every time I try using certain filters or effects. The error reads "The end of data was reached while from reading from a co

  • How can I check the version of the rdf file?

    Dear all: How can I check the version of the rdf file? such like CEXRECRE.rdf . my environment is : oracle 11.5.9 platform : Linux red hat 4.0 Regards Terry

  • Why full index scan is faster than full table scan?

    Hi friends, In the where clause of a query,if we give a column that contains index on it,then oracle uses index to search data rather than a TABLE ACCESS FULL Operation. Why index searching is faster?

  • Reflection of extension reveals missing functionality.

    Hi. Using  C:\>c:\php5\php.exe -n -d extension_dir=c:\php5\ext -d extension="php_sqlsrv_53_nts_vc9.dll" --re sqlsrv Warning: Internal error: Cannot find extension function SQLSRV_PHPTYPE_STREAM in global function table in Unknown on line 0 Warning: I