Microsoft Fabric is an AI-powered, unified platform designed to simplify and enhance data analytics across organizations. It combines powerful tools for data engineering, data science, and business intelligence into one platform, enabling users to streamline their workflows, run complex analytics, and make better, data-driven decisions. Whether dealing with large datasets, running advanced models, or generating actionable business insights, Microsoft Fabric offers the tools needed for success.
Microsoft Fabric introduced T-SQL Notebooks, a new feature that enables SQL developers to write and execute T-SQL queries directly within notebooks. This capability is a big step for data professionals — especially for those who handle data warehouses — as it combines T-SQL with the interactive and collaborative experience of notebooks. Running T-SQL code inside an interactive notebook is a much more flexible, efficient way to manage, analyze, and document your data processes. T-SQL Notebooks in Microsoft Fabric is used for Data Analysis.
What Is T-SQL Notebooks in Microsoft Fabric?
T-SQL Notebooks is a new feature in Microsoft Fabric that lets developers run T-SQL queries directly inside a notebook. Notebooks are interactive documents that allow you to combine code, text, and visualizations. They are widely used for documenting a process, performing data analysis, and collaborating with others.
With T-SQL Notebooks, developers can:
- Write T-SQL code for complex queries.
- Visualize query results using built-in charting tools.
This new feature supports SQL developers by combining the power of SQL development with the flexibility and collaborative capabilities of notebooks. It allows you to manage complex queries, document your steps, and run SQL directly on connected data warehouses or analytics endpoints.
Key Features of T-SQL Notebooks in Microsoft Fabric
1. Running T-SQL Queries on Data Warehouses
T-SQL Notebooks are best known for their ability to run queries directly on Data warehouses and SQL Analytics endpoints. This allows you to work with your data warehouse directly from your Notebook, running queries and working with your data directly from within a single tool rather than switching back and forth between tools.
T-SQL Notebooks also enable cross-database queries. You can extract data from different warehouses or databases, join the data, and derive insights from multiple sources all within the same Notebook.
2. Markdown Cells for Documentation
Documentation is essential when working with complex data and queries, and T-SQL Notebooks make this easier with Markdown cells. Markdown is a lightweight markup language for formatting text. It can help you document your process, communicate the purpose and complexity of queries, and make collaboration more efficient.
You can add explanations, comments, and detailed instructions alongside your SQL code, improving the clarity of your work. Whether you’re working on a team project or sharing insights with others, Markdown makes collaboration more efficient.
3. Graphical Representation with Charting Features
T-SQL Notebooks include built-in charting capabilities, allowing you to visualize the results of your queries. This is particularly helpful for data analysis and reporting.
You can create various types of charts, such as:
These visualizations allow you to see the trends, distributions, and relationships in your data. For example, from the results of your SQL queries, you can visualize sales performance, customer behavior, or inventory trends.
4. Collaboration and Co-authoring
Microsoft Fabric allows collaboration within notebooks. Multiple users can co-author and edit the same Notebook simultaneously. This is ideal for teams working on complex data projects, as everyone can contribute and refine queries together.
Collaborators can add their thoughts using Markdown cells, discuss query results, and even share visualizations. It makes teamwork seamless and ensures that everyone is on the same page.
5. Scheduling and Automating T-SQL Notebook Runs
The capability to schedule and automate T-SQL notebooks is another powerful feature. ou can schedule your queries to run at regular intervals or trigger them using specific events, such as new data uploads.
This integration with data engineering pipelines enables the setup of automated workflows, making sure that your queries are executed on schedule without human intervention.

How to Create and Use a T-SQL Notebooks in Microsoft Fabric
Step 1: Creating a New T-SQL Notebook
To start with T-SQL Notebooks, open Microsoft Fabric and create a new notebook. Here’s how you can do it:
- Go to the new item menu.

- Choose Notebook from the list.

- Select a workspace and the appropriate data warehouse.

- Name your Notebook, e.g., “T-SQL Notebook Demo.”

This process creates an empty notebook where you can start writing your SQL queries.
Step 2: Writing and Running T-SQL Queries
Now that your Notebook is set up, you can begin writing T-SQL queries. You’ll see code cells where you can input your SQL code. Once the code is ready, you can click the Run button to execute it.

