Write Back to Database using Spotfire Information Links
Here is a great way to write back to a relational database using Spotfire Information Links. Perform CRUD operations (insert, delete, update) directly from Spotfire using Information Links
Other ways to write back:
• https://youtu.be/smZC-FtLXYQ
• https://community.tibco.com/s/article/Writing-to-files-and-databases-from-Spotfire
• Create popup calendar: https://community.tibco.com/s/article/Date-and-Time-Pickers
Script to transfer marked data:
1. Define a passthrough data function. The data function script is a simple variable that severs as input and output. For example "x" (either R or Python) and define your x input and x output both as value strings.
2. Set the script parameters to refresh the function automatically. Your x input should be an expression limited by marking. The expression can be something like:
First([name]) & "|"
& First([age]) & "|"
& First([dob])
and your x output a Document Property that stores the resulting pipe separated string to a document property "NameAgeDob" so the output can be something like "Lionel Andrés Messi Cuccittini|32|6/24/1987"
3. Edit the NameAgeDob document property that holds the string so you can parse it to each individual document property when the value changes. So add this script after creating a document property place holder for each variable. For example, "name", "age" and "dob". The script looks like this:
strVals = Document.Properties["NameAgeDob"].split("|")
Document.Properties["name"]=strVals[0]
Document.Properties["age"]=strVals[1]
Document.Properties["dob"]=strVals[2]
4. Add a text area and insert (input field) property controls per each document property.
5. Mark rows in your visualization or table visualization and you should see how the marked rows are transferred to your document properties. From there, you can continue processing further your data, such as updating the data base or running a data function.
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Write Back to Database using Spotfire Information Links», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.