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
    • Finance Calculators

Bringing Database Online In SQL Server

Jul 31, 2019Jun 2, 2017 by Dahlia Sam
SQL Server Bringing Database Online 02

How to bring back an SQL Server database online? Simple methods for bringing database online state using transact-SQL or SSMS.

Categories SQL Server Tags Database, SQL, SQL Server 2012, SQL Server 2014, SQL Server 2016 Leave a comment

Taking Database Offline In SQL Server

Jul 31, 2019Jun 2, 2017 by Dahlia Sam
Taking Database Offline in SQL Server 02

How to take an SQL Server database offline? Simple methods to bring a MSSQL database to offline state using transact-SQL or management studio.

Categories SQL Server Tags Database, SQL, SQL Server 2005, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, Transact-SQL (T-SQL) Leave a comment

How To Split Delimited Strings in SQL Server?

Jul 31, 2019May 31, 2017 by Beaulin Twinkle
SQL Server: Split Delimited Strings SP

Simple method to split delimited strings in newer and older versions of SQL Server. Using STRING_SPLIT() in SQL Server 2016 and higher and Few lines of code to create a function which splits the strings with delimiters on older versions.

Categories SQL Server Tags SQL, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) 6 Comments

Simulating Deadlocks And Blocks In SQL Server

Jul 31, 2019May 28, 2017 by Beaulin Twinkle
Simulating Deadlocks And Blocks In SQL Server

Easy way to simulating deadlocks and blocks In SQL Server. You may need to simulate blocked processes and deadlocks for testing purpose.

Categories SQL Server Tags SQL, SQL Server 2008, SQL Server 2008 R2, SQL Server 2012, SQL Server 2014, SQL Server 2016, Transact-SQL (T-SQL) Leave a comment

Finding Deadlocks Using Extended Events In SQL Server

Jul 30, 2020May 27, 2017 by Beaulin Twinkle
Deadlocks Using Extended Events 04

Finding the deadlocks and blocked processes using extended events In SQL Server. Collecting deadlocks using extended events

Categories SQL Server Tags Extended Events, Performance, SQL, SQL Server 2014, SQL Server 2016 Leave a comment

Zurb Foundation 6 with ASP.NET Core MVC – Step by Step

Jan 27, 2021May 20, 2017 by Beaulin Twinkle
Zurb Foundation 6 with ASP.NET Core MVC 18

Step by step instructions for creating Core MVC web application using Zurb Foundation 6 user interface framework. Foundation 6 with ASP.NET Core MVC 1.

Categories .Net, Internet & Web Dev., Zurb Foundation Tags ASP.NET, ASP.NET Core, ASP.NET Core MVC, C# (C Sharp), Core MVC 1, MVC, Visual Studio, Visual Studio 2017 7 Comments

How To Find Long Running Stored Procedures In SQL Server?

Jul 31, 2019May 16, 2017 by Beaulin Twinkle
Find Long Running Stored Procedures - Extended Events 07

How to find long running stored procedures In SQL Server? Step by step illustration to find slow running SQL Server stored procedure.

Categories SQL Server Tags Extended Events, Performance, SQL Server 2014, SQL Server 2016, SQL Server Profiler Leave a comment

What Are Extended Events In SQL Server?

Jan 24, 2020Apr 28, 2017 by Beaulin Twinkle
Extended Events Architecture

What Are Extended Events In SQL Server? What are the advantages of extended events over profiler? How to use SQL Server XEvents?

Categories SQL Server Tags Extended Events, Performance, SQL Server 2014, SQL Server 2016, SQL Server Profiler 2 Comments

How To Add Bootstrap In ASP.NET (MVC & Web Forms)

Jul 31, 2019Apr 20, 2017 by Beaulin Twinkle
Add Bootstrap In ASP.NET MVC 28

How to add bootstrap in ASP.NET Web Forms and MVC projects? Step by step instruction for adding bootstrap UI framework in ASP.NET web projects.

Categories .Net, Internet & Web Dev., Twitter Bootstrap Tags ASP.NET, ASP.NET Web Forms, Bootstrap 4, MVC, MVC 5, Visual Studio, Visual Studio 2017, Web Site 20 Comments

How To Find Last Few Executed Queries in SQL Server?

Aug 18, 2018Apr 15, 2017 by Beaulin Twinkle
SQL Server Find Last Few Executed Queries

How to Find Last Few Executed Queries in SQL Server? Simple methods to find the recently executed sql statements using DMVs (Dynamic Management Views).

Categories SQL Server Tags SQL, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016 Leave a comment

Get Row Count Of All Tables In SQL Server Database

Jul 31, 2019Apr 13, 2017 by Beaulin Twinkle
SQL Get Row Count Of All Tables

How to get the row count of all tables In SQL Server database? Simple method to get the list of all tables in a database along with the number of rows.

Categories SQL Server Tags SQL, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016 Leave a comment

Solution For SSMS Error – Cannot Find One Or More Components

Jul 31, 2019Apr 12, 2017 by Beaulin Twinkle
SSMS Cannot Find One Or More Components