When running T-SQL queries, each code cell is treated as a separate SQL session, meaning the state of the data doesn’t carry over between cells. For example, if you create a table in one cell, it won’t be available in another cell unless you reference it.
You can also run multiple queries within the same cell, which will execute as part of the same session. This helps you manage multiple related queries together.
Step 3: Managing and Executing Cells
Each query can be run independently, or you can run all queries in the Notebook at once. Microsoft Fabric provides options to:
- Run selected queries: Execute only specific parts of the Notebook.
- Run all queries: Execute the entire Notebook in one go.
You can also organize your queries into multiple cells, allowing you to logically separate different parts of your work, such as data creation, transformation, and analysis.
Microsoft Fabric: A Game-Changer for Data Engineering and Analytics
Unlock new possibilities in data engineering and analytics with Microsoft Fabric’s robust, all-in-one solution for streamlined insights and efficiency.
Learn More
Advanced Features of T-SQL Notebooks in Microsoft Fabric
1. Save Query Results as Tables or Views
With T-SQL Notebooks, you not only execute queries but also save the output. You can save the data as a table or view after running a query. This is incredibly useful for saving intermediate results or generating new datasets as a result of your analysis.
To save results, just:
- Select the query results.
- Use the “Save as Table” or “Save as View” options in the notebook menu.

- Choose the schema and table/view name.

This feature makes it easy to create reusable datasets directly from your queries.
2. Query Customization and Visualization
When working with your data, you can customize the visualization of your query results. For instance, while handling sales data, you can generate bar charts where sales are represented by category, geographic area, or time. You can chart the data in different ways, customizing how it is grouped/displayed.

You can also modify the aggregation settings (e.g. sum, average) and alternative visual expressions like pie charts or line graphs. This brings a powerful layer of flexibility when analyzing data directly in the Notebook.
3. Exporting Data and Results
You might want to export your data after running your queries and visualizing the results. T-SQL Notebooks in Microsoft Fabric support exporting data in several formats:

You can export your data tables or even the charts you’ve created, making it easy to share results with others or use the data in other applications.
Transform Your Data Analytics with Microsoft Fabric!
Partner with Kanerika for Expert Fabric implementation Services
Book a Meeting
Key Considerations of T-SQL Notebooks in Microsoft Fabric
1. Identity Columns and Primary Keys
- T-SQL notebooks do not support identity columns or primary keys.
- You cannot use them to automatically increment values or enforce unique rows.
- Data management must be done manually when creating tables to ensure uniqueness and data integrity.
2. SQL Session Management
- Each code cell in a notebook runs in its own session.
- This can be an advantage or limitation, depending on your workflow.
- If you need to execute related queries together in the same session, you must ensure they are in the same code cell.
- Managing session boundaries can be challenging for tasks that require maintaining a continuous connection to the same dataset.
3. Limited SQL Functionality
- Some advanced T-SQL functions and features available in traditional SQL Server environments may not be fully supported in notebooks.
- Certain SQL Server-specific functions, data types, or commands might not be available or may work differently in T-SQL notebooks within Microsoft Fabric.
- It’s important to test queries for compatibility and adjust your code as needed.

T-SQL Notebooks in Microsoft Fabric: Use Cases
1. Create a Table
The first step is to create a table to store data. In Microsoft Fabric, you can do this using the CREATE TABLE statement. You define the table structure, including column names, data types, and constraints (if necessary). For instance:

This command creates a Sales table with four columns: SaleID, ProductName, Quantity, and Price. You can run this query in a T-SQL notebook cell, and once the query is executed, the table will be created in the connected database.
2. Insert Data
After creating the table, you can insert data into it using the INSERT INTO statement. This allows you to populate the table with initial data for analysis. For example:

This SQL command inserts three records into the Sales table. Running this query will add the data to your table, which can then be queried or visualized within the Notebook.
3. Update Data
Once the table is populated with data, you may need to update existing records. For example, you can update the quantity or price if a sale was incorrectly recorded. Here’s how you can do it:

This query will update the price of all laptops in the Sales table to 950.00. It’s important to remember that updates can be specific to certain rows based on a condition, like in this case, where we used WHERE ProductName = ‘Laptop’ to target only laptops.
4. Delete Data
You might need to delete data from a table for various reasons, such as removing outdated records or correcting mistakes. You can use the DELETE FROM statement to delete a specific row or all rows from a table. For example:

