Start

Starts a new job with the specified configuration

Syntax

wds.Start( jobConfig )

Arguments

Name Type Description
jobConfig JobConfig Required. Job configuration

Return type

TABLE (Task wds.DownloadTask)

Return value

List of DownloadTask (one per Start URL) in a form of table.

Examples

Creating a job and getting initial download tasks
DECLARE @jobConfig wds.JobConfig = 'JobName: TestJob1; Server: wds://localhost:2807; StartUrls: http://playground.svc';
SELECT  
    root.Task.Url URL
FROM wds.Start(@jobConfig) root
URL
http://playground.svc/

Please rotate your device to landscape mode

This documentation is specifically designed with a wider layout to provide a better reading experience for code examples, tables, and diagrams.
Rotating your device horizontally ensures you can see everything clearly without excessive scrolling or resizing.

Return to Web Data Source Home