Related resources for SQL
  • BigQuery to Azure SQL Database using Azure Synapse Analytics7/26/2024 5:29:48 AM. In this video, I covered how to use Azure Synapse Analytics to integrate data from Google Big Query to Azure SQL Database.
  • SQL Essentials: GROUP BY vs. PARTITION BY Explained7/26/2024 4:08:59 AM. Discover how GROUP BY aggregates data into summary rows, while PARTITION BY divides data into partitions for window functions. Master these techniques to enhance your SQL querying skills.
  • SQL Performance (2), Optimized SELECT Query (B)7/25/2024 5:41:20 PM. This article discuss SQL performance on optimizing SELECT Query, Second Part.
  • @@ROWCOUNT in SQL Server7/25/2024 8:11:47 AM. @@ROWCOUNT is a SQL Server function used to retrieve the number of rows affected by the last executed statement. It provides valuable insights for data manipulation and validation processes, helping t
  • Creating Maintaining Utilizing Transactions in SQL Server7/25/2024 5:25:28 AM. A transaction in SQL Server is a sequence of operations performed as a single logical unit of work. A transaction has four main properties, often referred to by the acronym ACID: Atomicity, Consistenc
  • UNION vs UNION ALL in SQL Server7/24/2024 9:28:49 AM. The SQL UNION operator combines the results of two or more SELECT statements, removing duplicate rows. In contrast, UNION ALL combines results while retaining all duplicates. UNION may impact performa
  • Connection with SQL and queries.7/24/2024 8:08:46 AM. Explore the essentials of connecting to SQL databases and executing efficient queries. Learn about various SQL commands, database management techniques, query optimization strategies, and best practic
  • Understanding Table Partitioning in SQL7/24/2024 6:07:08 AM. Table partitioning is a technique in database design that divides large tables into smaller, manageable pieces called partitions. This approach improves query performance, enhances manageability, and
  • Understanding Normalization in SQL7/24/2024 4:47:41 AM. Normalization is a database design process that reduces redundancy and improves data integrity by organizing data into tables and defining relationships. It involves applying normal forms (1NF, 2NF, 3
  • Creating Triggers in SQL Server7/24/2024 4:44:18 AM. SQL Server triggers are automated procedures that execute in response to specific events, enhancing data integrity and enforcing business rules. They include DML triggers (AFTER, INSTEAD OF) for data
  • Real-World ADO.NET Use Cases: Case Studies and Best Practices7/24/2024 4:41:43 AM. ADO.NET remains a robust data access technology within the .NET framework, even as newer technologies emerge. Its ability to manage data interactions efficiently makes it suitable for a variety of rea
  • Performance Optimization in ADO.NET: Tips and Techniques7/23/2024 9:19:54 AM. Optimize ADO.NET performance by leveraging connection pooling to reduce overhead, using efficient command execution strategies such as stored procedures and batch processing, and retrieving data effec
  • Difference Between DELETE and TRUNCATE in SQL Server7/23/2024 9:18:59 AM. In SQL Server, DELETE and TRUNCATE are used to remove data from tables, each with distinct characteristics. DELETE is a DML command that logs each row deletion, supports triggers, and respects foreign
  • Efficient Data Retrieval with ADO.NET SqlDataReader 7/23/2024 6:15:48 AM. SqlDataReader in ADO.NET provides fast, forward-only data retrieval from SQL Server databases. It reads data as a stream, minimizing memory usage, and making it ideal for large datasets. Unlike SqlDat
  • Advanced ADO.NET Features for Complex Data and Async Operations7/23/2024 4:39:40 AM. ADO.NET remains essential for database interactions in . NET. Advanced features include handling complex types with SQL Server's UDTs and XML data, managing binary data with VarBinary, and leverag
  • Security Best Practices in ADO.NET7/23/2024 3:51:46 AM. ADO.NET is a powerful data access technology in the .NET framework, enabling developers to interact with databases. This article explores best practices for protecting sensitive data, preventing SQL i
  • Executing Commands with ADO.NET7/22/2024 10:02:34 AM. Explore how to use ADO.NET’s SqlCommand class for executing SQL queries and stored procedures in .NET applications. This guide covers setting up SqlConnection, using methods like ExecuteNonQuery, Exec
  • Connecting to a MySQL Database Over LAN Using SQL Workbench7/22/2024 8:18:50 AM. Learn how to connect to a MySQL database over a local area network (LAN) using SQL Workbench. This guide covers finding the IP address of the MySQL server, configuring it for remote access, setting up
  • Setting Up Your First ADO.NET Project7/22/2024 7:29:17 AM. ADO.NET is a set of classes that expose data access services for .NET Framework programmers. It provides a rich set of components for creating distributed, data-sharing applications. This guide will w
  • Detailed Explanation of Procedure and Function in SQL Server7/22/2024 6:22:57 AM. Stored procedures are precompiled sets of one or more SQL statements that can be executed together. Functions in SQL Server are essential database objects that contain a series of SQL statements and p
  • Working with Stored Procedures in ADO.NET7/22/2024 6:17:00 AM. Stored procedures are a powerful feature in database management systems that allow you to encapsulate complex logic and operations on the server side. When using ADO.NET in a .NET application, stored
  • Working with Connection Objects in ADO.NET7/22/2024 6:14:31 AM. ADO.NET is a set of classes that expose data access services for .NET Framework programmers. A primary feature of ADO.NET is the ability to work with disconnected data. However, working directly with
  • ASP.NET C# Display Bootstrap Bar Chart from Database Values7/22/2024 5:58:27 AM. Create a stored procedure in SQL to fetch monthly audit data and display it in an ASP.NET application. Use Visual Studio to create a master page with jQuery and Flot libraries. Serialize the data to J
  • Understanding the SQL Query Execution Order7/22/2024 4:41:19 AM. SQL (Structured Query Language) is essential for interacting with relational databases, and mastering its intricacies can significantly enhance your data querying skills. One of the fundamental aspect
  • Breaking Down SQL Complexity7/21/2024 4:03:03 AM. Choosing between Common Table Expressions (CTEs) and subqueries in SQL Server depends on readability, maintainability, and performance. Subqueries are ideal for simpler, single-use cases, while CTEs e
  • Interesting Query (2) --- Whtch Manager has no Employee with7/19/2024 10:12:18 PM. This article will discuss interesting queries, more.
  • Interesting Query (1) --- Find Second Highest Salary7/19/2024 10:11:51 PM. This article will discuss several most popular, complex, and interesting SQL queries and their solutions.
  • Interesting Query (3) --- Get Rolling Average7/19/2024 10:09:29 PM. This article will discuss Interesting Query (3) --- Get Rolling Average
  • SQL- Self Join And Group By7/19/2024 9:00:50 PM. This article will discuss SQL: Self Join and Group by.
  • How to Create Server-Side Pagination, Searching, and Sorting Stored Procedure7/19/2024 1:36:54 PM. This article demonstrates how to create a SQL Server stored procedure for server-side pagination, searching, and sorting. The procedure efficiently handles large datasets by dynamically calculating to
  • Dynamically Creating a Table in SQL Server from Information Schema7/19/2024 11:01:55 AM. This SQL script dynamically creates a table in SQL Server by utilizing INFORMATION_SCHEMA and system views. It constructs the table definition, including columns, data types, constraints, and default
  • Unit Test (2) --- TSQLT7/18/2024 10:39:19 PM. This article will discuss TSQLT Unit Test.
  • Hosting ASP.NET Website7/18/2024 3:13:24 PM. To host your ASP.NET website, register a domain name and log in to your hosting account. Upload your website files to the httpdocs directory. Create a database via phpMyAdmin, then link it to your sit
  • Programming in Practice - LINQ to SQL - Explained7/18/2024 10:39:53 AM. Discover the power of LINQ to SQL in this comprehensive guide. Learn how to seamlessly integrate LINQ queries with SQL databases using the .NET framework. From setting up your environment to executing
  • Implementing a Audit Trail in ASP.NET Core Web API7/17/2024 12:18:56 PM. Learn how to implement a robust audit trail in an ASP.NET Core Web API using Entity Framework Core and SQL Server. This comprehensive guide covers setting up the project, defining data models like Pro
  • SQL Server Collations: Case Sensitivity and Insensitivity7/17/2024 6:03:08 AM. This article explains SQL Server collations, which dictate data sorting and comparison rules. It highlights case-sensitive (CS) and case-insensitive (CI) collations with practical SQL query examples.
  • Working with SQLite3 in Python7/17/2024 6:02:20 AM. SQLite is a lightweight, serverless, and self-contained relational database engine. It's an excellent choice for small to medium-sized applications, especially when you need a database that doesn&
  • Generic Repository with EF Core Store Procedure in .NET Core 87/16/2024 12:40:58 PM. Entity Framework Core (EF Core) empowers .NET developers with seamless database interaction through object-relational mapping (ORM) and support for stored procedures. It optimizes performance by execu
  • What Is DDL and DML in SQL7/16/2024 10:39:15 AM. Explore the fundamentals of SQL with a focus on DDL (Data Definition Language) and DML (Data Manipulation Language). Learn how DDL commands define database structure and schema, while DML commands man
  • A Fix to SQL Server Error 18456 - Login Failed7/15/2024 5:28:40 PM. This article is to discuss A Fix to SQL Server Error 18456 - Login Failed.
  • Concurrency in SQL Server7/14/2024 2:56:26 PM. This article will discuss Concurrency in SQL Server
  • A Fix To SQL Server Error 1069 - The Service Did Not Start Due To A Login Failure7/13/2024 8:14:56 PM. In this article, you will learn how to fix to sql server error 1069 - the service did not start due to a login failure.
  • A Fix To PolyBase Issue In SQL Server 2019 Developer Edition7/13/2024 8:14:36 PM. This article will introduce the problem, the reason and the fix related to a PolyBase issue when installing the SQL Server Developer Edition 2019.
  • SQL Server Installation: 2022 Developer Edition --- Basic7/13/2024 3:18:01 PM. This article discusses the SQL Server installation --- Basic
  • SQL Server Installation: 2019 Developer Edition --- Custom7/13/2024 3:09:48 PM. This article describes the process of installation of SQL Server.
  • Database Recovery (1-2): Recover Deleted Table Data "without Backup" in SQL Server7/13/2024 2:09:49 PM. This article will discuss Recover Deleted Table Data "without Backup" in SQL Server.
  • Database Recovery (1): Clone Database From One Instance To Another In SQL Server7/13/2024 2:08:27 PM. In this article,you will learn how to clone database or tables from one instance to another in SQL Server.
  • Database Recovery (1-2-1): Use Transaction Log to Recover the Deleted or Modified Data7/13/2024 2:03:01 PM. This article is to use of Transaction Log to Recover the Deleted or Modified Data. The SQL Server Transaction Log plays an important role in recovering deleted or modified data if you mistakenly perfo
  • Error handling in Transact-SQL (T-SQL) 7/13/2024 10:59:58 AM. Effective error handling in T-SQL (Transact-SQL) is vital for managing unexpected issues in database operations. Using TRY-CATCH blocks, RAISEERROR, and error functions like ERROR_MESSAGE and ERROR_NU
  • How to Convert varbinary to Base64 String in SQL Server7/12/2024 8:47:14 AM. Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for w
  • PostgreSQL Database Backup and Restore using pgAdmin7/12/2024 2:09:20 AM. This article provides a step-by-step guide on how to backup and restore a PostgreSQL database using the pgAdmin GUI. It covers the prerequisites, the detailed process of creating backups, and restorin
  • Azure Cosmos DB for Modern Applications7/10/2024 1:59:24 PM. Dive into Azure Cosmos DB with our comprehensive guide tailored for modern applications. Explore its scalable NoSQL capabilities, global distribution, multi-model support, and robust partitioning stra
  • Integrating an Online Payment Gateway in ASP.NET using ADO.NET7/10/2024 8:50:49 AM. Integrating an online payment gateway in ASP.NET using ADO.NET involves setting up a payment gateway account, creating an HTML form to collect payment details, redirecting to the payment gateway for p
  • SQL: Writing Efficient Queries7/10/2024 12:27:40 AM. Learn how to optimize SQL queries for better performance with our guide on "SQL: Writing Efficient Queries." Discover techniques for improving query speed, such as indexing strategies, query
  • Implementing MongoDB with .NET7/8/2024 7:45:54 PM. Learn to implement CRUD operations, manage data efficiently, and leverage the power of MongoDB's NoSQL capabilities alongside the robust .NET framework for scalable backend development.
  • Automated SQL Service Monitoring using PowerShell7/8/2024 8:43:42 AM. Mastering PowerShell: Your Ultimate Guide to Automated SQL Service Monitoring" is your comprehensive resource for leveraging PowerShell to streamline and enhance SQL service monitoring.
  • Check and Detect T SQL Code Analysis7/8/2024 7:38:43 AM. In this session, we’ll review the SqlCheck, ScriptDOM, and SQL projects code analysis options such that you can confidently add code analysis to the SQL components of your applications.
  • UNION ALL SQL Server: Syntax, Usage, and Example7/8/2024 5:51:29 AM. UNION ALL in SQL Server is a powerful command used to combine the result sets of two or more SELECT statements, including all duplicate rows. This guide covers the syntax, usage, and practical example
  • Understanding Synonyms in SQL Server7/8/2024 5:50:27 AM. Understanding Synonyms in SQL Server" delves into the concept and implementation of synonyms within SQL Server. This guide covers how to create, use, and manage synonyms to simplify SQL queries,
  • New Features In SQL Server 20167/4/2024 7:38:14 AM. SQL Server 2016 introduces numerous features for enhanced database management, including Always Encryption for secure data storage, JSON support for data interchange, Row Level Security for access con
  • SQL Server 2016 - How To Detect The Current Cumulative Update/Service Pack That Was Installed7/4/2024 7:36:25 AM. Learn how to detect the current Cumulative Update or Service Pack installed on SQL Server using various methods like ServerProperty in T-SQL, SQL Server Management Studio, Configuration Manager, and P
  • Getting Started with Docker-Compose for ASP.NET Core and MSSQL7/4/2024 4:33:24 AM. This article guides you through setting up a Docker Compose environment for an ASP.NET Core application and an MSSQL database, covering creation, configuration, and verification steps for efficient co
  • Ranking Functions in SQL: RANK, DENSE_RANK, and ROW_NUMBER7/3/2024 12:19:25 PM. Learn how these powerful functions operate within SQL queries to assign ranking values based on specified criteria, enhancing your ability to analyze and manipulate data efficiently in relational data
  • How to Seed Identity in SQL Server7/3/2024 11:52:20 AM. Discover SQL Server's IDENTITY columns for automatic unique number generation. Learn to create tables with IDENTITY, insert data without specifying IDs, seed values with DBCC CHECKIDENT, manage ex
  • Store Locations and Retrieve Dropdown Data with Stored Procedure7/3/2024 6:06:48 AM. Explore efficient location data management with this guide on storing locations in a database table. Learn to utilize stored procedures for streamlined retrieval of dropdown data, ensuring optimized d
  • Creating a User Login System with SQL Server Stored Procedures7/2/2024 7:12:28 AM. Implementing secure user authentication in SQL Server involves creating a UsersDetails table for storing credentials and developing a LoginUser stored procedure. This procedure validates user inputs a
  • Query to Find SQL Server Version7/2/2024 7:11:42 AM. To identify the version of SQL Server running, use the query SELECT @@VERSION AS 'SQL Server Version';. This returns detailed information including version number, edition (like Developer Edit
  • Query to find Table Name, Row Count, Column Count and Data Size7/2/2024 6:59:25 AM. This guide covers techniques to query and display table names, row counts, column counts, and data sizes efficiently. Ideal for database administrators and developers seeking to optimize data manageme
  • Transparent Data Encryption (TDE) in SQL Server7/1/2024 7:04:40 AM. Transparent Data Encryption (TDE) in SQL Server encrypts data at rest, ensuring database and log file protection against unauthorized access. TDE uses a database encryption key (DEK), secured by a cer
  • Database Objects Related to Table in Database - Transact SQL Query6/29/2024 8:53:41 PM. The SQL query retrieves distinct object names and their types from SYSCOMMENTS and SYSOBJECTS system tables, categorizing objects by their XTYPE values ('P' for procedure, 'V' for view
  • SQL Command Types6/28/2024 9:08:22 AM. SQL, or Structured Query Language, is essential for managing data in relational databases (RDBMS). It enables tasks like retrieving, updating, inserting, and deleting data. SQL commands are categorize
  • VIEW in SQL with example6/28/2024 9:08:12 AM. SQL Views act as virtual tables based on predefined queries, streamlining data access and management. They eliminate the need to rewrite complex joins or aggregations in your applications. Views enhan
  • UNION SQL Server: Syntax, Usage, and Example6/28/2024 8:22:44 AM. This article delves into the UNION operator in SQL Server, explaining its syntax and practical usage. You'll learn how to combine results from multiple SELECT statements into a single result set,
  • Read, Combine and Analyse ADLS Gen2 CSV files using Azure Synapse Spark SQL6/28/2024 7:30:27 AM. This video shows how to use Azure Synapse Analytics to read, combine, and analyze multiple CSV files residents in ADLS Gen2 using Spark SQL.
  • IIF in Microsoft SQL Server6/28/2024 6:29:20 AM. IIF function in SQL, also known as "Immediate If," provides a concise way to perform conditional evaluations within queries. It allows SQL developers to return different values based on whet
  • Xamarin.Forms - Deep Linking Application Using SQLite6/26/2024 10:53:03 AM. Learn to build Xamarin.Forms applications with deep linking using C# and XML. This tutorial covers creating a cross-platform email client example where notifications open specific app sections. Explor
  • Audit Trail And Data Versioning With C# And MVC6/26/2024 10:24:23 AM. This article describes implementing an audit trail and data versioning system using C# reflection and SQL databases. It focuses on medical records applications, outlining database setups, MVC applicat
  • Implementing MongoDB with .NET6/26/2024 6:35:29 AM. Learn essential techniques for data persistence, leveraging MongoDB's document-oriented structure, implementing CRUD operations with C#, and optimizing performance using the MongoDB .NET driver.
  • Getting Started With ElasticSearch6/25/2024 10:06:40 AM. Elasticsearch is a powerful open-source tool for real-time searching and analytics. It stores data in JSON format and supports RESTful interactions via HTTP verbs like GET, POST, PUT, and DELETE. Inte
  • SQL Merge Statement: Syntax, Usage, and Example6/25/2024 5:51:39 AM. The SQL MERGE statement combines INSERT, DELETE, and UPDATE operations into a single query, synchronizing data between source and target tables based on key fields. This powerful command efficiently h
  • Integrating Azure SQL Database with Azure Functions - Azure Essentials Series - Ep: 46/24/2024 8:23:23 AM. In this episode, you'll learn how these two services can work together to build scalable, serverless applications that efficiently manage and process data.
  • Caching Strategies in Angular and .NET Core6/24/2024 5:49:09 AM. Caching enhances web application performance and scalability. In Angular, use HTTP interceptors, service workers, local storage, or IndexedDB for client-side caching. In .NET Core, leverage in-memory
  • Learn CRUD Operations in SQL Server with Real-World Examples6/21/2024 7:09:54 AM. CRUD represents the four basic operations: Create, Read, Update, and Delete, essential for managing persistent data in SQL Server. The Create operation involves adding new records to a table using the
  • Memory Management in SQL Server6/21/2024 6:46:44 AM. Memory management in SQL Server is crucial for optimizing database performance. This involves configuring memory allocation, managing the buffer pool, and tuning queries to ensure efficient use of res
  • SignalR Chat App With ASP.NET WebForm And BootStrap - Part One6/20/2024 9:53:00 AM. Learn how to integrate and use SignalR with ASP.NET WebForm to create a real-time chat application. This tutorial covers user registration, login authentication, chat functionality, and changing profi
  • Insert And Display Records With Model Binder Using ASP.NET MVC6/20/2024 6:57:07 AM. Learn how to manage records in ASP.NET MVC using Model Binder with Entity Data Model and SQL Server. This tutorial covers project setup, CRUD operations, PartialView, AJAX integration, and TempData us
  • How To Connect Database in ASP.NET MVC using C# with ADO.NET6/19/2024 5:58:57 PM. Learn how to integrate SQL Server with your MVC application, configure connection strings, and perform CRUD operations. Ideal for developers seeking to enhance their data access techniques in ASP.NET.
  • How To Use Crystal Report In MVC.NET6/19/2024 9:54:26 AM. Learn to integrate Crystal Reports in MVC.NET to generate PDFs. Set up reports in Visual Studio, configure database fields, and create a controller method using ReportDocument to load and export data.
  • Setting Up SQLite Connection In Xamarin App6/19/2024 9:54:20 AM. In this article, we are going to learn about how to set up a connection with SQLite in your application. We will connect each of the iOS, Android, and UWP projects with SQLite.
  • Backing Up and Restoring a SQL Database6/19/2024 7:31:50 AM. In database management, ensuring data integrity and availability is paramount. Regularly backing up your database is crucial to mitigate risks such as hardware failures, software issues, or accidental
  • .NET Core And SQL Server In Linux Docker Containers6/18/2024 10:47:36 AM. Learn to deploy .NET Core applications with SQL Server in Linux Docker containers. Explore containerization benefits for cross-platform development, leveraging Docker's efficiency and flexibility.
  • SQL MINUS Operator: Finding Differences Between Data Sets6/18/2024 7:38:48 AM. In SQL, the MINUS operator plays a crucial role in querying by allowing developers to identify and retrieve records that exist in one dataset but not in another. This article explores the functionalit
  • C# .NET 8 SQL Bulk Insert Dapper vs BulkCopy vs Table-Value Params6/18/2024 5:22:03 AM. Explore the performance of SQL bulk insert methods in C# .NET 8 by comparing Dapper, BulkCopy, and Table-Value Parameters. This comprehensive analysis covers implementation details, efficiency, and be
  • How to Create Login Form in Visual Studio and Connect With SQL Server6/17/2024 11:22:47 AM. Learn to create a login form in Visual Studio by designing a Windows Forms application. Customize form elements like buttons, labels, and text boxes using properties for font, color, and layout.
  • Integrating Azure SQL Database with Azure Functions6/17/2024 9:26:04 AM. Azure SQL Server is a fully managed database service by Microsoft Azure, offering scalability, high availability, and robust security features. It integrates seamlessly with Azure Functions for buildi
  • Understanding SQL Triggers: Types, Uses, and Examples6/17/2024 4:52:25 AM. SQL triggers are powerful database objects that automatically execute in response to specific events occurring within a database. They enable developers to automate tasks, enforce data integrity, and
  • DuckDB: The Powerful Embedded Database for Analytics6/16/2024 8:32:17 AM. DuckDB is a high-performance, embedded database designed specifically for data analytics. It offers in-memory processing, SQL support, and columnar storage, making it ideal for analytical queries and
  • How To Consume Web API Through SSIS Package6/14/2024 10:42:32 AM. In this article, I have illustrated the purpose of SSIS with Web API. It shows how SSIS can use Web API to do certain operations, like updating the database table based on Service response, and proces
  • How To Use LINQ To SQL For Retrieving Data From SQL Server Database6/14/2024 10:42:01 AM. This article explores LINQ to SQL, an ORM framework in .NET for mapping database tables to .NET classes. It covers querying operations like Select, Insert, Update, and Delete using LINQ syntax, which
  • Comparison Of Different SQL Query Responses Of SQL Server On Windows And Ubuntu Linux6/14/2024 10:41:29 AM. The article consists of some benchmark tests of SQL Server on different Operating Systems, the parameters considered are CPU Time, Elapsed Time and Total Execution Time.