Oracle forms 6i insert image in word file - oracleforms

I need to take a microsoft word file and insert an image under It in a certain position (with delimited chars or someting like that). Then save that.
This is possible with Oracle Forms 6i? My database is 11G.
If this is not possible, can I read a certain amount of text under the word file and then put it into another, then save the new file?
Thanks in advance

No, it can't. But you can use Oracle Reports to make something that looks like your Word Doc, and then use your database to populate the specific data you need and save it wherever you want.
Otherwise if you're going to use Word, you need to setup the connection to your database in Word. But your question is a little too vague to give you a complete answer.

Related

How do i refresh csv data set in quicksight and not replace the data set as this loses my calcs

I am looking to refresh a data set in quicksight, this is in Spice. The data set comes from a csv file that has been updated and now has more data than the original file I uploaded.
I can't seem to find a way to simply repoint to the same file with same format. I know how to replace the file but whenever i do this it states that it can't create some of my calculated fields and so drops multiple rows of data!
I assume I'm missing something obvious but I can't seem to find the right method or any help on the issue.
Thanks
Unfortunately, QuickSight doesn't support refreshing file data-sets to my knowledge. One solution, however, is to put your CSV in S3 and refresh from there.
The one gotcha with this approach is that you'll need to create a manifest file pointing to your CSV. This isn't too difficult and the QuickSight documentation is pretty helpful.
You can replace the datasource by going into the Analysis and clicking on the pencil icon as highlighted in Step 1. By replacing dataset, you will not lose any new calculated fields that might have been calculated already on the old dataset.
If you try to replace the data source by going into the Datasets as highlighted below, you'll lose all calculated fields and modifications etc
I don't know when this was introduced but you can now do this exact thing through the "Edit Dataset", starting either from the Dataset page or from the 'pencil' -> Edit dataset inside an Analysis. It is called "update file" and will result in an updated dataset (additional or different data) without losing anything from your analysis including calculated fields, filters etc.
The normal caveat applies in that the newer uploaded file MUST contain the same column names and datatypes as the original - although it can also contain additional columns if needed.
Screenshots:

Localization in SSRS reports

can some one tell me/help me about localization of SSRS repors?
How can I change language of labels (I have more than 50 reports and more than 200 different labels)?
I found one way
http://www.keepitsimpleandfast.com/2011/09/localization-of-your-ssrs-reports.html
but is there some other and faster way to change language of report labels?
If you are want to implement a robust system for managing multiple localisations for a set of reports then something similar to the linked example in your question would be ideal.
However if you just want to replace text strings in the report definitions for a single localisation, e.g. replace all instances of "Revenue" with "Opbrengst", then you could do a find and replace in the text of the .rdl files. You can do this for a set of files in something like Notepad++. This has some obvious risks as you could unintentionally replace values in expressions etc. that could break the report, so would need to be done very carefully and be followed up with comprehensive testing.

Best way to store ranges and single values in mysql

just facing a little problem right now.
I have a layout-table that contains one field pages. This should specify for which pages the layout should be applied.
The possible contents are "closed" ranges like '3-5' or open ranges like '3-*'. But it should also be possible to add single pages.
So is there a good way to accomplish a content like that
'3-5;11;15;17-*'
in a single field?
Or do you know better ways?
Is there a possibility to query this field like
SELECT * WHERE IN_RANGE(pages, '5') (Pseudo-Code)
I want to prevent creating a table page because it would contain nothing else and also don't want to do the validation in php.
I am happy to provide more information if necessary.
This is a tricky question i dont see "native" sql option for this.
My first idea was to store information about pages as varchar and implement method to tokenize that string so youll have values which you can then process by sql query.

Insert query inside of memo Access

Is it possible to insert a query or tag inside of an access memo? I would like to create a welcome packet that will include a welcome letter along with other data pulled from Access tables. I can create a new field in a table to store the text i need but i would like to include several other pieces of information pulled from into the report. I would like to insert the data elements as if i was inserting a tag into an html page. The welcome letter should pull in the user's name and the letter address their name and other details individual to the homeowner. The other pages of the report include details about the user that are updated from several locations. Is this even possible in access? If not i will tell users that they must create the welcome letter somewhere else and attach it to the packet manually but it would save a lot of time to be able to print the letter with the packet.
I was able to resolve the problem by storing the paragraph text in new columns and setting the memo fields to "can grow" in the report. I then seperated the paragraphs with the inserted data. I will also look into Remou's options that he provided as the MS Word automation and HTML in code sound like better options.
Thanks Remou

Access 2007 and Special/Unicode Characters in SQL

I have a small Access 2007 database that I need to be able to import data from an existing spreadsheet and put it into our new relational model. For the most part this seems to work pretty well. Part of the process is attempting to see if a record already exists in a target table using SQL. For example, if I extract book information out of the current row in the spreadsheet, it may contain a title and abstract. I use SQL to get the ID of a matching record, if it exists.
This works fine except when I have data that's in a non-English language. In this case, it seems that there is some punctuation that is causing me problems. At least I think it's punctuation as I do have some fields that do not have punctuation and are non-English that do not give me any problems.
Is there a built-in function that can escape these characters? Currently I have a small function that will escape the single quote character, but that isn't enough. Or, is there a list of Unicode characters that can interfere with how SQL wants data quoted?
Thanks in advance.
It is pretty simple, All you have to do is to put a 'N' character before command like
select * from productswhere id = N'متن یونیکد'
'N' force sql to search Unicode