TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SQL Server
FOLLOW
Welcome to SQL Server section of C# Corner. In this section, you will find various SQL Server related source code samples, articles, tutorials, and tips.
Articles
(1687)
Blogs
(1306)
Resources
(63)
Videos
(59)
News
(31)
Articles
Creating Maintaining Utilizing Transactions in SQL Server
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, Consist...
Nikunj Satasiya
Jul 25, 2024
UNION vs UNION ALL in SQL Server
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 perfo...
Jaimin Shethiya
Jul 24, 2024
Connection with SQL and queries.
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 prac...
Anuradha Rani
Jul 24, 2024
Understanding Table Partitioning in SQL
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, a...
Vijay Yadav
Jul 24, 2024
Understanding Normalization in SQL
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...
Vijay Yadav
Jul 24, 2024
Creating Triggers in SQL Server
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 da...
Vijay Yadav
Jul 24, 2024
Difference Between DELETE and TRUNCATE in SQL Server
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 fore...
Vijay Yadav
Jul 23, 2024
Detailed Explanation of Procedure and Function in SQL Server
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 an...
Sanjay Kumar
Jul 22, 2024
Breaking Down SQL Complexity
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 CTE...
Tuhin Paul
Jul 21, 2024
How to Create Server-Side Pagination, Searching, and Sorting Stored Procedure
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...
Vijay Yadav
Jul 19, 2024
Dynamically Creating a Table in SQL Server from Information Schema
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 defau...
Naveen Kumar
Jul 19, 2024
Inner Workings of a Query Processor
The query processor in a DBMS is pivotal, handling DML and DDL queries through stages like compilation, linking, and optimization. It ensures efficient execution, supporting operations like SELECT,...
Rohini Parade
Jul 18, 2024
SQL Server Collations: Case Sensitivity and Insensitivity
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 example...
Naveen Kumar
Jul 17, 2024
What Is DDL and DML in SQL
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 ...
Vijay Yadav
Jul 16, 2024
A Fix To SQL Server Error 1069 - The Service Did Not Start Due To A Login Failure
In this article, you will learn how to fix to sql server error 1069 - the service did not start due to a login failure.
George
Dec 13, 2021
SQL Server Installation: 2022 Developer Edition --- Basic
This article discusses the SQL Server installation --- Basic
George
Apr 17, 2023
SQL Server Installation: 2019 Developer Edition --- Custom
This article describes the process of installation of SQL Server.
George
Dec 20, 2021
Database Recovery (1-2): Recover Deleted Table Data "without Backup" in SQL Server
This article will discuss Recover Deleted Table Data "without Backup" in SQL Server.
George
Oct 27, 2023
Database Recovery (1-1): Restore a Table from a Backup Database through Restore/Export
This article is to discuss how to recover one table from a backup file
George
Sep 19, 2023
Database Recovery (1): Clone Database From One Instance To Another In SQL Server
In this article,you will learn how to clone database or tables from one instance to another in SQL Server.
George
Dec 26, 2022
No Records Available.
61
-
80
of
1687
<<
2
3
4
5
6
>>
Learn SSRS In 11 Hours
Challenge yourself
SQL Server
E-Book Download
Get Certified
Xamarin