Skip to Content
Tabular Modeling with SQL Server 2016 Analysis Services Cookbook
book

Tabular Modeling with SQL Server 2016 Analysis Services Cookbook

by Derek Wilson
January 2017
Beginner to intermediate
372 pages
5h 55m
English
Packt Publishing
Content preview from Tabular Modeling with SQL Server 2016 Analysis Services Cookbook

Importing data

The crash data has many columns that store the data in codes. In order to make this data useful for reporting, we need to add description columns. In this section, we will create four code tables by importing data into a SQL Server database. Then, we will add the tables to your existing model.

Getting ready

In the Chapter 3 database on your SQL Server, run the following scripts to create the four tables and populate them with the reference data:

  1. Create the Major Cause of Accident Reference Data table:
            CREATE TABLE [dbo].[MAJCSE_T]( 
              [MAJCSE] [int] NULL, 
              [MAJOR_CAUSE] [varchar](50) NULL 
            ) ON [PRIMARY] 
    
  2. Then, populate the table with data:
     INSERT INTO MAJCSE_T VALUES (20, 'Overall/rollover'), (21, 'Jackknife'), (31, 'Animal'), (32, 'Non-motorist'), ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

SQL Server 2016 Reporting Services Cookbook

SQL Server 2016 Reporting Services Cookbook

Dinesh Priyankara, Robert Cain
SQL Server 2017 Integration Services Cookbook

SQL Server 2017 Integration Services Cookbook

Christian Cote, Dejan Sarka, Matija Lah

Publisher Resources

ISBN: 9781786468611