This query will remove all rows from the Sales table where the product is ‘Tablet.’ If you want to delete all records from a table but keep the table structure intact, you can run:

This will remove all the records from the table, leaving it empty for future use.
5. Drop a Table
Sometimes, you may no longer need a table; the best course of action is to drop it entirely from the database. The DROP TABLE statement allows you to delete both the table structure and its data:

Once executed, this command will permanently remove the Sales table from the database. It’s important to be cautious with this operation, as it cannot be undone.
6. Add a New Column
As your data model evolves, you may need to add new columns to your table. This can be done using the ALTER TABLE command. For example, let’s say you want to track the date when each sale was made. You can add a SaleDate column like this:

This command adds a new SaleDate column to the existing Sales table. After adding the column, you can update the records with appropriate values using the UPDATE command.
7. Modify a Column
If an existing column’s data type or size needs to be changed, you can modify it using the ALTER COLUMN statement. For instance, if the ProductName column needs to allow longer product names, you can change its size:

This will extend the ProductName column to accommodate up to 255 characters instead of the original 100. This flexibility allows you to adapt your table structure as requirements evolve.
8. Adding Constraints
You can also define constraints on columns to enforce data integrity. For example, if you want to make sure that the Quantity column only accepts positive numbers, you can add a CHECK constraint:

This constraint ensures that only positive values can be inserted into the Quantity column. Constraints help maintain the accuracy and validity of the data within your tables.
T-SQL Notebooks in Microsoft Fabric: SQL Sessions
Understanding SQL sessions is crucial for managing your data correctly. Each code cell in the Notebook runs in its own isolated session. This means that changes made in one cell, such as creating or modifying tables, are not accessible in another cell unless both cells share the same session. Here’s a breakdown of how SQL sessions work:
1. What is a SQL Session?
- An SQL session is a temporary environment in which SQL queries are executed. Each code cell in a notebook is treated as a separate session.
- Data created or modified in one session will not be available in another session unless the cells are executed together as part of the same session.
2. Why Sessions Matter
- Isolation: Each code cell operates independently, meaning operations like creating tables, inserting data, or updating records will not transfer between cells unless managed properly.
- Data Flow Control: If your workflow requires data access across sessions, you must ensure this. You can do this by executing related queries together in the same cell or managing data sharing across cells.
3. Managing SQL Sessions in Notebooks
To manage SQL sessions effectively:
- Use Single Cell for Related Queries: If you have multiple related queries (for example, to create a table, insert data, and update records), putting them in a single code cell means they will run in the same session. In this way, the data flows through the sequence without interruption.
- Multi-cell Operations: If you need to run queries across multiple cells, ensure they reference data correctly across sessions. For example, if a table is created in one cell, you can reference it in subsequent cells, but only if executed sequentially in the same notebook session.
- Ensuring Data Consistency Across Sessions: If you’re working with separate cells that need to share data, managing transaction consistency is essential. To ensure changes persist, you can commit them to external resources or use global temporary tables to maintain data across multiple sessions.
4. Common Pitfalls
- Data Not Persisting Across Cells: Data created in one session won’t automatically carry over into another session unless cells are executed sequentially or explicitly linked.
- Managing Multiple Sessions: Ensuring data consistency between sessions can be tricky, especially when using separate cells for operations that need to reference the same data.
5. When to Use Separate Sessions
Separate sessions are useful when you want:
- Parallel execution: Running independent queries that don’t depend on each other.
- Data isolation: Keeping parts of your workflow isolated to prevent interference between different tasks.
Partner with Kanerika for to Enhance Your Analytics with Efficient Microsoft Fabric Deployment
Kanerika is a top provider of data and AI solutions, helping organizations maximize Microsoft Fabric. With our expertise, businesses can quickly unlock valuable insights, simplify complex data workflows, and enhance decision-making processes.
As a certified Microsoft Data and AI solutions partner, we use Microsoft Fabric’s unified data analytics features to create custom solutions that transform raw data into meaningful business insights. Our solutions streamline data transformation, automate everyday tasks, and let data teams focus on more important projects.
Adopting Microsoft Fabric early on has helped organizations across industries achieve real results. Our hands-on experience with the platform has allowed companies to speed up their digital transformation, improve efficiency, and discover new growth opportunities.
Partner with Kanerika today to take your data to the next level!
FAQ
[faq-schema id=”88366″]