Writing back a whole data table from spotfire into Database - spotfire

Is it possible to write back a whole data table from Spotfire into the database automatically? I have seen this link https://youtu.be/smZC-FtLXYQ but they write back individual texts as doc property but I need to write a whole table into a database.
Could anyone please guide me in this?

Related

Access VBA, take table data and paste/insert it into another table at the end

I have a dataset that is imported from excel into access in a new table. I want to take this data and "add it" to the end of a larger data set as the main table is updated daily with relevant information. Not too experienced with VBA, however, this I cannot wrap my head around as I am normally experienced with Excel. Let me know if there is anything else I can do to help.
...from excel into access in a new table... If the data is already in your Access database, just make an INSER INTO query. No need of VBA
Add records to a table by using an append
query
And after you are done, make sure you clear that temp table where you import your data, with another query that deletes all records.

Highlighting data change in TIBCO Spotfire

This is my first post here, so please forgive me if I fail at etiquette or clarity somewhere along the way.
I am working on a POC dealing with highlighting data in Table visualisation within Tibco Spotfire which will allow a user to see data which has been added or updated in the table after reloading the table data into Spotfire.
I am relatively new to Spotfire so don't have experience in Scripting,Kindly Help, how to approach this problem?
Suppose i have a table visualisation built on table from database, the next time I open the viz. the underlying data table is reloaded. I want any change in the column of underlying data table to be highlighted.

how to export data from excel table into access table which is not the same as excel table?

How to export data from excel table into access table which is not the same as excel table, ie some data is same, some is different, I want to auto extract only certain data?
DETAILS
I have over 5000 students and researchers in my Access database and they are unique to employee/student number. I need to maintain training records however I do not get training records sent to me for whatever reason. But HR does and their Excel database is auto-updated with this information.
The Excel HR database and my Access H&S database both use Emp/Student # as identifiers and our training columns are the exact same BUT they are not entirely the same (ie. they have some columns that I don't have and Viceversa).
I spent the holidays updating my database with their training info so that AT THIS MOMENT they are the same. But come the next pay period they will have an auto update of training and I will NOT. Therefore I want to figure out a way to auto-update my DB with theirs... Would love any help you can offer. I know I know they answer may be staring me in the face but I am new to access and I am asking for help. Thanks in advance!
Japes
You can link to your Excel spreadsheet from Access or import it into a new table in Access. Then create a new query that links your Excel table to the Access by the identifier field(s). Set the query to be an Update query and then select the fields in the Excel table that you want to update the Access table with. I would suggest that you make a backup of the Access data before actually running the update query.
Not sure if I'm saying the same thing that #jhTuppeny is saying, but LINK the Excel table into your Access database. Call that the "rawdata" table or whatever you want to call it.
Use this "rawdata" table as the basis for a query in access that will either append/update your Access table. In this query, you can also automate the data for fields that the rawdata doesn't have, or fill it in with DUMMY values that you can manually update in your updated table.

spotfire new table from file filtered

I am using spotfire client.
I have identified some records within a data table that I would like to send to a new data table. Is there some way to create a new table with marked or isolated data or using a data limiting expression on the source table? I have had to export my filtered data out and then import it back in but I am hoping there is a more direct way.
Thanks!
If you know the restrictions you need to set on your data to identify the records, you can create a second table based on the source data.
Go to the properties of the table / visualization, then go to the Data tab. You have to scroll all the way to the bottom. There you can edit the "Limit data using expression".
You could also create a detailed visualization if you want, but that is only useful if you can quickly identify the records.
Or insert a calculated column (e.g. case statement) and use this column to filter your data.

Compare excel data with oracle using c#

Can any one please advice what is the best way to compare excel data with data in Oracle and return matching information using c#?
I can create a temp table in oracle database, upload excel data to table and run query to compare data in temp table with actual table and get data.
But let me know if it can be done in any other way.
Ex: I have excel data with vehicle numbers and Oracle has details of vehicles, owner name & address.
I want to get all the information which match vehicle numbers in excel.
please let me know best to do this. It would be great if you can provide sample code.
Thanks in Advance.
You Can do it with fetching excel data in C# code and fetch the data from select query from oracle database and then try to compare it in C# using datatables. You can refere to one of the stackoverflow link Compare Datatables.
and to insert excel data in datatable in C# refer to below linkFetch Excel Data in Datatable
For inserting data from excel to C# Application you have to connect through OLEDB and then fetch the records

Resources