Delete a Table Row
Name
insert_table_row
Description
Insert a row into the table. [API reference]
Related Tables
Parameters
Parameter | Label | Required | Options | Description |
---|---|---|---|---|
TableName | TableName | YES | Table name |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
sys_id |
DT_WSTR
|
nvarchar(64)
|
64 | False |
|
[$parent.Pivot_Name$] |
DT_WSTR
|
nvarchar(2000)
|
2000 | False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
[$parent.Pivot_Name$] |
DT_WSTR
|
nvarchar(2000)
|
2000 | False |
Examples
SSIS
Use ServiceNow Connector in API Source component to read data or in API Destination component to read/write data:
Insert into [Dynamic Table] table using API Destination
This Endpoint belongs to [Dynamic Table] table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

ODBC application
Use these SQL queries in your ODBC application data source:
Delete a Table Row
-- We are out of SQL query examples for this Endpoint, sorry!
-- But will try to get some very very soon!
insert_table_row
endpoint belongs to
[Dynamic Table]
table(s), and can therefore be used via those table(s).
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Delete a Table Row
DECLARE @MyQuery NVARCHAR(MAX) = '-- We are out of SQL query examples for this Endpoint, sorry!
-- But will try to get some very very soon!';
EXEC (@MyQuery) AT [LS_TO_SERVICENOW_IN_GATEWAY];
insert_table_row
endpoint belongs to
[Dynamic Table]
table(s), and can therefore be used via those table(s).