How to connect 1010DATA using SSIS - ssis-2012

I have requirement like source data is available at 1010database and I need to extract the same to SQL server table.
Can you please let me know the how to connect 1010database to extract the data from SSIS.
Thanks in advance....

If you're trying to migrate data out of 1010data into an SSIS workflow you're going to want to use 1010data's ODBC driver (documentation here)
If you're trying to migrate data from an SSIS workflow into 1010data you'll want to use tenup (documentation here)

Related

Why my stored procedures in MariaDB do not appear when connect to Tableau?

I don't know why but I can not see the stored procedures appear when I connect the database to Tableau (I use MariaDB). I can only see the data tables.
Anyone has the same problems with me? I am a newbie so I am not sure if my description is clear or not.
Use the stored procedures.
I found that Tableau does not connect to stored processes and that one way around this is that when you connect to your server, you should use the initial query function. Once you log in, grab Custom SQL and for that script simply use
select * from #nameoftemptable
and Execute.

Using Snowflake with neo4j

I need to send data from snowflake to neo4j whenever newly transformed data is available in a snowflake table. What is the best way to do this?
I am thinking of using snowalert to notify an updater service which will then pull new data from the snowflake table and push it to neo4j. Is there a better solution to this problem?
You can use a combination of methods from APOC library to load data from Snowflake to neo4j directly.
https://neo4j.com/labs/apoc/4.3/overview/apoc.periodic/apoc.periodic.repeat/
https://neo4j.com/labs/apoc/4.3/overview/apoc.periodic/apoc.periodic.iterate/
https://neo4j.com/labs/apoc/4.3/overview/apoc.load/apoc.load.jdbc/

Firebird Trace SP's / Steps

I need a simple and free program to monitor all transactions on a Firebird Server.
I'm creating a web API that needs to mimic a user creating a new order in a custom made program.
Since I haven't got access to the source code I guess my best chance to properly insert all the data is to use the existing stored procedures. I can see all the SP's on the Firebird server and the details but I haven't got a clue which ones to use and in what order.
So the plan would be to monitor the activities while creating an order.
Many thanks for the help!
Thank you Mark & Arioch for contributing.
After hours of failed experimenting with the included fbtrace.exe included in Firebird 2.5 installation i've decided to use "FB TraceManager" Trial version.
Found here: https://www.upscene.com/downloads/fbtm

How to migrate tfs web extension data?

I'm developing a web extension in on-premises TFS 2017U3.
It uses the ExtensionDataService to store data.
Normally, we're not supposed to manipulate tfs data directly via database script, and I assume that applies to the Extension.tbl* tables as well.
I've searched without success for a tool to help manipulate this data, for purposes such as migrating data across environments, or scripting initial load, etc.
I also found this VSTS SyncMigrator but as far as I can tell it doesn't handle extension data.
Should we just build our own tool to do this?
Based on my knowledge, there is no way/tool to migrate extension data only. You could migrate the whole TFS by checking the following link:
https://learn.microsoft.com/en-us/vsts/tfs-server/admin/move-across-domains
Meanwhile, I have submitted a User Voice at website below, you can vote it:
https://visualstudio.uservoice.com/forums/330519-visual-studio-team-services/suggestions/33538582-provide-api-or-tool-to-migrate-extension-data-in-t
I ended up writing a quick command-line interface using vsts-node-api.

Where is the location of test plan tfsserver databases?

I know that tfsserver has built-in report server. But I want to get a custom report from test case steps. So I need to query some database that belongs to tfsserver. I need the name of this database and if it is possible the structure of it.
Microsoft doesn't support interacting directly with the operational databases. If you want to get data out of TFS the supported ways are either the warehouse database (Tfs_Warehouse) - but I don't believe that includes test steps; the TFS Cube (Tfs_Analysis) - also doesn't include test steps; or the API - which should allow you to retrieve test steps.
So my advice is to retrieve the data from the API. Or alternatively create a custom warehouse adapter that pushes this data over to the warehouse database.

Resources