Programming Blog
Wednesday, 5 August 2020
Insert Identity Column in a table
insert an
identity
column in that table by using the following code:
ALTER
TABLE
dbo.tablename
ADD
AUTOID
INT
IDENTITY
(
1
,
1
)
No comments:
Post a Comment
Newer Post
Older Post
Home
View mobile version
Subscribe to:
Post Comments (Atom)
What's New in .NET 10?
What's New in .NET 10? What's New in .NET 10? .NET 10 brings gr...
How to remove Workspace in TFS 2010-2018
This solution Works for TFS 2010+ . Open Visual studio Command prompt and run the following script. tf workspace /delete /server:[Site:Port/...
TFS -GIT CertGetCertificateChain trust error CERT_TRUST_IS_UNTRUSTED_ROOT
Problem 1) 2019-07-02T14:19:12.5157398Z fatal: unable to access 'https://tfssite.company.com/tfs/UK_ProjectCollection/SalesPortal/_git/S...
Create a Directory from existing disk in proxmox server
Scenario: I have an NVMe disk with an ext4 partition that was previously used as a directory in a Proxmox server. After reinstalling Proxm...
No comments:
Post a Comment