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

Extract Numbers From String In SQL Server

Mar 4, 2020Nov 15, 2018 by Beaulin Twinkle
Extract Numbers From String

How to extract only the numbers from string value In SQL Server? Here is a function which extract the sets of numbers from alpha numeric strings.

Categories SQL Server Tags SQL, SQL Tips, Transact-SQL (T-SQL) 2 Comments

SELECT vs SET: Which Is Better In SQL Server?

Nov 8, 2018 by Beaulin Twinkle

Which Is Better SET or SELECT? In this article you will see the major differences of SELECT vs SET and the comparison between them in table from.

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

Trace Errors And Exceptions Using Profiler

Oct 24, 2018 by Beaulin Twinkle
Trace Errors And Exceptions Using Profiler

How to trace errors and exceptions using profiler in SQL Server? Using SQL Server profiler is the easiest way to capture the errors and exceptions occurring in the SQL Server database.

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

Launching SQL Server Profiler

Dec 16, 2018Oct 19, 2018 by Beaulin Twinkle
Launching SQL Server Profiler

How to launch SQL Server profiler in windows workstation? Here is the easiest option and step by step instruction for launching SQL Server profiler.

Categories SQL Server Tags SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Server Profiler, Windows 10 Leave a comment

Saving Profiler Trace Results To A Table

Oct 17, 2018 by Beaulin Twinkle
Saving Profiler Trace Results To A Table

How to save the collected profiler trace to a table in SQL Server? Here are the steps for saving profiler trace results to a table for further analysis.

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

Monitoring Specific Table Using SQL Profiler

Oct 6, 2018 by Beaulin Twinkle
Monitoring Specific Table Using SQL Profiler

Monitoring specific table using profiler in SQL Server? Here is a simple trick to capture and monitor all the queries and stored procedures executed against a table.

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

Using Filters In Profiler Trace

Sep 13, 2018 by Beaulin Twinkle
Capturing Only Stored Procedures Using Profiler

What are filters in SQL Server profiler trace and how to use them to capture various events? Here I have explained using filters in profiler trace and when to use them.

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

Capturing Stored Procedure’s Parameter Values

May 30, 2019Sep 13, 2018 by Beaulin Twinkle
Capturing Stored Procedure's Parameter Values

How to capture a stored procedure and the parameter values passed to it every time it is executed? Here is a method for capturing stored procedure’s parameter values using SQL Server Profiler.

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

Capturing Only The Stored Procedures Using Profiler

Sep 12, 2018Sep 6, 2018 by Beaulin Twinkle
Capturing Only Stored Procedures Using Profiler

How to capture only the SQL Server stored procedures using profiler? Using SQL Server profiler trace to trap all the stored procedures executed against a database.

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

Debugging Queries Inside Stored Procedure Using Profiler

Oct 19, 2018Sep 5, 2018 by Beaulin Twinkle
SQL Server Profiler Trace properties Events

How to use SQL Server profiler to capture and debug the queries executed from inside the stored Procedure? Here is the step by step instruction for debugging queries inside stored procedure using profiler.

Categories SQL Server Tags SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Server Profiler, SQL Tips 3 Comments

Filter Profiler Trace To Display Events From A Specific Database

Sep 5, 2018Aug 30, 2018 by Beaulin Twinkle
Filter Profiler Trace To Display Events From A Specific Database

How to filter a SQL Server profiler trace to display events from a specific database. Step by step instruction to filter the profiler to trap only the events for a specific database alone.

Categories SQL Server Tags SQL Server 2017, SQL Server Profiler, SQL Tips 2 Comments

Reduce Index Fragmentation

Sep 13, 2018Aug 29, 2018 by Beaulin Twinkle
Reduce Index Fragmentation - Reorganize Indexes popup window

Here is the T-SQL queries to reduce index fragmentation by using either INDEX REORGANIZE or INDEX REBUILD. You will also see when to REORGANIZE and REBUILD.

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

How To Find Index Fragmentation

Aug 29, 2018Aug 25, 2018 by Beaulin Twinkle
Find Index Fragmentation

Here is the T-SQL query to find index fragmentation in SQL Server database. This query will list all the indexes in the database and the the fragmentation level in percent.

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

Installing MSSQL-CLI on macOS

Jul 3, 2019Jul 19, 2018 by Beaulin Twinkle
MSSQL-CLI on macOS

MSSQL-CLI or Microsoft SQL Server CLI is an open source, cross-platform, interactive and syntax highlighting command line query tool for SQL Server. We will see how to install MSSQL-CLI on macOS.

Categories macOS, SQL Server Tags macOS High Sierra, macOS Sierra, MSSQL-CLI, SQL, SQL Server 2017 2 Comments

MSSQL-CLI: An Interactive Command Line SQL Server Query Tool

Sep 13, 2018Jul 15, 2018 by Beaulin Twinkle
MSSQL-CLI Change Database

Mssql-cli is an open source cross platform interactive command line query tool for SQL Server. It can be used as an enhanced alternative to sqlcmd.

Categories SQL Server, Windows Tags MSSQL-CLI, SQL, SQL Server 2017, Windows 10, Windows Server 2016 Leave a comment

Escape Special Characters Using STRING_ESCAPE

May 30, 2018 by Beaulin Twinkle
Escape Special Characters Using STRING_ESCAPE

Simple and clean method to escape special characters using STRING_ESCAPE system function. STRING_ESCAPE function was introduced in SQL 2016. Here we will see how to use it to escape dome of the special characters.

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

Using Bootstrap Table With GridView In ASP.NET

Jul 31, 2019May 25, 2018 by Beaulin Twinkle
Bootstrap Table With GirdView - Header styling

Trick for using bootstrap table with GridView in ASP.NET web forms. You can use bootstrap table classes in GridView in web form with some additional setting.

Categories .Net, Internet & Web Dev., Microsoft, Twitter Bootstrap Tags ASP.NET, ASP.NET Web Forms, Bootstrap 4, Tips, Visual Studio, Visual Studio 2017 2 Comments

How To Make .NET Application To Run As Administrator

May 9, 2018 by Beaulin Twinkle
.NET App To Run As Administrator - UAC Prompt

How to force a .Net application to run as administrator on windows? Here is step by step illustration to force a dot net client server application to run as administrator and the trick to bypass UAC prompt while launching it.

Categories .Net, Windows Tags Visual Studio, Visual Studio 2017, Windows 10 Leave a comment

Returning Multiple Values From A function in C#

Aug 25, 2022Apr 26, 2018 by Beaulin Twinkle
Return Multiple Values From A Function

How to return multiple values from a function in c#. Here are few of the methods for returning multiple values from a c# function with examples.

Categories .Net Tags C# (C Sharp), C# 7.0 (C Sharp), Visual Studio, Visual Studio 2017 Leave a comment

How To Get Day Of Week In SQL Server?

Mar 11, 2020Apr 18, 2018 by Dahlia Sam
How to get day of week in SQL Server

Here is how to get the day of week In SQL Server. We will see couple of inbuilt functions to get the day of week.

Categories SQL Server Tags SQL, SQL Tips, Transact-SQL (T-SQL) Leave a comment
Older posts
Newer posts
← Previous Page1 … Page11 Page12 Page13 … 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

  • Where is SQL Server Configuration Manager?
  • Error: 'SqlConnection' could not be found in the namespace (Solved)
  • Bootstrap 3.0.0 with ASP.NET Web Forms – Step by Step – Without NuGet Package
  • How To Add Bootstrap In ASP.NET (MVC & Web Forms)
  • Formatting SQL statements in SSMS
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.