Skip to content
  • Facebook
  • GitHub
  • YouTube
  • Pinterest
My Tec Bits
  • Home
  • Microsoft
    • .Net
      • ASP.NET
      • MVC
      • Visual Studio
    • IIS
    • SQL Server
      • SQL Server 2019
      • SQL Server 2017
      • SQL Server 2016
      • SQL Server 2014
      • SQL Server 2012
      • SQL Server 2008
    • Windows OS
  • Web Development
    • Java Script
    • Jquery
    • Python
    • Bootstrap
    • Zurb Foundation
    • Web Security
  • More
    • macOS
    • Reviews
  • Online Tools
    • Fitness Calculators
    • Encoders & Decoders
    • Cryptography
    • Unit Converters
    • Math. Calculators
    • Date & Time Calculators

Transact-SQL (T-SQL)

Why am I unable to save changes after editing table design in SSMS?

Nov 25, 2020 by Beaulin Twinkle
Unable To Save Changes After Editing A Table Design In SSMS

Solution for unable to save changes after editing table in design window of SQL Server Management Studio.

Categories Others, SQL Server Tags SQL, SQL Server 2019, SQL Sever Management Studio (SSMS), Transact-SQL (T-SQL) Leave a comment

GETDATE() vs CURRENT_TIMESTAMP in SQL Server

Jan 27, 2021Nov 18, 2020 by Beaulin Twinkle
GETDATE() Vs CURRENT_TIMESTAMP In SQL Server

GETDATE() Vs CURRENT_TIMESTAMP: What are the differences and similarities between GETDATE() and CURRENT_TIMESTAMPIn SQL Server?

Categories SQL Server Tags ANSI SQL, SQL, SQL Server 2019, Transact-SQL (T-SQL) Leave a comment

Moving table to another schema in SQL Server

Oct 5, 2020 by Beaulin Twinkle
Moving Table To Another Schema In SQL Server

IN SQL Server, moving table to another schema is quiet simple. Here I have given sample script to transfer one or all tables in a database to another schema.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Killing all the active connections of an SQL Server database

Aug 22, 2020 by Beaulin Twinkle
SQL Error On Restoring Database

Now we will see about the simplest method for killing all the active connections of an SQL Server database.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How to get the data and log file sizes for a specific database in SQL Server?

Aug 13, 2020 by Beaulin Twinkle
How to get the data and log file sizes for a specific database in SQL Server?

Here are the queries I’m using to fetch the data and log file sizes separately for a specific database. These T-SQL queries return file sizes, used space and free space using DMVs.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

T-SQL query to find deadlocks in SQL Server

Aug 9, 2020 by Beaulin Twinkle
T-SQL query to find deadlocks in SQL Server

Here is the quick query to find deadlocks which I have used for long time. This statement is based on the SYS.DM_EXEC_REQUESTS dynamic management view.

Categories SQL Server Tags Performance, SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Getting database backup history in SQL Server

Aug 7, 2020 by Beaulin Twinkle
Getting database backup history in SQL Server

There are several ways to get the database backup history in SQL Server. Here I have listed two of the quickest ways to get the backup history. I use these methods pretty regularly.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Finding the active SQL connections in SQL Server

Aug 9, 2020Jul 30, 2020 by Beaulin Twinkle
Find Active SQL Connections using SYS.DM_EXEC_SESSIONS

There are several ways to find the active SQL connections is SQL Server. Let us see few of the simple methods which are using T-SQL queries.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Finding the DML Triggers created or modified during a date range in SQL Server

Jul 15, 2020 by Beaulin Twinkle
Finding the DML Triggers created or modified during a date range in SQL Server

About finding the DML Triggers which are modified or created during a given date range using the object catalog view sys.triggers .

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Finding the stored procedures created or modified in a given date range in SQL Server

Jun 26, 2020 by Beaulin Twinkle
Finding the stored procedures created or modified during a given date range in SQL Server

Here we will see about finding the stored procedures which are modified or created during a given date range.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Get the list of all indexes and index columns in a database

Jun 19, 2020 by Beaulin Twinkle
Get the list of all indexes and index columns in a Database

Here I have given you a simple script to get the list of all indexes and index columns in a SQL Server database.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) 1 Comment

