Typically, when I click "Edit dataset" I can view the sql query used to create the dataset. When I click "Edit dataset" on a dataset that is joined with another dataset, I cannot view the query or the schema that shows the join. These are shared datasets so I suspect that it's an issue with permissions but using the quicksight cli wasn't helpful because I got this error when I try to describe the dataset
An error occurred (InvalidParameterValueException) when calling the DescribeDataSet operation: The data set type is not supported through API yet
Has anyone experienced something similar?
Turns out the issue was that the datasets were being manually joined against a csv file that was uploaded by another account. Manually uploaded files don't have an associated data source, so they can't be viewed by other accounts. I transferred ownership from the account that uploaded the csv to myself and now I'm able to view the datasets.
Related
I've already uploaded data from SQL Analysis services, and after this I can make any calculations or make any changers in the report because Transform data is unclickable and I cannot use Power Query Editor .
But if I upload data from SQL Server then everything works fine.
Could you help me, please, find the reason why I cannot work with data from SQL Analysis services?
There are different ways to work with Analysis Services. When using the UI, the default way is to connect to the whole data model. That means you can use all the pre-defined measures for example. If you want to add additional tables to that model, you have to change the connection to direct query. This is a preview feature that must be enabled by your admin: https://learn.microsoft.com/en-us/power-bi/connect-data/desktop-directquery-datasets-azure-analysis-services
If so, you should see a clickable link at the right bottom like so:
If you clik on it, a dialogue like this should pop up:
After accepting your are able to click on "Transform data" to import more sources.
Does OBIEE support importing media files like photos that are stored in particular format in database tables?
For example if you are making an analysis with a client info and want to add client's picture to it, how is this possible in OBIEE? Does Admin tool work with them? Couldn't find useful info on this in the web, maybe someone here faced this issue?
It can be done with rtf template. If the data is comming from BLOB column in a table then after inserting the element in the form field you just have to update advanced part of property box to:
<fo:instream-foreign-object content-type="image/jpg">
<xsl:value-of select="YOUR_IMAGE_COLUMN_NAME"/>
</fo:instream-foreign-object>
The same way you could insert different content-types (MIME).
More here: https://docs.oracle.com/middleware/12211/bip/BIPRD/GUID-58D7E662-146A-44AA-86F9-111E2C6DB3A5.htm#BIPRD2396 Regards...
I am new to Tibco Spotfire and I am working on a query to retrieve the query used by/generated by Spotfire while designing an information link.
I have access to the Library DB which saves the metadata of all the items/elements used in dashboards and stuff like that. I have been able to locate the information link items in the DB but I can't find the actual query that is used by the information link.
I need a solution that can be implemented from the DB, UI solutions are already in use and I am looking to automate that manual process of going to each info-link and clicking the "SQL" button in the Information Designer tool
so far I have come across [this link] (https://support.tibco.com/s/article/How-to-find-the-manually-modified-SQL-query-used-by-a-particular-Information-Link) on Tibco's community forum but it doesn't show the autogenerated queries (only the manually modified queries).
Any and all help on this will be much appreciated
Thanks
This should be in the SQL logs on the server. Attempt to open the info link. Then, log into the server. Go to the folder where your spotfire installation is and find a folder that looks like this...
\Tibco\tss\10.3.6\tomcat\logs
...and you want the SQL.txt file. Search for your user name.
I have a SharePoint folder where only spreadsheets are uploaded. I need to extract data from one of the tables (Table1) and paste that in a different spreadsheet.
I'm stuck as to how to extract the rows from the spreadsheets as soon as these are uploaded:
This is the error I'm getting, my test spreadsheet does have a table created called "Table1".
Any ideas?
Apparently the dynamic content to make reference to a file on SharePoint has a bug that devs need to work on. For the time being the workaround is using OneDrive:
I downloaded images from a webservice, saved then into a TBitmap and used the command: bmpExample.SaveToStream(stExample); and saved the stream into my database (SQLite) PS: the column is a Blob field.
Until here everything works fine! I can see the image on the Data tab, the problem start when I try to load the image back to my application (firemonkey). I'm using the livebinds tool and linked my ListView into my Query (select * from empresa) in this way:
The header and the text loads fine, the only problem is with the image (that I know that exist because I can see on the Data tab of my SQL editor.
I found the answer, was because I used qMyQuery.Open after download the company informations, and after I had the ID of the company, I downloaded and inserted the images on the database but I did not said to my query to access again the database.
The answer to my problem:
Dm.qMyQuery.Close;
Dm.qMyQuery.Open();