{"id":13042,"date":"2024-07-30T00:00:00","date_gmt":"2024-07-30T00:00:00","guid":{"rendered":"https:\/\/e-dialog.group\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/"},"modified":"2026-04-17T10:52:20","modified_gmt":"2026-04-17T10:52:20","slug":"looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1","status":"publish","type":"post","link":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/","title":{"rendered":"Looker Technical Basics The Alpha And O Of Data Provision &#8211; Part 1"},"content":{"rendered":"<p>Looker is a powerful business intelligence (BI) tool that helps companies gain actionable insights from their data.<\/p>\n<h2>Looker&rsquo;s architecture &ndash; an overview<\/h2>\n<p>Looker&rsquo;s architecture consists of multiple layers that together form a flexible and scalable platform. The three main components are the data sources, the Looker data model (LookML) and the user interface. This architecture makes it possible to keep raw data in its original source while still producing comprehensive analysis and reporting. LookML itself will be examined in more detail in the next chapter.<\/p>\n<h3>Data sources<\/h3>\n<p>The data sources are the basis of every BI analysis and form the first layer of the Looker architecture. Looker supports a wide range of data sources, including traditional relational databases such as MySQL, PostgreSQL and SQL Server, as well as modern cloud-based platforms such as Google BigQuery, Amazon Redshift and Snowflake. This versatility allows organizations to seamlessly integrate their existing data infrastructures with Looker without having to physically move or transform the data.<\/p>\n<p>By connecting directly to data sources, data integrity is maintained and data analyzes are always up to date.<\/p>\n<h3>Looker data model<\/h3>\n<p>The Looker data model, defined by LookML, is the heart of the Looker architecture. LookML is a powerful and flexible modeling language that makes it possible to transform complex data structures into logical and reusable models. By defining dimensions, metrics, aggregations, and relationships in LookML, consistent and scalable data models can be created that provide a foundation for accurate and comprehensive data analysis.<\/p>\n<p>The Looker data model abstracts the complexity of SQL queries and allows users to perform data analysis without having deep SQL knowledge. This abstraction facilitates collaboration between technical and non-technical users and promotes consistent data logic across the organization. In addition, LookML supports the modularization of data models, which significantly improves the reusability and consistency of data analysis.<\/p>\n<h3>User interface &ndash; Viewer, Explore, and Developer layers<\/h3>\n<p>Looker&rsquo;s user interface is divided into different layers: the viewer layer, the explore layer and the developer layer. The viewer layer provides users with an intuitive interface for interacting with reports and dashboards. The Explorlayer allows advanced users to perform interactive queries and explore data. The developer layer is intended for developers who create and manage complex data models with LookML. This structure ensures efficient use of Looker for users at different levels of data analysis, providing a seamless experience from visualization to data modeling.<\/p>\n<h3>LookML &ndash; Views, Explores, Models and Git<\/h3>\n<p>LookML, Looker&rsquo;s modeling language, is an essential part of the Looker architecture and enables precise and efficient data modeling. In LookML the structure follows a clear hierarchy: Models, Views, Explores, Dimensions and Key Figures. Models contain views and define the relationships between them. Views represent data sources and define dimensions and metrics. Explores are based on views and enable interactive data analysis. Dimensions are attributes used to group data, while measures represent aggregated numerical values. This hierarchy ensures organized, consistent, and scalable data modeling.<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1-1024x814.jpg\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" srcset=\"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1-1024x814.jpg 1024w, https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1-300x238.jpg 300w, https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1-768x610.jpg 768w, https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1-1536x1221.jpg 1536w, https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1-2048x1628.jpg 2048w, https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/image_1.jpg 793w\" alt=\"Eine hierarchische Darstellung von LookML Objekten\" width=\"800\" height=\"636\">A hierarchical representation of LookML objects<\/p>\n<h3>Views<\/h3>\n<p>Views are the basic building blocks in LookML. They represent a table or a logical view of the data source and define the underlying dimensions and metrics. Each view contains a description of the data structure, including the fields, their types, and the relationships between them.<\/p>\n<p>Dimensions in views are attributes by which data can be grouped, such as date, product name, or customer segment. They form the basis for categorizing and aggregating the data. Key figures, on the other hand, are numerical values &#8203;&#8203;that can be analyzed and aggregated, such as sales, profit or number of orders. By defining calculations and aggregations within the views, complex analytical requirements can be met.<\/p>\n<p>Another advantage of views is their reusability. Once defined, views can be used in different models and explores, significantly improving the consistency and efficiency of data modeling. In addition, the clear and structured definition of views enables easy maintenance and adjustment of the data models.<strong>Example<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>view: orders {<br>\nsql_table_name: public.orders ;;&nbsp; dimension: order_date {<br>\ntype: date<br>\nsql: ${TABLE}.order_date ;;<br>\n}\n<p>measure: total_sales {<br>\ntype: sum<br>\nsql: ${TABLE}.sales ;;<br>\n}<br>\n}<\/p><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Here defines the view<em>orders<\/em>the table<em>public.orders<\/em>and contains the dimension<em>order_date<\/em>as well as the key figure<em>total_sales.<\/em><\/p>\n<h4>Dimensions<\/h4>\n<p>Dimensions are fundamental building blocks in LookML that allow data to be grouped and analyzed according to specific attributes. For example, a dimension can be a date, a product name, or a customer segment.<strong>Example<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>dimension: order_date {<br>\ntype: date<br>\nsql: ${TABLE}.order_date ;;<br>\n}<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Here defines the dimension<em>order_date<\/em>a date field that groups orders by their date.<\/p>\n<h4>Key figures<\/h4>\n<p>Metrics are numerical values &#8203;&#8203;that can be aggregated and analyzed. They make it possible to calculate important metrics such as sales, profit or number of sales.<strong>Example<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>measure: total_sales {<br>\ntype: sum<br>\nsql: ${TABLE}.sales ;;<br>\n}<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Explores<\/h3>\n<p>Explores are the interface between the data models and the end users. They provide an interface through which users can conduct interactive queries and analysis. Explores are based on views and make it possible to combine and analyze data from different tables and sources.<\/p>\n<p>An Explore represents a specific view of the data that is available to consumers of the data. Different dimensions and metrics can be combined and filtered to gain detailed and specific insights. By using joins and relationships between views, complex data structures can be mapped and analyzed.<\/p>\n<p>The flexibility of Explores allows you to create customized analyzes for different user groups. Technical users can perform in-depth queries and analysis, while non-technical users can easily and intuitively access the information they need. This adaptability makes Explores a powerful tool for data-driven decision making.<strong>Example<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>explore: orders {<br>\njoin: customers {<br>\nsql_on: ${orders.customer_id} = ${customers.id} ;;<br>\nrelationship: many_to_one<br>\n}\n<p>join: products {<br>\nsql_on: ${orders.product_id} = ${products.id} ;;<br>\nrelationship: many_to_one<br>\n}<br>\n}<\/p><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The Explore<em>orders<\/em>connects the orders to both the customer database and the product database. This enables comprehensive analysis of orders in terms of customer and product information.<\/p>\n<h3>Models<\/h3>\n<p>Models are the highest structural units in LookML and serve as containers for Views and Explores. A model defines the logical structure of data analysis and contains the configurations and relationships necessary for consistent and efficient data analysis.<\/p>\n<p>Within a model, the different views are linked together and the dependencies are defined. This makes it possible to model complex data relationships and hierarchies and ensure that data is represented correctly and consistently. Models provide a central location for managing and organizing data models and make it easier to maintain and scale the data infrastructure.<\/p>\n<p>Another advantage of the models is the possibility of modularization and reusability. By defining models, specific data structures and logic can be reused and deployed in different places. This promotes consistency and efficiency of data modeling and enables easy customization and extension of data models.<strong>Example<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>model: ecommerce {<br>\nconnection: &ldquo;ecommerce_db&rdquo;\n<p>include: &ldquo;\/views\/*.view.lkml&rdquo;<\/p>\n<p>explore: orders {<br>\njoin: customers {<br>\nsql_on: ${orders.customer_id} = ${customers.id} ;;<br>\nrelationship: many_to_one<br>\n}<br>\n}<\/p>\n<p>explore: products {<br>\njoin: categories {<br>\nsql_on: ${products.category_id} = ${categories.id} ;;<br>\nrelationship: many_to_one<br>\n}<br>\n}<br>\n}<\/p><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>In this example that defines<em>ecommerce<\/em><em>-Model<\/em>the connection to the database<em>ecommerce_db<\/em>, closes all views from the directory<em>\/views\/<\/em>and creates two Explores:<em>orders<\/em>and<em>products<\/em>. These Explores link orders to customers and products to categories.<\/p>\n<h2>Interaction of Views, Explores and Models<\/h2>\n<p>The interaction of Views, Explores and Models in LookML creates a robust and flexible data modeling architecture. Views provide the basic data structure, Explores enable user-friendly and interactive analysis, and Models organize and manage the entire data structure.<\/p>\n<p>This structure makes it possible to perform complex data analysis and create consistent and reusable data models. The separation of the different levels makes it easier to maintain and customize the data models and promotes collaboration between technical and non-technical users.<\/p>\n<p>By using LookML, companies can effectively model and analyze their data, make informed decisions, and optimize their business processes.<\/p>\n<h3>Example of full integration<\/h3>\n<p>To further illustrate how models, views and explores work in LookML, let&rsquo;s look at a detailed example of integrating various components for analyzing e-commerce data.<strong>Model: ecommerce<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>model: ecommerce {<br>\nconnection: &ldquo;ecommerce_db&rdquo;<br>\ninclude: &ldquo;\/views\/*.view.lkml&rdquo;<br>\nexplore: orders {<br>\njoin: customers {<br>\nsql_on: ${orders.customer_id} = ${customers.id} ;;<br>\nrelationship: many_to_one<br>\n}<br>\njoin: products {<br>\nsql_on: ${orders.product_id} = ${products.id} ;;<br>\nrelationship: many_to_one<br>\n}<br>\n}<br>\n}<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This model defines a connection to the database<em>ecommerce_db<\/em>and closes all views from the directory<em>\/views\/<\/em>a. It includes the Explore<em>orders<\/em>, which contains two joins: one with the<em>customers<\/em>-View and one with the<em>products<\/em>-View. This allows orders to be linked to customer data and product information.<strong>View: orders:<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>view: orders {<br>\nsql_table_name: public.orders ;;\n<p>dimension: id {<br>\nprimary_key: yes<br>\ntype: number<br>\nsql: ${TABLE}.id ;;<br>\n}<\/p>\n<p>dimension: order_date {<br>\ntype: date<br>\nsql: ${TABLE}.order_date ;;<br>\n}<\/p>\n<p>dimension: customer_id {<br>\ntype: number<br>\nsql: ${TABLE}.customer_id ;;<br>\n}<\/p>\n<p>dimension: product_id {<br>\ntype: number<br>\nsql: ${TABLE}.product_id ;;<br>\n}<\/p>\n<p>measure: total_sales {<br>\ntype: sum<br>\nsql: ${TABLE}.sales ;;<br>\n}<br>\n}<\/p><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The<em>orders<\/em>-View defines the table<em>public.orders<\/em>and contains different dimensions like<em>id<\/em>, <em>order_date, customer_id<\/em>and<em>product_id<\/em>. It also calculates the key figure<em>total_sales<\/em>by aggregating sales. This structure makes it possible to analyze orders according to various criteria and calculate total sales.<strong>View: customers:<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>view: customers {<br>\nsql_table_name: public.customers ;;\n<p>dimension: id {<br>\nprimary_key: yes<br>\ntype: number<br>\nsql: ${TABLE}.id ;;<br>\n}<\/p>\n<p>dimension: name {<br>\ntype: string<br>\nsql: ${TABLE}.name ;;<br>\n}<\/p>\n<p>dimension: email {<br>\ntype: string<br>\nsql: ${TABLE}.email ;;<br>\n}<br>\n}<\/p><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The<em>customers<\/em>-View defines the table<em>public.customers<\/em>and contains dimensions like<em>id<\/em>, <em>name<\/em>and<em>e-mail<\/em>. These dimensions enable detailed analysis of customer information, including their names and email addresses, which can be useful for personalizing marketing campaigns and customer relationships.<strong>View: products:<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td>view: products {<br>\nsql_table_name: public.products ;;\n<p>dimension: id {<br>\nprimary_key: yes<br>\ntype: number<br>\nsql: ${TABLE}.id ;;<br>\n}<\/p>\n<p>dimension: name {<br>\ntype: string<br>\nsql: ${TABLE}.name ;;<br>\n}<\/p>\n<p>dimension: category_id {<br>\ntype: number<br>\nsql: ${TABLE}.category_id ;;<br>\n}<br>\n}<\/p><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The<em>products<\/em>-View defines the table<em>public.products<\/em>and contains dimensions like<em>id<\/em>, <em>name<\/em>and<em>category_id<\/em>. These dimensions enable detailed analysis of product information, including product names and categories relevant to inventory management and sales analysis.<\/p>\n<p>By combining these components, LookML enables comprehensive data modeling and analysis of e-commerce data. The model<em>ecommerce<\/em>serves as a framework for the data structure, while the views<em>orders<\/em>, <em>customers<\/em>and<em>products<\/em>define the specific tables and dimensions. The Explore<em>orders<\/em>connects these views together to enable detailed analysis of orders, customers and products. This integration supports comprehensive business analytics and helps optimize business processes and decision-making.<\/p>\n<h3>Git and Looker<\/h3>\n<p>Looker integrates Git for version control and collaboration. This integration makes it possible to manage LookML projects and track changes. Teams can create branches to develop new features or fix bugs without affecting the major release. Changes can be reviewed and merged, promoting controlled and collaborative development. By using Git in Looker, the history of all changes remains traceable and previous versions can be restored if necessary. This seamless integration significantly improves the efficiency and reliability of data modeling processes.<\/p>\n<h2>Conclusion:<\/h2>\n<p>Detailed exploration of the Looker architecture and its components provides an in-depth understanding of how to create and manage advanced data analytics solutions. Use this knowledge to improve your&hellip;<a href=\"https:\/\/e-dialog.group\/en\/marketing-performance-measurement\/data-strategy\/\">Data strategy<\/a>to optimize and make informed business decisions.<a href=\"https:\/\/e-dialog.group\/at\/blog\/digital-analytics\/looker-technische-basics-das-a-und-o-der-datenbereitstellung-teil-2\/\">In the second part of this article I will discuss the scalability of the data, use of APIs and data usage control.<\/a><\/p>\n<h3>Explore the possibilities of Looker and make your data analysis more effective than ever. We are happy to assist you with any inquiries and implementations at:<a href=\"mailto:kontakt@e-dialog.at\">kontakt@e-dialog.at<\/a><\/h3>\n","protected":false},"excerpt":{"rendered":"<p>Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike.<br \/>\nLooker allows you to create and manage complex data pipelines without having to dive deep into the code.<br \/>\nLooker is Git-supported and thus ensures easier cross-team work through version control.<\/p>\n","protected":false},"author":1,"featured_media":4804,"comment_status":"closed","ping_status":"open","sticky":false,"template":"post-old.php","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[445,450],"channel":[],"goal":[463],"technology":[484],"c-year":[12],"class_list":["post-13042","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-analytics","category-technology","goal-digital-strategy","technology-data-studio","c-year-12"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Looker Technical Basics The Alpha And O Of Data Provision - Part 1 - e-dialog<\/title>\n<meta name=\"description\" content=\"Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike. Looker allows you to create and manage complex data pipelines without having to dive deep into the code. Looker is Git-supported and thus ensures easier cross-team work through version control.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Looker Technical Basics The Alpha And O Of Data Provision - Part 1\" \/>\n<meta property=\"og:description\" content=\"Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike. Looker allows you to create and manage complex data pipelines without having to dive deep into the code. Looker is Git-supported and thus ensures easier cross-team work through version control.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/\" \/>\n<meta property=\"og:site_name\" content=\"e-dialog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/edialog.group\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-30T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-17T10:52:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2200\" \/>\n\t<meta property=\"og:image:height\" content=\"1180\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"digitalists\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"digitalists\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/\"},\"author\":{\"name\":\"digitalists\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/person\\\/7b481e2ac90c21e4dc393821d35bb518\"},\"headline\":\"Looker Technical Basics The Alpha And O Of Data Provision &#8211; Part 1\",\"datePublished\":\"2024-07-30T00:00:00+00:00\",\"dateModified\":\"2026-04-17T10:52:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/\"},\"wordCount\":1866,\"publisher\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"articleSection\":[\"Analytics\",\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/\",\"name\":\"Looker Technical Basics The Alpha And O Of Data Provision - Part 1 - e-dialog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"datePublished\":\"2024-07-30T00:00:00+00:00\",\"dateModified\":\"2026-04-17T10:52:20+00:00\",\"description\":\"Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike. Looker allows you to create and manage complex data pipelines without having to dive deep into the code. Looker is Git-supported and thus ensures easier cross-team work through version control.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#primaryimage\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"contentUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/cookie-banner-ch.png\",\"width\":2200,\"height\":1180,\"caption\":\"|\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Looker Technical Basics The Alpha And O Of Data Provision &#8211; Part 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/\",\"name\":\"e-dialog\",\"description\":\"Data-driven Marketing &amp; Strategie\",\"publisher\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#organization\",\"name\":\"e-dialog\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/e-dialog-logo.svg\",\"contentUrl\":\"https:\\\/\\\/e-dialog.group\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/e-dialog-logo.svg\",\"width\":1,\"height\":1,\"caption\":\"e-dialog\"},\"image\":{\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/edialog.group\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/e-dialog-gmbh\\\/\",\"https:\\\/\\\/www.instagram.com\\\/e_dialog\\\/\",\"https:\\\/\\\/www.tiktok.com\\\/@e_dialog\"],\"description\":\"Bei e-dialog gestalteten wir gemeinsam die Zukunft des data-driven Marketings - mit einem gro\u00dfartigen Team aus passionierten Expert*innen.\",\"email\":\"kontakt@e-dialog.group\",\"telephone\":\"+43 1 309 09 09\",\"legalName\":\"e-dialog GmbH\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/#\\\/schema\\\/person\\\/7b481e2ac90c21e4dc393821d35bb518\",\"name\":\"digitalists\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g\",\"caption\":\"digitalists\"},\"sameAs\":[\"https:\\\/\\\/e-dialog.group\"],\"url\":\"https:\\\/\\\/e-dialog.group\\\/en\\\/blog\\\/author\\\/digitalists\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Looker Technical Basics The Alpha And O Of Data Provision - Part 1 - e-dialog","description":"Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike. Looker allows you to create and manage complex data pipelines without having to dive deep into the code. Looker is Git-supported and thus ensures easier cross-team work through version control.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/","og_locale":"en_US","og_type":"article","og_title":"Looker Technical Basics The Alpha And O Of Data Provision - Part 1","og_description":"Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike. Looker allows you to create and manage complex data pipelines without having to dive deep into the code. Looker is Git-supported and thus ensures easier cross-team work through version control.","og_url":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/","og_site_name":"e-dialog","article_publisher":"https:\/\/www.facebook.com\/edialog.group","article_published_time":"2024-07-30T00:00:00+00:00","article_modified_time":"2026-04-17T10:52:20+00:00","og_image":[{"width":2200,"height":1180,"url":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","type":"image\/png"}],"author":"digitalists","twitter_card":"summary_large_image","twitter_misc":{"Written by":"digitalists","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#article","isPartOf":{"@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/"},"author":{"name":"digitalists","@id":"https:\/\/e-dialog.group\/en\/#\/schema\/person\/7b481e2ac90c21e4dc393821d35bb518"},"headline":"Looker Technical Basics The Alpha And O Of Data Provision &#8211; Part 1","datePublished":"2024-07-30T00:00:00+00:00","dateModified":"2026-04-17T10:52:20+00:00","mainEntityOfPage":{"@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/"},"wordCount":1866,"publisher":{"@id":"https:\/\/e-dialog.group\/en\/#organization"},"image":{"@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#primaryimage"},"thumbnailUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","articleSection":["Analytics","Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/","url":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/","name":"Looker Technical Basics The Alpha And O Of Data Provision - Part 1 - e-dialog","isPartOf":{"@id":"https:\/\/e-dialog.group\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#primaryimage"},"image":{"@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#primaryimage"},"thumbnailUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","datePublished":"2024-07-30T00:00:00+00:00","dateModified":"2026-04-17T10:52:20+00:00","description":"Looker is a data platform based on the use of LookML, a proprietary modeling language that abstracts SQL, making it easier to create and manage data models. It enables integration and analysis of data from a variety of sources, supports both relational and non-relational databases, and provides a seamless user experience for data analysts and business users alike. Looker allows you to create and manage complex data pipelines without having to dive deep into the code. Looker is Git-supported and thus ensures easier cross-team work through version control.","breadcrumb":{"@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#primaryimage","url":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","contentUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/08\/cookie-banner-ch.png","width":2200,"height":1180,"caption":"|"},{"@type":"BreadcrumbList","@id":"https:\/\/e-dialog.group\/en\/blog\/looker-technical-basics-the-alpha-and-o-of-data-provision-8211-part-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/e-dialog.group\/en\/"},{"@type":"ListItem","position":2,"name":"Looker Technical Basics The Alpha And O Of Data Provision &#8211; Part 1"}]},{"@type":"WebSite","@id":"https:\/\/e-dialog.group\/en\/#website","url":"https:\/\/e-dialog.group\/en\/","name":"e-dialog","description":"Data-driven Marketing &amp; Strategie","publisher":{"@id":"https:\/\/e-dialog.group\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/e-dialog.group\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/e-dialog.group\/en\/#organization","name":"e-dialog","url":"https:\/\/e-dialog.group\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/e-dialog.group\/en\/#\/schema\/logo\/image\/","url":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/06\/e-dialog-logo.svg","contentUrl":"https:\/\/e-dialog.group\/wp-content\/uploads\/2025\/06\/e-dialog-logo.svg","width":1,"height":1,"caption":"e-dialog"},"image":{"@id":"https:\/\/e-dialog.group\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/edialog.group","https:\/\/www.linkedin.com\/company\/e-dialog-gmbh\/","https:\/\/www.instagram.com\/e_dialog\/","https:\/\/www.tiktok.com\/@e_dialog"],"description":"Bei e-dialog gestalteten wir gemeinsam die Zukunft des data-driven Marketings - mit einem gro\u00dfartigen Team aus passionierten Expert*innen.","email":"kontakt@e-dialog.group","telephone":"+43 1 309 09 09","legalName":"e-dialog GmbH"},{"@type":"Person","@id":"https:\/\/e-dialog.group\/en\/#\/schema\/person\/7b481e2ac90c21e4dc393821d35bb518","name":"digitalists","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8acd1abfb5ef9f78793e3164334d4533968653b26cbd89b6cf0eb4e5483434e4?s=96&d=mm&r=g","caption":"digitalists"},"sameAs":["https:\/\/e-dialog.group"],"url":"https:\/\/e-dialog.group\/en\/blog\/author\/digitalists\/"}]}},"_links":{"self":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts\/13042","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/comments?post=13042"}],"version-history":[{"count":3,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts\/13042\/revisions"}],"predecessor-version":[{"id":15574,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/posts\/13042\/revisions\/15574"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/media\/4804"}],"wp:attachment":[{"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/media?parent=13042"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/categories?post=13042"},{"taxonomy":"channel","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/channel?post=13042"},{"taxonomy":"goal","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/goal?post=13042"},{"taxonomy":"technology","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/technology?post=13042"},{"taxonomy":"c-year","embeddable":true,"href":"https:\/\/e-dialog.group\/en\/wp-json\/wp\/v2\/c-year?post=13042"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}