Getting the list of all stored procedures in SQL Server DB

Jun 13, 2020 by Beaulin Twinkle
List of all stored procedures using ROUTINES

Here are couple of simple methods to get the list of all stored procedures created by the developers from a specific database in SQL Server.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Solution for Msg 8134 Divide by zero error encountered

May 21, 2020 by Beaulin Twinkle
Msg 8134 Divide by zero error encountered

Solution for the error message “Msg 8134, Level 16, State 1, Line 7 Divide by zero error encountered” when performing division operation in SQL Server.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Getting MAX of multiple columns in SQL Server

May 20, 2020 by Beaulin Twinkle
Getting MAX of multiple columns in SQL Server

Here is simple method to find the MAX of multiple columns in SQL Server. Getting smallest or highest values from multiple columns.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) 1 Comment

Using condition inside COUNT() in SQL Server

May 8, 2020 by Beaulin Twinkle
Using condition inside COUNT() in SQL Server

Using condition inside COUNT() in SQL Server is simple and comes in handy when you cannot use WHERE clause in the select statement.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How to get sizes of all databases on SQL Server?

May 1, 2020 by Beaulin Twinkle
get sizes of all databases on SQL Server

Here is a simple method which I use to get the sizes of all databases on SQL Server in a single list.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Get the list of user created databases in SQL Server

Apr 29, 2020 by Beaulin Twinkle
Get the list of user created databases in SQL Server

Here is a simple tip to get the list of user created databases in an SQL Server.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How to insert results from Stored Procedure to a temp table in SQL Server?

Apr 16, 2020 by Beaulin Twinkle
insert results from Stored Procedure to a temp table

As a database programmer, you may need to get result in table format from a stored procedure and store it to a temp table. Here we will see how to insert results from Stored Procedure to a temp table.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Altering existing tables with data to system-versioned temporal table

Apr 2, 2020 by Beaulin Twinkle
Altering existing tables to system-versioned temporal table with data

Here are the simple steps with example for altering existing version tables with data to system-versioned temporal table.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Get the list of temporal tables in SQL Server DB

Mar 25, 2020 by Beaulin Twinkle
list of temporal tables in SQL Server DB

Using simple sql technique, here we will see how to get the list of temporal tables in a database.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment
Post navigation
Older posts
Newer posts
← Previous Page1 Page2 Page3 … Page6 Next →

Article Categories

  • Android (2)
  • Apple (19)
    • macOS (19)
  • Internet & Web Dev. (132)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (2)
    • Python (68)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (2)
  • Microsoft (282)
    • .Net (59)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (199)
    • Windows (23)
  • Networks And Distributed Systems (2)
  • Oracle (6)
    • Java (2)
    • Oracle Database (4)
  • Others (4)
  • Reviews (10)

Recent Articles

  • How to find whether the string contains a substring in Python? May 13, 2022
  • Reading XML file with PHP May 5, 2022
  • How to launch a PHP website on macOS? May 5, 2022
  • How to import a JSON file to a variable in Python? Apr 21, 2022
  • How to import a CSV file to a variable in Python? Apr 8, 2022
  • VirtualBox error NS_ERROR_FAILURE (0x80004005) on macOS Mar 24, 2022
  • How to perform an IF…THEN operation in SQL SELECT statement? Mar 18, 2022
  • How to update if row exists else insert in SQL Server Mar 13, 2022
  • How to update values in identity column in SQL Server? Mar 6, 2022
  • How to calculate median in SQL Server? Feb 20, 2022

Subscribe MyTecBits.com

Online Tools

  • Fitness Calculators
  • Encoders & Decoders
  • Cryptography
  • Unit Converters
  • Math. Calculators
  • Date & Time Calculators

Popular Articles

  • SQL Server: Concatenate Multiple Rows Into Single String
  • How to compare contents of two files in Visual Studio Code?
  • How To Get Day Of Week In SQL Server?
  • SQL Server: Search and Find Table by Name
  • Find Indexes On A Table In SQL Server
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. Learn more...
  • Home
  • About Us
  • Contact Us
  • Site Map
  • Terms Of Use
  • Privacy Policy
© 2012 - 2022 My Tec Bits. All Rights Reserved.