Questions tagged [data-linking]
33 questions
4
votes
4 answers
Google slides auto update links /tables linked from google sheet
I have a Google Slides presentation that has some linked cells/table to data in Google Sheets. Currently, I have to manually click each linked cell/table to update values.
I need a script for Google Slides that would auto-update / batch-update /…

Master
- 51
- 1
- 3
4
votes
1 answer
RecordLinkage: how to pair only best matches and export a merged table?
I am trying to use the R package RecordLinkage to match items in the purchase orders list with entries in the master catalogue. Below is the R code and a reproducible example using two dummy datasets (DOrders and DCatalogue):
DOrders <-…

Mihail
- 761
- 5
- 22
4
votes
1 answer
Generating a unique ID column for large dataset with the RecordLinkage package
I am trying to generate a unique ID column using the RecordLinkage package. I have successfully done so when working with smaller datasets (<= 1,000,000), but have not been able to reproduce this result for larger datasets (> 1,000,000) that use…

Joseph
- 431
- 1
- 4
- 15
4
votes
5 answers
How to Refer to Excel Link Using Unique Identifier in VBA
How do I refer to external workbooks in VBA using a unique identifier which doesn't change when the file is open? It works fine when the full filepath is included and no file with the same name is open. However when a file is open the complete form…

AER
- 1,549
- 19
- 37
2
votes
1 answer
R RecordLinkage package, Understanding alpha and beta errors
I have been learning to use the R RecordLinkage package recently. On a very small example with linking 2 datasets, one with 8 rows and the other with 11, I get the results:
Linkage Data Set
8 records in data set 1
11 records in data set 2
8…

Tumaini Kilimba
- 195
- 2
- 15
2
votes
2 answers
jQuery Datalink - Data linking
I was trying out the jQuery Data linking proposal from Microsoft and noticed something strange.
My objects get this extra property and I was wondering what the reason for that is. I first thought it was a mistake I made but I noticed their demo…

Pickels
- 33,902
- 26
- 118
- 178
1
vote
0 answers
Linking from Grafana to Jaeger using Data Links hits the wrong traces
We are working on incorporating Grafana, Jaeger, Prometheus and other tools into our production environments.
In this process, we have set up graphs for various services/operations, and we would like to be able to go directly from a "Spike" in the…

Jens
- 3,353
- 1
- 23
- 27
1
vote
0 answers
N/datasetLink with Dataset Builder Plug-In: How to display the data after linking the sets?
Code example below... After creating my linkedDataset how do I display it? I understand it has to do something with the context.dataset but I cant get it to work. I missing something... Any ideas?
var salesRebatesData = datasetLib.load({
id:…

Nadav Julius
- 301
- 2
- 16
1
vote
0 answers
Index and Data Link in Oracle
I have this query that updates values in a Oracle schema using a datalink to retreive values from a table that exists in another schema.
UPDATE SCHEMA1.TABLE1 t1 SET NAME =
(SELECT t2.NAME FROM SCHEMA2.TABLE2@DATA_LYNK_TEST t2 WHERE t1.ID=…

pmartin8
- 1,545
- 1
- 20
- 36
1
vote
2 answers
JQuery Tmpl and Databinding working together
I am trying to get data binding and tmpls - the jquery plugins to work together well. So I want to use a template to render the data, and then data binding to hook it back into my objects. For example:
var items = [{ Name: 'Barak Obama', Phone:…

Fred Thomas
- 217
- 1
- 2
- 6
1
vote
1 answer
Update a table data link in AutoCAD using VBA
I have an issue, have an AutoCAD file with a ton of data links and would like to update only the data links related to a speciffic table.
Simmilar to the functionality of selecting a table with data links, right clicking and selecting Update Table…

Carlos Raúl Gómez
- 61
- 1
- 6
1
vote
0 answers
how to link db2 table column to another object?
I am new to DB2 and I'm working with an IBM i series system. I have an object with a special column "X". I want to store data for X in another object whenever some criteria satisfied and I can get data from the original object for both special…

Nahid Bandi
- 428
- 1
- 4
- 23
1
vote
1 answer
jQuery Data Link not Handling Select Lists
I have a simple address form leveraging the awesome new Data Link plugin. It's a simple create/edit scenario that executes an ajax call to populate the form if an ID is present, or a blank form if not.
dataComplete : function(data){
…

Dusda
- 3,347
- 5
- 37
- 58
1
vote
1 answer
Unable To Recover URL Stored in MySQL database
I am writing an application that stores profile images of users in a mysql database, due to performance set backs brought about by BLOB and CLOB data types, I have resolved not to use them, but to store the image url in the database table as varchar…

Samuel Owino
- 747
- 1
- 12
- 24
1
vote
1 answer
JsObservable setting Property with Child Properties
How would I go about making an observable update to an object with child properties data-linked to form elements?
var app = {
formData: {
selectedThing: "thingValue1",
selectedPlace: "placeValue1"
…

Brian Hinckle
- 33
- 4