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
About Unique
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jaimin Shethiya (4)
Nandan Hegde (3)
Mahesh Chand (3)
Keyur Pandya (2)
Amatya Agyey (2)
Naresh Beniwal (2)
Code Alone (2)
Priyaranjan K S (2)
Vijai Anand Ramalingam (2)
Jihen Hnena (1)
Onkar Sharma (1)
Jalpa Dhola (1)
Vijay Yadav (1)
Anuradha Rani (1)
Sreenath Kappoor (1)
Sanjay Kumar (1)
Pankaj Kumar Choudhary (1)
Vikas Singh (1)
Sourav Kayal (1)
Allam Purushotham (1)
Abiola David (1)
Subarta Ray (1)
Raja Msr (1)
Abhishek Tiwari (1)
Simran Verma (1)
Arindam Dawn (1)
Tuhin Paul (1)
Prakashkumar Sahoo (1)
Santosh Sarnobat (1)
Deepak Kumar (1)
Mayuresh Joshi (1)
Rahim Lotfi (1)
Rijwan Ansari (1)
John Godel (1)
Debasis Saha (1)
Hemant Jindal (1)
Lalit Bansal (1)
Arvind Singh (1)
Ram Prasad M (1)
Nanu Jogi (1)
Zia Ahmed Shaikh (1)
Ravishankar N (1)
Shriram Pophali (1)
Sivaraman Dhamodaran (1)
Uday Joshi (1)
Harpreet Singh (1)
Rahul Bansal (1)
Prasham Sabadra (1)
Jignesh Trivedi (1)
Jaganathan Bantheswaran (1)
Nipun Tomar (1)
Sharad Gupta (1)
Jean Paul (1)
Deepak Middha (1)
Stan Gershengoren (1)
Vijay Prativadi (1)
Shirsendu Nandi (1)
Destin Joy (1)
Guy Peled (1)
Jacques Philip (1)
G Gnana Arun Ganesh (1)
Related resources for Unique
No resource found
' Group By ' with Power Automate
10/16/2024 5:52:26 AM.
This process involves creating an instant flow to send an email to each user with a table of applications they have created. By listing rows from the "User Application" table, using union an
How To Get Unique Records Without Using Distinct In SQL Server
9/26/2024 4:35:41 AM.
In this guide, you'll learn how to retrieve unique records in SQL Server without using the DISTINCT keyword. We'll explore alternative methods like GROUP BY, ROW_NUMBER(), and Common Table Exp
Learn to Set Folder Unique Permission
8/28/2024 4:11:25 AM.
This feature ensures that only selected users or groups can view, edit, or manage the folder's contents, enhancing security and tailoring access to meet specific needs.
Difference Between Primary Key and Unique Key in SQL
8/12/2024 9:38:24 AM.
Primary Key and Unique Key are essential in relational databases for data integrity. A Primary Key uniquely identifies each row and cannot be NULL, while a Unique Key ensures column values are unique
UNION vs UNION ALL in SQL Server
7/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
How to Display Unique Page Views in PowerApps
7/7/2024 6:26:40 PM.
We often see in many of the sites that total page view count is shown. I have come across one of the use case where I wanted to show how many times that page was visited by any user uniquely.
Updating Lookup Columns in Dataverse with Power Automate
7/3/2024 5:04:39 PM.
Navigating Lookup Columns in Dataverse using Power Automate requires precise handling. Unlike simpler data sources, such as SharePoint, updating these columns demands using a specific format like &quo
Working with Choices Columns in Dataverse using Power Automate
7/3/2024 5:04:35 PM.
Over the past few months, I've led a project using the Power Platform, achieving remarkable results. Today, I will share tips on working with Choices Columns in the Dataverse. Unlike SharePoint, D
Primary Key and Unique Key Constraints
6/29/2024 10:06:27 AM.
Primary Key and Unique Key Constraints in database management ensure data integrity and uniqueness. A Primary Key ensures each row is unique and not null, with only one per table. Unique Keys also ens
Contrast b/w 'KeyValuePair<TKey, TValue>' and 'Dictionary<TKey, TValue>' in C#
6/16/2024 1:06:19 PM.
This article explores the features and uses of KeyValuePair<TKey, TValue> and IDictionary<TKey, TValue> in C#. It highlights KeyValuePair's immutability and its use in representing si
Unique ID Generator Xid.NET in .NET Core
5/31/2024 6:22:31 AM.
A globally unique ID generator library called Xid.Net is prepared for safe and direct usage in your code. It offers an interface akin to that of the System.Guid produces lesser ids (12 bytes compared
Difference Between Primary key and Unique key in SQL
5/21/2024 4:33:26 AM.
The difference between Primary Key and Unique Key in SQL lies in their fundamental roles within a database schema. A Primary Key uniquely identifies each record in a table and ensures data integrity b
Unique Key in SQL: Syntax, Usages, and Example
5/16/2024 9:30:31 AM.
Unique Key in SQL ensures each record in a database table is distinct. Syntax involves defining columns with UNIQUE constraints. It prevents duplicate values, enhancing data integrity and search effic
Difference between a GUID and Tenant ID in Azure Environment
5/10/2024 6:21:39 AM.
Difference between a GUID (Globally Unique Identifier) and a Tenant ID in their scope and purpose within the Azure environment:
Index in SQL Server
5/9/2024 11:54:14 AM.
Indexes in SQL Server enhance database performance by optimizing data retrieval. They come in various types like clustered, non-clustered, unique, and filtered, catering to different query needs and i
Real Time example of GUID in Azure
5/9/2024 11:49:29 AM.
Azure uses GUIDs (Globally Unique Identifiers) to organize and secure resources. From signing up for services to managing databases, GUIDs ensure seamless operations and data security across various s
SQL Indexing: Boosting SQL Query Performance
5/6/2024 4:11:19 AM.
Unlock the power of SQL indexing to supercharge your database queries with our comprehensive guide. Learn how indexing works, explore real-world examples, and discover essential tips for optimizing qu
Fundamentals of Unit Testing: Understand CollectionAssert() in Unit Testing
3/5/2024 10:37:39 AM.
In this article we will talk about one important function of unit testing called CollectionAssert().
Create Auto-Numbering in Microsoft Dynamics 365 Entities
2/29/2024 11:22:09 AM.
Automate entity numbering effortlessly in Microsoft Dynamics 365 with no code required. Utilize system settings, business rules, and workflow automation to generate unique serial numbers for records,
Listing Unique Records Within an Array in Azure Data Factory
2/2/2024 7:34:52 AM.
Utilize Azure Data Factory to remove duplicates within an array by employing the "union()" function. This solution involves the Set Variable activity to obtain a unique list from the array.
Calculating Average Sales Per Unique Product in Power BI
1/9/2024 4:46:11 AM.
Average Sales per Unique Product metric is a useful tool for businesses to make informed decisions. By calculating the average sales per unique product ID, businesses can gain insights into the perfor
Exploring Kusto Query Language (KQL): Uses, Queries, and Unique Features
12/1/2023 5:09:29 AM.
Kusto Query Language (KQL) is a potent tool developed by Microsoft for diverse data analytics needs. Uncover its applications across industries, from log analytics to IoT, and explore essential querie
Resource URI (Unique Resource Identifier) details of Common Microsoft Resources in Entra ID
10/23/2023 7:04:18 AM.
Resource URI (Unique Resource Identifier) details of Common Microsoft Resources in Entra ID.
Setting Business Constraint for Uniqueness of a Composite Key in Master Data Services
10/5/2023 7:06:22 AM.
Setting Business Constraint for Unique Combination of Multiple Columns in Master Data Services
JavaScript Symbols: Unique Identifiers and Private Properties
8/9/2023 6:10:35 AM.
Explore the power and applications of JavaScript symbols. Learn about unique identifiers, private properties, iterators, and more. A comprehensive guide.
How to Find UDID for Apple Devices?
8/8/2023 11:18:41 AM.
Discover the importance of the Unique Device Identifier (UDID) for Apple devices in this comprehensive guide. Explore its role in app development, beta testing, enterprise device management, technical
How JavaScript is Different from Other Programming Languages?
7/28/2023 10:42:14 AM.
This article aims to explore the uniqueness of JavaScript compared to other programming languages.
Understanding Angular Injection Tokens
6/20/2023 6:53:30 AM.
Angular's dependency injection (DI) system manages dependencies in a modular, scalable manner. Injection Tokens are unique identifiers used by the system to resolve dependencies flexibly. They ena
Efficient Generation of Unique Pairwise Combinations in Python
6/19/2023 8:49:53 AM.
In this article, we will explore an efficient solution that uses a generator to produce unique combinations on the fly, while also incorporating a time-bound constraint in Python.
How to Create a Unique Number in Javascript for Payment Gateway?
6/5/2023 6:01:28 AM.
Here we known about how to generate a unique number by using date, month, year and time in JavaScript for payment Gateway
SQL Magic: How to Use Select Distinct in SQL to Get Unique Results Every Time
2/2/2023 8:29:29 PM.
Learn about the SQL SELECT DISTINCT statement and its uses for retrieving unique data in SQL. Get expert insights on how to implement select distinct SQL queries
Add Primary Key, Unique Keys, or Foreign Keys to a Table using SQL
12/21/2022 7:08:31 AM.
In this post, learn how to add a Primary Key, Unique Keys, or a Foreign Keys to an existing table using a SQL query.
Find Primary Key, Unique Key, or Foreign Key in a Table and Delete Keys Using SQL
12/21/2022 5:01:34 AM.
Today, we will learn how to find a Primary Key, Unique Key, or a Foreign Keys in a table using SQL and how to delete a primary key, unique key, or a foreign key from a table using SQL.
Break Inheritance And Set Item-Level Permission Using Power Automate
10/18/2022 7:14:40 AM.
In this article, we will learn how to set item-level unique permissions in SharePoint using HTTP request with Power Automate
Developing A String Type In C
6/2/2022 12:42:49 PM.
You may have noticed that unlike other programming languages such as Java, Python, etc. C does not support string as a primitive (or we can say intrinsic) data type. Strings in C are implemented and m
Remove Unique Permissions From SharePoint List And Library Using REST API
3/26/2022 3:56:34 PM.
In this article, we will learn how to remove unique permissions from the SharePoint list and library items.
Introduction Of ASP.NET Unique Architecture (AUA)
11/2/2021 9:21:53 AM.
AUA ( Asp.Net Unique Architecture ) Framework, you can easily have better, faster, and more orderly and focused coding. This framework is based on new and up-to-date concepts, structures and architect
Some Unique, Uncommon But Very Useful HTML Elements (Tags)
2/2/2021 4:14:38 PM.
In this article, you will see everything about Some unique, uncommon but very useful HTML elements tags.
Real Life SQL And .NET - Part One
12/6/2020 10:41:53 PM.
Welcome to the world of SQL and the huge, growing database technologies of today’s business all over the SQL world. By reading this article, we have begun accepting the knowledge that will soon be req
Data Column in ADO.NET
10/29/2020 4:16:38 AM.
In this article I will explain about Data Colum in ADO.Net.
Parameters in ADO.NET
10/29/2020 1:13:09 AM.
In this article I will explain about Parameters in ADO.NET.
Index In MongoDB - Part Five
6/15/2020 2:15:45 AM.
In this article, we will discuss about how to implement index in mongodb.
SQL UNIQUE Constraint
2/25/2020 1:11:21 AM.
In this article, you will learn how to Unique Constraint in SQL.
String Algorithm - Validating If String Has Unique Characters
8/22/2019 10:11:32 AM.
This article describes an algorithm program to validate if the given string contains unique characters.
SynchroBit - A Unique Digital Asset Trading Platform Of Crypto World
8/9/2019 8:07:58 AM.
In this article, you will learn about SynchroBit, a digital asset trading platform from the crypto world.
Understanding SQL Server Constraints
8/8/2019 11:55:40 PM.
In this article, I am going to explain SQL Server constraints such as Unique key constraint Primary key and foreign key and how to implement constraints in SQL Server.
Understanding SharePoint Online File Sharing And When Unique Permissions Are Created
7/28/2019 12:01:00 PM.
In this article, you will understand SharePoint Online file sharing and when unique permissions are created.
Generate Unique Number In C#
12/13/2018 9:00:52 AM.
Generate a unique number using random class and display it on the console. This program generates Unique Random Numbers and displays on the console.
Create Unique Key Constraint Through GUI In SQL Server
10/16/2018 6:20:40 AM.
Learn how to create a Unique Key Constraint in SQL Server through GUI without writing any T-SQL query.
How To Enforce Unique Value For SharePoint Columns Using C#
8/12/2018 1:47:02 PM.
Step by step instructions to enforce unique value for SharePoint columns using c#. It. It is used for enforcing uniqueness on values for SharePoint list or library columns
Chrome Extension - SharePoint - Tag Unique Permission Lists
3/20/2018 9:44:43 AM.
Google chrome extension (or Plugin or AddIn) is a useful medium to share features or tools across the tech community. I have prepared one small chrome extension for SharePoint (2013, 2016 and Online)
ADO.Net Constraints - Unique and Primary Key
2/26/2018 12:50:47 AM.
This video explains how we can implement Unique and Primary Key and FrontEnd. It then walks you through DataTable merge and checks the Constraints behavior.
Break Inheritance And Implementing Unique Permissions In SharePoint 2016 Using REST API
7/28/2016 3:11:08 PM.
In this article, you will learn about break inheritance and implementing unique permissions in SharePoint 2016, using REST API.
Break Inheritance And Assign Unique Permissions To List In SharePoint 2016 And Office 365
6/6/2016 1:29:56 PM.
In this article you will learn about how to break Inheritance and assign Unique Permissions to List in SharePoint 2016 and Office 365 using JavaScript Object Model.
Fix To: SharePoint Unique Permissions Issue
5/21/2016 12:18:35 PM.
This post is one of my interesting findings with the Discussion Board-based no server side code solution.
How to Check if the UserName is Unique in MVC 5
4/24/2015 2:14:05 AM.
In this article we will see how to check if the UserName is unique or not in MVC.
All Possible Unique Substrings From an Input String
3/27/2015 4:51:34 PM.
In this article we will learn about the substrings in the C# programming.
"Error: The User Does Not Exist or is Not Unique" Solved in SharePoint
2/24/2015 10:29:39 PM.
In this article you will learn the solution for the error "User Does not Exist or is not Unique" in SharePoint.
Index Attribute With Entity Framework 6.1
8/7/2014 1:43:48 PM.
In this article you will learn about the Index attribute with Entity Framework 6.1.
Bindings In KnockoutJS - Part III
11/27/2013 10:43:55 PM.
In this article, we will discuss the bindings used with form elements.
Constraints in Oracle : Part 1
10/25/2013 1:34:47 AM.
This article explains the Constraint clause in Oracle that is basically used to apply the specific rules to the data that restrict the values/data entered into the database columns.
Non Unique Clustered and Non Clustered Indexes For Table Variables in SQL Server 2014
7/8/2013 4:13:22 PM.
This article explains another new feature, support of Non-Unique Clustered and Non-Clustered Indexes for Table Variables, introduced in SQL Server 2014.
SharePoint Under Performance of Unique Permissions
2/15/2013 11:10:07 PM.
In this article we can explore the Performance Impact on Unique Permissions.
Index in SQL Server 2012
11/13/2012 10:58:19 AM.
In this article I described indexes in SQL Server.
How to generate unique integer IDs across multiple systems
10/13/2012 5:52:17 AM.
This article show to generate unique integers across environments. Generally repeating IDs in different environments are not a problem, but once in a while you need to migrate something from dev to staging, or from staging to production.
One or more rows contain values violating non-null, unique, or foreign-key constraints
9/30/2012 3:48:28 AM.
You may get this error when using a typed DataSet. This tip shows how to fix it.
Service Contracts with Single Unique Endpoint Hosted on Web App
12/30/2011 3:17:32 AM.
Today, in this article let’s see the clear implementation of when a case arises to use several service contracts and then implement the developed service in well formed unique way. So firstly, let get ready and fire up visual studio 2010. File->New Project-> WCF Service Application
Index in SQL Server 2008
5/27/2011 4:10:47 AM.
In this article I will describe how to make a Cluster Index, Unique Index and Normal Index in SQL Server 2008 Express editions.
How to enforce unique value for a column in SharePoint 2010 using powershell
4/4/2011 3:44:45 AM.
In this article we will be seeing how to enforce unique value for a list or library column in SharePoint 2010 using C# and powershell.
Unique column constraints in SharePoint 2010
4/1/2011 4:54:44 AM.
In this article we will be seeing how to enforce unique value for a list or library column in SharePoint 2010.
How To make SharePoint document library folder unique Permission Programmatically
2/28/2011 1:22:55 PM.
In this article I am showing how to create a folder in a SharePoint document library, make unique permissions for the folder then add users to that folder programmatically.
Visual WebGui a unique approach to AJAX development
4/20/2006 7:30:09 AM.
Visual WebGUI is the first AJAX framework that lets you develop in full WinForms server side API, including design-time capabilities for creating rich internet application like outlook web access.
Making Thumbnails of Transparent Images in .NET and C#
12/26/2005 4:03:18 AM.
When I started writing web applications using .NET, I found myself in need to dynamically create thumbnails of images that could be uploaded by the user or pulled from a database.
Interface Components Interoperability
12/23/2005 4:16:31 AM.
The fundamental concept behind both COM and DCOM is the interface. An interface is an agreement between a client and an object about how they will communicate with each other.