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...
Related
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'm working on a project where I need to show how many documents are invalid per department on my web site, which is display with Maven.
The problem is, I'm using phpmyadmin for my database, and I didn't find a way to use it as a source for the choropleth map.
When I'm looking on Help topic on mapbox, there is only solutions with PostgreSQL and PostGIS.
The SQL request I need to use looks like this :
SELECT SUM(nbTransactionAnnule) FROM archivAnnule GROUP BY departement
I would like to know if someone have already had this problem, and how did you fix it?
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();
my doubt is simple today, the answer, might not be that simple as I can't figure it out on my own.
How can I have a field on an access form where the user can input an image?
The idea is simple, on the company i work for, there has been a database for my co-worker to fill every time there is a repair on our products to be done.
What he asked me recently is if I can change the database to include a field where he would select a picture he had taken of the damaged goods and add it to the database, so every record on the db would have a picture, ideally hosted on the company's NAS
Thank you for your help
You can use OLE field, and set its type to linked, but this way require NAS with SMB support(windows shared folders or SAMBA) in order to store images at it.
I would like to create a web page, which documents manually-inputted data about user permissions, that looks like below, which is really pulling data out of a MySQL table.
The way it should act is that whenever someone updates the table to overwrite a value, the old values are stored in a log as a "past revision" -- Which I have no problem on the database side, but I want those past revisions to show up behind the current data on the website, as seen below.
Someone needs to be able to see the current data at a glance, but also the past revisions that expand somehow when clicked. I want this done without having the page refreshed, so maybe jQuery or some active scripting?
That's the heart of the question here, is what technology can easily accomplish the needs of this interface? What do you guys recommend? Examples would be very beneficial. Thanks in advance.
You may try out SVG (along with some jquery for some rich interface):
http://www.w3schools.com/svg/default.asp