Solution for error “Cannot find one or more components. Please reinstall the application.” when launching SQL Server Management Studio 2016 (SSMS 6.5.3).

Categories SQL Server Tags SQL Server 2016, Visual Studio 2015 18 Comments

Find User Defined Function Containing Text or Table or Column Name in SQL Server

Jul 31, 2019Apr 5, 2017 by Beaulin Twinkle
SQL Find User Defined Function Containing Text

Find the user defined function containing text or specific table name or specific column name? Here is the simple transact SQL statements to find the UDF

Categories SQL Server Tags SQL, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016 Leave a comment

Search And Find User Defined Function (UDF) By Name In SQL Server

Jul 31, 2019Mar 29, 2017 by Beaulin Twinkle
SQL Server Search And Find All User Defined Functions UDF 05

How to search and find user defined function (UDF) by it’s name or partial name, or even with some text in the function’s source code.

Categories SQL Server Tags SQL, SQL Server 2012, SQL Server 2014, SQL Server 2016 1 Comment

Search And Find All User Defined Functions / UDF In SQL Server

Jul 31, 2019Mar 10, 2017 by Beaulin Twinkle
SQL Server Search And Find All User Defined Functions UDF 01

How to search and find all user defined functions or UDF In SQL Server? Several methods to find all the user defined functions in a database.

Categories SQL Server Tags SQL, SQL Server 2012, SQL Server 2014, SQL Server 2016 Leave a comment

Temp Table vs Table Variable vs CTE in SQL Server

Aug 18, 2018Mar 2, 2017 by Dahlia Sam
SQL Server Temp Table vs Table Variable vs CTE

Difference between Temp Table, Table Variable and CTE in SQL Server. Temp Table vs Table Variable vs CTE and their usage.

Categories SQL Server Tags SQL, SQL Server 2005, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, Transact-SQL (T-SQL) 5 Comments

Setting Up Website Or Blog Using WordPress With GoDaddy (Beginners Guide)

Jan 27, 2021Feb 22, 2017 by Dahlia Sam
WordPress

How to setup a website or blog using Wordpress with GoDaddy? A beginners guide on setting up a website or blog using WordPress CMS on GoDaddy Hosting.

Categories Internet & Web Dev. Tags Web Site, WordPress Leave a comment

OneNote For Mac OS Crashes on Startup (Fixed)

Aug 22, 2018Feb 13, 2017 by Beaulin Twinkle
OneNote For Mac OS Crashes 01

Fix for OneNote For Mac OS Crashes on Startup. Simple and quick steps to fix the crashing of OneNote on MacOS Sierra. Is onenote crashes on startup in mac?

Categories macOS, Office Tags MacBook Pro, macOS Sierra, Microsoft Office, Microsoft Office 365, Office OneNote 29 Comments

Function vs Stored Procedure in SQL Server

Mar 28, 2020Feb 11, 2017 by Dahlia Sam
Function vs Stored Procedure in SQL Server

Difference between function and stored procedure in SQL Server. Here you have a comparison table on Function vs Stored Procedure.

Categories SQL Server Tags SQL, SQL Server 2005, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016 Leave a comment

Hash Code Encryption with HASHBYTES in SQL Server

Aug 12, 2021Feb 1, 2017 by Beaulin Twinkle
Hash Code Encryption with HASHBYTES in SQL Server

Encrypting a string using hash code algorithm in sql server using the HASHBYPES function. Hash Code Encryption using MD2, MD4, MD5, SHA, SHA1, SHA 256 & 512

Categories SQL Server Tags SQL, SQL Server 2005, SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, Transact-SQL (T-SQL) Leave a comment
Older posts
Newer posts
← Previous Page1 … Page14 Page15 Page16 … Page23 Next →

Article Categories

  • Android (2)
  • Apple (22)
    • macOS (22)
  • Internet & Web Dev. (152)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (83)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (4)
  • Microsoft (318)
    • .Net (69)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (225)
    • Windows (24)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (6)
  • Reviews (10)

Recent Articles

  • Installing .NET SDK in Linux Mint and debugging C# code using VS Code Jun 21, 2024
  • Generating random number in C#  Jun 6, 2024
  • How to calculate running total in SQL Server? Apr 27, 2024
  • How to import XML data into SQL Server using SELECT query? Apr 10, 2024
  • How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one? Mar 13, 2024
  • Separating letters and numbers from strings in SQL Server Mar 6, 2024
  • How to call or run another application from python code? Feb 15, 2024
  • How to store images in SQL Server? Jan 17, 2024
  • Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property. Jan 8, 2024
  • Fix for Error: “FILESTREAM feature is disabled” while adding FILESTREAM Jan 4, 2024

Subscribe MyTecBits.com

Online Tools

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

Popular Articles

  • Joining Tables from Databases on Different SQL Servers
  • Where is SQL Server Configuration Manager?
  • Convert UTC DateTime to different time zones in SQL Server
  • RDP Error: The identity of the remote computer cannot be verified
  • How to exit from single-user mode in SQL Server database?
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 - 2025 My Tec Bits. All Rights Reserved.