HomePosts tagged โ€œdatabaseโ€

database

Showing 1 - 10 of 10 results
There are times when you might have a column names in your SQL Server database table that might looks like...
SQL Server provides an function ISNULL if the value placed in the 2nd parameter if the first parameter passed to...
Below is a sample SQL query that demonstrates how to count the number of tables in a SQL Server database...
To check if the table exists in a database in SQL Server , you can use the INFORMATION_SCHEMA view. How...
If you want to pause the execution of the code block until a specific time is reached , you can...
Assume a scenario where you are trying to get the records from the table where some of the records contains...
You might want to sort the results of an query in a different order from the traditional sort (Ascending/Descending) order....
There are times when you want to kill all the current active connections of your SQL Server database and you...
If you want to pause the execution of the code block for a specific amount of time , you can...
Assume that you have a date โ€œ01/09/2016โ€ and you would like to find out what day of the week it...