EndPoint Move event to another calendar
Parameters
Parameter | Label | Required | Options | Description |
---|---|---|---|---|
SourceCalendarId | SourceCalendarId | YES | ||
TargetCalendarId | TargetCalendarId | YES | ||
EventId | EventId | YES |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_WSTR
|
nvarchar(50)
|
50 | False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Google Calendar Connector in API Source component to read data or in API Destination component to read/write data:
Move event to another calendar using API Source
Google Calendar
Move event to another calendar

Move event to another calendar using API Destination
Google Calendar
Move event to another calendar

ODBC application
Use these SQL queries in your ODBC application data source:
Move event to a different calendar
Moves event to a different calendar
UPDATE move_event
WITH (SourceCalendarId='MySourceCalendarId',
TargetCalendarId='MyTargetCalendarId',
EventId='MyEventId'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Move event to a different calendar
Moves event to a different calendar
DECLARE @MyQuery NVARCHAR(MAX) = 'UPDATE move_event
WITH (SourceCalendarId=''MySourceCalendarId'',
TargetCalendarId=''MyTargetCalendarId'',
EventId=''MyEventId''
)';
EXEC (@MyQuery) AT [LINKED_SERVER_TO_GOOGLE_CALENDAR_IN_DATA_GATEWAY];