VOOZH about

URL: https://apify.com/petr_cermak/mssql-insert

⇱ Microsoft SQL Server Insert Β· Apify


Pricing

Pay per usage

Go to Apify Store

Microsoft SQL Server Insert

This actor takes a crawler execution and inserts its results into a remote MSSQL database.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

πŸ‘ Petr Cermak

Petr Cermak

Maintained by Community

Actor stats

2

Bookmarked

11

Total users

1

Monthly active users

5 years ago

Last modified

Share

act-mssql-insert

Apify act for inserting crawler results into a remote MSSQL table.

This act fetches all results from a specified Apifier crawler execution and inserts them into a table in a remote MSSQL database.

The act does not store its state, i.e. if it crashes it restarts fetching all the results. Therefore you should only use it for executions with low number of results.

INPUT

Input is a JSON object with the following properties:

{
"_id":"YOUR_EXECUTION_ID",
"data":{
"connection":"MSSQL_CONNECTION_STRING",
"table":"DB_TABLE_NAME"
}
}

The act can be run with a crawler finish webhook, in such case fill just the contents of data attribute into a crawler finish webhook data.

Additionally to crawler results, it is also possible to specify a dataset id, to fetch the result from a dataset.

{
// id of dataset to fetch rows from
"datasetId":"dataset_id",
// MSSQL connection credentials
"data":"connection_credentials"
}

Alternatively you can directly specify the rows to be inserted (i.e. not fetching them from crawler execution).

{
// rows to be inserted
"rows":[
{"column_1":"value_1","column_2":"value_2"},
{"column_1":"value_3","column_2":"value_4"},
...
],
// MSSQL connection credentials
"data":"connection_credentials"
}

You might also like

MySQL Insert

petr_cermak/MySQL-insert

This act takes a crawler execution and inserts it's results into a remote MySQL database.

Remote Actor

getdataforme/remote-actor

SQL Query

useful-tools/sql-query

Run SQL queries over Apify Platform (currently supports only Datasets).

17

Microsoft Learn MCP Server

agentify/microsoft-learn-mcp-server

The Microsoft Learn MCP Server enables AI clients to access trusted and up-to-date information directly from Microsoft's official documentation. It provides semantic search and document retrieval capabilities from Microsoft Learn.

Webpage Singer 🎢

josef.prochazka/webpage-singer

Ever wondered what a website would sound like as a song? This Actor takes any webpage, turns its content into lyrics, and transforms it into a track in your favorite genre. Just drop in a URL, pick a style, and let the AI do the rest.

πŸ‘ User avatar

Josef ProchΓ‘zka

110

5.0

Database Schema Explorer

balathon/database-schema-explorer

This Apify Actor connects to various types of databases (SQLite, PostgreSQL, MySQL, Oracle, Microsoft SQL Server), explores their schemas, provides detailed information about tables and columns, shows row counts, and optionally reads sample data.

πŸ‘ User avatar

Balasai Sigireddy

2

Related articles

AI agent workflow: building an agent to query Apify datasets
Read more