Video není dostupné.
Omlouváme se.

Create a Tabular Cube with SSAS! // step-by-step

Sdílet
Vložit
  • čas přidán 5. 08. 2024
  • ►► Establish a Well-Structured Data Warehouse for Your Small Team In 90 Days (Free Guide) → www.kahandatasolutions.com/guide
    Step by step tutorial on how to create a Tabular Cube with SSAS and Visual Studio.
    Timestamps:
    0:00 - Intro
    0:18 Download Example Data Warehouse (AdventureWorks)
    2:43 Connect to Analysis Services in SSMS
    3:23 Create a Tabular Project in Visual Studio
    4:14 Add a Data Source
    6:00 Import Tables
    6:48 Review Model Design
    7:15 Deploy Model
    Title & Tags:
    SQL Server Analysis Services Tutorial: How to Create a Tabular Cube with SSAS
    #kahandatasolutions #sqlserveranalysisservices#dataengineering

Komentáře • 33

  • @KahanDataSolutions
    @KahanDataSolutions  Před 3 lety +3

    ►► Establish a Well-Structured Data Warehouse for Your Small Team In 90 Days (Free Guide) → www.kahandatasolutions.com/guide

  • @mayrarosas7107
    @mayrarosas7107 Před rokem

    Thanks this was so helpful!!

  • @michaelpacia7356
    @michaelpacia7356 Před rokem

    Exactly what I need, thank you mate!

  • @navc8550
    @navc8550 Před rokem

    Nice video, concise and to the point.

  • @ericmuga
    @ericmuga Před rokem

    Wonderful, quite apt

  • @MrOnkuba
    @MrOnkuba Před 3 lety +1

    Thanks

  • @shikurnuriye6551
    @shikurnuriye6551 Před 2 lety

    Perfect !

  • @edoze_ru
    @edoze_ru Před 2 lety +1

    What version of visual studio do you have? I don't have a point "PostgreSQL database", when I configure Data Sources.. (

  • @venkateshthammisetty7845
    @venkateshthammisetty7845 Před 2 lety +1

    Hi
    Can u pls let me know if u aware of , what is the use of the annotations in XMLA script, u will find these in XMLA script of Tabular Model?

  • @techproductowner
    @techproductowner Před 3 lety +3

    Excellent video . . could you please help me understand that . .what is the advantage of a tabluar model here. . I mean to say that we already have the same structure in SQL server dB . .and the same relationship . Why we didn't prefer to use the sql serer DB itself for our analysis . . what is the exact use case need of analysis service here

    • @santoshatyam1409
      @santoshatyam1409 Před 3 lety +2

      The advantage of using cube is large calculations are computed so fast . correct me if iam wrong

    • @KahanDataSolutions
      @KahanDataSolutions  Před 2 lety +11

      A little late on this response here...but in addition to the other comment about performance, one major benefit of a cube is that it is intended to be designed to automatically understand relationships (think SQL joins) across multiple tables.
      Lets say you have a scenario where you want to show a measure (ex. a sum or count) sliced by a particular attribute (ex. customer, user, location, etc.). Using SQL in a typical relational DB, this may require multiple left/inner joins, where conditions, etc to get the result to display the way you want.
      However, using tabular cube, you can configure it through analysis services to understand how certain tables should relate (based on keys) and therefore it can automatically return this type of answer for you without any joins. You can simply drag and drop and the underlying engine does the equivalent of those SQL joins for you.
      Also, business users can connect to an Analysis Services cube through something like Microsoft Excel or Power BI. That means that business users who may not know SQL can easily interact with your data but it will be tightly controlled by you (the cube developer) based on how you manage the relationships, measure logic, visibility, etc. of the cube they are working with.
      Most of this happens in memory, which is a main reason why the performance is also really good.
      Hope this helps!

  • @shidharthbammani5751
    @shidharthbammani5751 Před 2 lety +3

    can you make a tutorial about dimensional modelling or data warehousing in general that would be great .Thanks in advance

  • @user-wy4sz3gv5r
    @user-wy4sz3gv5r Před rokem

    Hi! I cant see "new data source" by clicking on data source. Can you help me please?

  • @andreacuellar895
    @andreacuellar895 Před 6 měsíci

    Hello how can I connect to the same server for practice?

  • @facumontenegro1
    @facumontenegro1 Před 3 lety +2

    Hello! I had a problem when I imported tables from SQL Server, the error said "Error returned: 'OLE DB or ODBC error: The credentials provided for the SQL source are invalid" Could you tell me How can I solve this? Thanks!!

    • @KahanDataSolutions
      @KahanDataSolutions  Před 3 lety +1

      Looks like a credentials issue, meaning the username/password you used are not correct. Make sure you do not have any typos.

    • @facumontenegro1
      @facumontenegro1 Před 3 lety +1

      @@KahanDataSolutions Thanks for your answer!! I tried with my database credentials and it worked! I will subscribe to your channel because your videos are really good. Keep it up!

    • @KahanDataSolutions
      @KahanDataSolutions  Před 3 lety

      Awesome! Thank you so much! Glad you find them helpful.

  • @i.k.986
    @i.k.986 Před rokem

    Hi Kahan, thank you for the video. May I ask you why you are calling it tabular cube? Tabular and cube are two diffrent technologies... thx for replying

  • @maibagiangson4100
    @maibagiangson4100 Před 3 lety +1

    I use SSMS ver 2019, I cant create Analys Service like you, and I cant install analys services from SQL Servcer Installer, how I can do ? plssss

    • @KahanDataSolutions
      @KahanDataSolutions  Před 3 lety +1

      Have you followed steps similar to what is in this video? czcams.com/video/0GumDdUyvzo/video.html

    • @maibagiangson4100
      @maibagiangson4100 Před 3 lety +1

      @@KahanDataSolutions yeah, it's working, tks you !

  • @superfreiheit1
    @superfreiheit1 Před 2 lety

    When is SSAS better than SSMS?

    • @KahanDataSolutions
      @KahanDataSolutions  Před 2 lety

      It isn't really an either/or type of thing as they are often used together.
      SSAS is the underlying services for building tabular/multi-dimensional cubes.
      SSMS is the user interface program for looking at different objects, which may be Database Services objects (ex. databases, schemas, tables, data rows) and also Analysis Services objects (ex. cubes).

  • @CaptainKage
    @CaptainKage Před 2 lety

    well... from where do you know sa password?

    • @KahanDataSolutions
      @KahanDataSolutions  Před 2 lety

      This is a user that was created on the sever in a previous video (in this same playlist). You would have to create your own user.

    • @ash3rr
      @ash3rr Před 2 lety

      SA is the system admin account on what I pressume is SQL Server. It's created when you install SQL Server and only the DBA should have access to this account in a PRD environment.