CREATE DATABASE IF NOT EXISTS SampleDBTutorials;
DROP FUNCTION IF EXISTS SampleDBTutorials.dbo.WeblogsView;
//create TVF WeblogsView on space-delimited website log data
CREATE FUNCTION SampleDBTutorials.dbo.WeblogsView()
RETURNS @result TABLE
(
    s_date DateTime,
    s_time string,
    s_sitename string,
    cs_method string, 
    cs_uristem string,
    cs_uriquery string,
    s_port int,
    cs_username string, 
    c_ip string,
    cs_useragent string,
    cs_cookie string,
    cs_referer string, 
    cs_host string,
    sc_status int,
    sc_substatus int,
    sc_win32status int, 
    sc_bytes int,
    cs_bytes int,
    s_timetaken int
)
AS
BEGIN
    @result = EXTRACT
        s_date DateTime,
        s_time string,
        s_sitename string,
        cs_method string,
        cs_uristem string,
        cs_uriquery string,
        s_port int,
        cs_username string,
        c_ip string,
        cs_useragent string,
        cs_cookie string,
        cs_referer string,
        cs_host string,
        sc_status int,
        sc_substatus int,
        sc_win32status int,
        sc_bytes int,
        cs_bytes int,
        s_timetaken int
    FROM @"{0}"
    USING Extractors.Text(delimiter:' ');
END;
						Azure Data Lake Analytics and Azure Data Lake Store are hyper-scale services designed for big data analytics workloads. Learn ...
Azure Data Lake Analytics is a hyper-scale service designed for big data analytics workloads. Learn More We're currently ...
Azure Data Lake Analytics is currently unavailable in the {0} location due to planned maintenance. Please try again later. ...
Azure Data Lake Store is a hyper-scale service designed for big data analytics workloads. Learn More We're currently onboarding ...
CREATE DATABASE IF NOT EXISTS SampleDBTutorials; DROP FUNCTION IF EXISTS SampleDBTutorials.dbo.WeblogsView; //create TVF ...
Create Database SampleDBTutorials CREATE DATABASE IF NOT EXISTS SampleDBTutorials; //Create Table OlympicAthletes CREATE ...
Define schema of file, must map all columns @searchlog = EXTRACT UserId int, Start DateTime, Region string, Query string, ...
DROP TABLE IF EXISTS SampleDBTutorials.dbo.ReferrersPerDay; //create table ReferrersPerDay for storing references from external ...
File size is limited to 2 GB when uploading via portal. Use PowerShell or Visual Studio to upload larger files. Click here ...